/* ==========================================
   BlackDots Website - Main Stylesheet
   ========================================== */

:root {
    --color-black: #0a0a0a;
    --color-white: #fefefe;
    --color-gray-light: #e8e8e8;
    --color-gray: #a0a0a0;
    --color-gray-dark: #2a2a2a;
    --color-purple: #714B67;
    --color-purple-light: #875A7B;
    --color-purple-dark: #5a3a52;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

/* Firefox scrollbar hide */
* {
    scrollbar-width: none;
}

/* IE and Edge scrollbar hide */
* {
    -ms-overflow-style: none;
}

html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /* Fix for mobile 100vh issues */
    height: 100%;
    height: -webkit-fill-available;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--color-black);
    background: var(--color-white);
    width: 100%;
    max-width: 100vw;
    min-height: 100%;
    min-height: -webkit-fill-available;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Universal box-sizing fix for sections and containers */
section {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix elements that might cause horizontal scroll */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
}

/* ==========================================
   NAVIGATION
   ========================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-light);
    animation: slideDown 0.6s ease-out;
    /* overflow-x: hidden !important; SILINDI - Menyu bunun ucbatindan gorunmurdu */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* overflow-x: hidden !important; SILINDI - Menyu bunun ucbatindan gorunmurdu */
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-black);
    letter-spacing: -0.02em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--color-purple);
}

.logo span {
    color: var(--color-purple);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-purple);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 3rem 3rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(113, 75, 103, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-black);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 .highlight {
    color: var(--color-purple);
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 0.704rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 384px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 0.768rem 1.6rem;
    font-size: 0.64rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    border-radius: 2px;
    display: inline-block;
}

.btn-primary {
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-purple);
    transition: left 0.3s ease;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    overflow: hidden;
}

.hero-card {
    background: var(--color-white);
    padding: 2.4rem;
    border: 1px solid var(--color-gray-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-purple), var(--color-purple-light));
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    overflow: hidden;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-purple);
    display: block;
    margin-bottom: 0.3rem;
    overflow: hidden;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    overflow: hidden;
}

/* ==========================================
   PAGE HEADER
   ========================================== */

.page-header {
    padding: 12rem 3rem 4rem;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-gray-dark) 100%);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 90, 123, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.page-header-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.04rem;
    opacity: 0.9;
}

/* ==========================================
   SECTIONS
   ========================================== */

.section-header {
    max-width: 896px;
    margin: 0 auto 3.2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--color-purple-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.section-description {
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */

.features {
    padding: 6rem 3rem;
    background: var(--color-white);
}

.features-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 75, 103, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ==========================================
   SERVICES
   ========================================== */

.services-preview {
    padding: 6rem 3rem;
    background: var(--color-gray-light);
}

.services-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.4rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-black);
    transition: height 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    color: var(--color-white);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    color: var(--color-purple-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--color-white);
}

/* Services Detail Page */
.services-detail {
    padding: 4rem 3rem;
    background: var(--color-white);
}

.service-detail-item {
    max-width: 1120px;
    margin: 0 auto 4.8rem;
    padding: 3.2rem 0;
}

.service-detail-item:not(:last-child) {
    border-bottom: 1px solid var(--color-gray-light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-item.reverse .service-detail-content {
    grid-template-columns: 0.8fr 1.2fr;
}

.service-detail-item.reverse .service-detail-text {
    order: 2;
}

.service-detail-item.reverse .service-detail-visual {
    order: 1;
}

.service-icon-large {
    font-size: 4rem;
    display: block;
    margin-bottom: 1.5rem;
}

.service-detail-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.service-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
    margin-bottom: 2.5rem;
}

.service-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: bold;
}

.visual-card {
    background: var(--color-gray-light);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.visual-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.timeline-item span {
    width: 40px;
    height: 40px;
    background: var(--color-purple);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.tech-stack,
.migration-systems,
.training-formats,
.industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-item {
    padding: 0.6rem 1.2rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.migration-systems p,
.industries p {
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.migration-systems p:last-child,
.industries p:last-child {
    border-bottom: none;
}

.format-item {
    padding: 1.5rem;
    background: var(--color-white);
    margin-bottom: 1rem;
}

.format-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-purple);
}

.support-sla {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sla-item {
    padding: 1.5rem;
    background: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sla-item.critical {
    border-left: 4px solid #d32f2f;
}

.sla-item.high {
    border-left: 4px solid #f57c00;
}

.sla-item.normal {
    border-left: 4px solid #388e3c;
}

.sla-item strong {
    font-size: 1.1rem;
}

.sla-item span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-purple);
}

/* ==========================================
   APPS PAGE
   ========================================== */

.apps-categories {
    padding: 4rem 3rem;
    background: var(--color-white);
}

.apps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.app-category {
    margin-bottom: 5rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-purple);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.app-card-detailed {
    background: var(--color-white);
    padding: 2.5rem;
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
}

.app-card-detailed:hover {
    border-color: var(--color-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 75, 103, 0.15);
}

.app-icon-large {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.app-card-detailed h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.app-card-detailed p {
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-features span {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.integration-section {
    padding: 6rem 3rem;
    background: var(--color-gray-light);
}

.integration-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.integration-item {
    background: var(--color-white);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.integration-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-purple);
}

.integration-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-story {
    padding: 6rem 3rem;
    background: var(--color-white);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.6rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-gray-dark);
    margin-bottom: 1.2rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: var(--color-gray-light);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-purple);
    margin-bottom: 0.3rem;
}

.stat-box p {
    font-size: 0.76rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.values-section {
    padding: 6rem 3rem;
    background: var(--color-gray-light);
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.value-card {
    background: var(--color-white);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-gray-dark);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 3rem;
    background: var(--color-white);
}

.team-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-initial {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-purple);
}

.team-member h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--color-purple);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.member-bio {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.partners-section {
    padding: 6rem 3rem;
    background: var(--color-black);
    color: var(--color-white);
}

.partners-section .section-subtitle {
    color: var(--color-purple-light);
    font-size: 1.1rem;
}

.partners-section .section-title {
    color: var(--color-white);
    font-size: 2.5rem;
}

.partners-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 10px;
}

.partner-badge-large {
    background: transparent;
    padding: 2rem;
    text-align: center;
    border: none;
}

.badge-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
}

.partner-badge-large h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.partner-badge-large p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.partnership-text h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.partnership-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.partnership-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.partnership-text li {
    font-size: 1.1rem;
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.industries-section {
    padding: 6rem 3rem;
    background: var(--color-gray-light);
}

.industries-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.industry-card {
    background: var(--color-white);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--color-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 75, 103, 0.15);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.industry-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.industry-card p {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
    padding: 4rem 3rem;
    background: var(--color-white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.contact-form-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.form-description {
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--color-gray-light);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
}

.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--color-gray-light);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--color-gray-dark);
    line-height: 1.6;
}

.info-content a {
    color: var(--color-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--color-purple);
}

.quick-contact {
    background: var(--color-black);
    color: var(--color-white);
    padding: 2.5rem;
}

.quick-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-btn {
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.quick-btn.whatsapp {
    background: #25D366;
    color: var(--color-white);
}

.quick-btn.phone {
    background: var(--color-purple);
    color: var(--color-white);
}

.quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-section {
    height: 400px;
    background: var(--color-gray-light);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    text-align: center;
    max-width: 400px;
}

.map-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-overlay p {
    color: var(--color-gray-dark);
    margin-bottom: 1.5rem;
}

.map-link {
    color: var(--color-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: var(--color-purple-dark);
}

/* ==========================================
   PATH IDENTIFICATION SECTION
   ========================================== */

.path-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.path-container {
    max-width: 1000px;
    margin: 0 auto;
}

.path-header {
    text-align: center;
    margin-bottom: 4rem;
}

.path-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.path-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.76rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 0;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.path-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(113, 75, 103, 0.15);
    border-color: var(--color-purple);
}

.path-icon {
    font-size: 3.5rem;
    display: block;
}

.path-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    line-height: 1.3;
}

.path-description {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.path-card .btn {
    align-self: center;
    margin-top: auto;
}

/* Responsive Path Section */
@media (max-width: 768px) {
    .path-section {
        padding: 4rem 1.5rem;
    }

    .path-title {
        font-size: 2rem;
    }

    .path-subtitle {
        font-size: 1.5rem;
    }

    .path-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 6rem 3rem;
    background: var(--color-white);
}

.faq-container {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-gray-light);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--color-purple);
    box-shadow: 0 5px 15px rgba(113, 75, 103, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: var(--color-white);
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-gray-light);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-purple);
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--color-gray-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials {
    padding: 6rem 3rem;
    background: var(--color-white);
}

.testimonials-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-gray-light);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--color-purple);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-black);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
    padding: 8rem 3rem;
    background: var(--color-purple);
    color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 20px);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-purple);
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.btn-white:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 5rem 3rem 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.footer-brand span {
    color: var(--color-purple-light);
}

.footer-about {
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-purple-light);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.odoo-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: var(--color-purple-dark);
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    border-radius: 2px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .services-grid,
    .apps-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-content,
    .service-detail-item.reverse .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail-item.reverse .service-detail-text,
    .service-detail-item.reverse .service-detail-visual {
        order: initial;
    }

    .story-content,
    .partners-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1.5rem;
    }

    /* nav-links display: none silindi - mobile-responsive.css idarə edir */

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .services-grid,
    .apps-grid,
    .testimonials-grid,
    .features-grid,
    .values-grid,
    .integration-grid,
    .industries-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   FAQ ACCORDION SECTION
   ========================================== */

.faq-accordion-section {
    padding: 6rem 3rem;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.faq-accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-accordion-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* FAQ Accordion Grid */
.faq-accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

/* FAQ Accordion Item */
.faq-accordion-item {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-gray-light);
}

.faq-accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.faq-accordion-question {
    display: flex;
    align-items: center;
    padding: 1.75rem;
    cursor: pointer;
    gap: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover .faq-accordion-question {
    background: linear-gradient(135deg, rgba(113, 75, 103, 0.03) 0%, rgba(135, 90, 123, 0.03) 100%);
}

.faq-accordion-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(113, 75, 103, 0.1) 0%, rgba(135, 90, 123, 0.1) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-accordion-icon svg {
    width: 35px;
    height: 35px;
}

.faq-accordion-item.active .faq-accordion-icon,
.faq-accordion-item:hover .faq-accordion-icon {
    transform: scale(1.1) rotate(5deg);
}

.faq-accordion-title {
    flex: 1;
}

.faq-accordion-title h3 {
    font-size: 1.4rem;
    color: var(--color-black);
    margin-bottom: 0.3rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}

.faq-accordion-subtitle {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 400;
}

.faq-accordion-toggle {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-accordion-item.active .faq-accordion-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-purple-dark));
}

/* ==========================================
   TEKLIFLERIMIZ / OFFERS PAGE
   ========================================== */

.offer-core-services {
    padding: 6rem 3rem;
    background: var(--color-white);
}

.offer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.offer-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.offer-service-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.offer-service-item.reverse .offer-service-content {
    order: 2;
}

.offer-service-item.reverse .offer-service-image {
    order: 1;
}

.offer-service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.offer-service-content p {
    font-size: 1.05rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.offer-service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(113, 75, 103, 0.1) 0%, rgba(135, 90, 123, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* Complete Services Grid */
.offer-complete-services {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-gray-light);
    transition: all 0.3s ease;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(113, 75, 103, 0.15);
    border-color: var(--color-purple);
}

.service-box-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.8rem;
}

.service-box p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
}

/* Journey Section */
.offer-journey {
    padding: 6rem 3rem;
    background: var(--color-white);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.journey-step {
    background: linear-gradient(135deg, rgba(113, 75, 103, 0.05) 0%, rgba(135, 90, 123, 0.05) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-purple);
    position: relative;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 1rem;
}

.journey-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

.journey-step p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    line-height: 1.7;
}

.journey-cta {
    text-align: center;
}

/* Methodology Section */
.offer-methodology {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.methodology-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

/* Methodology Tabbed Interface */
.methodology-wrapper {
    margin-top: 3rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.methodology-tabs {
    display: flex;
    gap: 0.5rem;
    background: linear-gradient(135deg, #714B67 0%, #875A7B 100%);
    padding: 1.5rem;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.methodology-tabs::-webkit-scrollbar {
    height: 8px;
}

.methodology-tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.methodology-tabs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.methodology-tabs::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.6);
}

.methodology-tab {
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 12px;
    flex: 1;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.methodology-tab:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.methodology-tab.active {
    background: white;
    color: #714B67;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.methodology-tab.active span {
    font-weight: 700;
}

.methodology-content {
    padding: 0;
    position: relative;
}

.phase-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.phase-content.active {
    display: block;
    opacity: 1;
}

.phase-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
}

.phase-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phase-image-placeholder {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(113, 75, 103, 0.1) 0%, rgba(135, 90, 123, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.phase-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.phase-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.phase-text p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.phase-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-black);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.phase-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-text ul li {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.phase-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-purple);
    font-weight: 700;
}

.phase-text strong {
    color: var(--color-black);
    font-weight: 600;
}

.btn-phase {
    margin-top: 1.5rem;
    align-self: flex-start;
}

/* Responsive Methodology */
@media (max-width: 1024px) {
    .phase-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phase-image-placeholder {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .methodology-tabs {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .methodology-tab {
        padding: 1rem 0.5rem;
        font-size: 0.75rem;
    }

    .phase-inner {
        padding: 2rem 1.5rem;
    }

    .phase-text h3 {
        font-size: 1.4rem;
    }
}

/* CTA Section */
.offer-cta {
    padding: 7rem 3rem;
    background: linear-gradient(135deg, #714B67 0%, #875A7B 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.offer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.02) 10px,
            rgba(0, 0, 0, 0.02) 20px);
    z-index: 1;
}

.offer-cta>* {
    position: relative;
    z-index: 2;
}

.offer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.offer-cta p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

.offer-cta .btn-primary {
    background: white;
    color: #714B67;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.offer-cta .btn-primary:hover {
    background: #f0f0f0;
    color: #714B67;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive Offers Page */
@media (max-width: 768px) {

    .offer-service-item,
    .offer-service-item.reverse {
        grid-template-columns: 1fr;
    }

    .offer-service-item.reverse .offer-service-content {
        order: 1;
    }

    .offer-service-item.reverse .offer-service-image {
        order: 2;
    }

    .offer-core-services,
    .offer-complete-services,
    .offer-journey,
    .offer-methodology {
        padding: 4rem 1.5rem;
    }

    .offer-cta {
        padding: 4rem 1.5rem;
    }

    .offer-cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .offer-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .offer-service-content h3 {
        font-size: 1.6rem;
    }
}

.faq-accordion-item.active .faq-accordion-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--color-purple-light), var(--color-purple-dark));
}

/* FAQ Accordion Answer */
.faq-accordion-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.active .faq-accordion-answer {
    max-height: 600px;
}

.faq-accordion-content {
    padding: 0 1.75rem 1.75rem;
    border-top: 1px solid var(--color-gray-light);
    margin-top: 0;
    animation: fadeInContent 0.5s ease-out;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-accordion-content p {
    color: var(--color-gray-dark);
    margin: 1.25rem 0 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-accordion-content ul {
    list-style: none;
    padding: 0;
}

.faq-accordion-content ul li {
    padding: 0.75rem 0;
    color: var(--color-black);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-accordion-content ul li:last-child {
    border-bottom: none;
}

.faq-accordion-content ul li strong {
    color: var(--color-purple);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

/* Responsive for FAQ Accordion */
@media (max-width: 1200px) {
    .faq-accordion-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .faq-accordion-grid {
        grid-template-columns: 1fr;
    }

    .faq-accordion-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-accordion-question {
        padding: 1.25rem;
    }

    .faq-accordion-icon {
        width: 50px;
        height: 50px;
    }

    .faq-accordion-icon svg {
        width: 28px;
        height: 28px;
    }

    .faq-accordion-title h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================
   MOBILE HAMBURGER MENU
   ========================================== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    position: relative;
    /* Mobil touch üçün kritik */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    padding: 10px;
    margin: -10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {

    /* Navigation */
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    /* nav-links qaydaları mobile-responsive.css-ə köçürüldü
    .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        text-align: center;
        gap: 0;
        transition: left 0.3s ease;
        padding: 2rem 0;
        border-bottom: 1px solid var(--color-gray-light);
        z-index: 999;
        list-style: none;
        pointer-events: auto;
        overflow: visible;
    }

    .nav-links li {
        display: block;
        pointer-events: auto;
    }

    .nav-links.active {
        left: 0;
    }
    */

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-gray-light);
        color: var(--color-black);
        text-decoration: none;
        font-weight: 500;
        pointer-events: auto;
        cursor: pointer;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a.active {
        background: #f5f5f5;
        color: var(--color-purple);
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
    }

    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Sections */
    .section-header {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Methodology Section */
    .methodology-list {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    /* Cards */
    .feature-card,
    .service-card,
    .phase-card {
        padding: 1.5rem;
    }

    /* Forms */
    .form-group {
        margin-bottom: 1rem;
    }

    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* FAQs */
    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-toggle {
        font-size: 1.5rem;
    }

    /* Tables */
    .phase-list {
        grid-template-columns: 1fr;
    }

    /* Modal */
    .modal-content {
        width: 90%;
        max-width: 95%;
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    /* Text sizes */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1rem;
    }

    p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {

    /* Navigation */
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hamburger menu - CRITICAL for small phones */
    .hamburger {
        display: flex !important;
        z-index: 1001;
    }

    /* nav-links qaydaları mobile-responsive.css-ə köçürüldü
    .nav-links {
        position: fixed !important;
        top: 60px !important;
        left: -100% !important;
        width: 100% !important;
        height: auto !important;
        background: rgba(255, 255, 255, 0.98) !important;
        flex-direction: column !important;
        padding: 2rem 0 !important;
        transition: left 0.3s ease !important;
        z-index: 1000 !important;
        border-bottom: 1px solid #eee;
    }

    .nav-links.active {
        left: 0 !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid #f0f0f0;
    }
    */

    /* Hero */
    .hero-content h1 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    /* Section Headers */
    .section-header {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* Stats */
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Buttons */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Forms */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    /* Cards */
    .feature-card,
    .service-card,
    .phase-card {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    /* Contact Form */
    .contact-form {
        padding: 1.5rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        padding: 1rem;
    }

    /* Footer */
    .footer-container {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    /* Vacancy Cards */
    .vacancy-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .vacancy-header h3 {
        font-size: 1.1rem;
    }

    .vacancy-type {
        align-self: flex-start;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

.partners-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gold-partner-info {
    background: linear-gradient(135deg, #714B67 0%, #9B6B8F 50%, #714B67 100%);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(113, 75, 103, 0.3);
    position: relative;
}

.gold-partner-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.gold-partner-box {
    max-width: 900px;
    margin: 0 auto;
    color: white;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.badge-icon-small {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.gold-partner-box h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partner-status {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.partner-details {
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 230, 255, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 1.5rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(113, 75, 103, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.partner-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #714B67, #9B6B8F, #714B67);
}

.partner-details h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    color: #714B67;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.partner-details h4::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, #714B67, #9B6B8F);
    border-radius: 3px;
}

.partner-details p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #555;
    font-weight: 500;
}

.benefits-small {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.benefits-small li {
    font-size: 1rem;
    padding: 1rem;
    color: #333;
    background: linear-gradient(135deg,
            rgba(113, 75, 103, 0.08) 0%,
            rgba(155, 107, 143, 0.05) 100%);
    border-radius: 12px;
    font-weight: 700;
    border-left: 5px solid #714B67;
    border-right: 2px solid rgba(113, 75, 103, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow:
        0 4px 15px rgba(113, 75, 103, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.benefits-small li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(113, 75, 103, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefits-small li:hover {
    transform: translateY(-12px) translateX(8px);
    box-shadow:
        0 15px 40px rgba(113, 75, 103, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg,
            rgba(113, 75, 103, 0.12) 0%,
            rgba(155, 107, 143, 0.08) 100%);
    border-left-color: #9B6B8F;
}

.benefits-small li::after {
    content: '→';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transition: all 0.4s ease;
    color: #714B67;
    font-weight: bold;
}

.benefits-small li:hover::after {
    opacity: 1;
    right: 0.5rem;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.partners-slider {
    flex: 1;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.partners-slider::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    background: var(--color-purple);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--color-dark-purple);
    transform: scale(1.1);
}

.prev-btn {
    order: -1;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    min-width: 180px;
    text-align: center;
    flex-shrink: 0;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.partner-card img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.partner-card .partner-name {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-black);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 1.5rem;
    }

    .gold-partner-info {
        padding: 0;
        margin-bottom: 2rem;
        border-radius: 15px;
    }

    .gold-partner-box {
        padding: 2.5rem 1.5rem;
    }

    .badge-icon-small {
        font-size: 3rem;
    }

    .gold-partner-box h3 {
        font-size: 2rem;
    }

    .partner-details {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-top: 2rem;
    }

    .partner-details h4 {
        font-size: 1.5rem;
    }

    .benefits-small {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-small li {
        padding: 1rem;
    }

    .partners-wrapper {
        gap: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .partner-card {
        padding: 1.5rem;
        min-height: 110px;
        min-width: 140px;
    }

    .partner-card img {
        max-height: 70px;
    }
}

/* Companies Section */
/* Video Play Icon */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.blog-card:hover .play-icon {
    background: #e74c3c;
    transform: translate(-50%, -50%) scale(1.1);
}

.blog-image {
    position: relative;
    /* For absolute positioning of play icon */
}


.blog-card {
    cursor: pointer;
}

/* ==================================================
   ƏLAVƏ MOBİL RESPONSİV DÜZƏLİŞLƏR
   ================================================== */

/* Ümumi konteyner düzəlişləri */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Team grid */
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Industries grid */
    .industries-grid {
        grid-template-columns: 1fr !important;
    }

    /* Apps grid */
    .apps-grid {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials grid */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* Phase content */
    .phase-inner {
        flex-direction: column !important;
    }

    .phase-image,
    .phase-text {
        width: 100% !important;
    }

    /* Methodology tabs */
    .methodology-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .methodology-tab {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }

    /* Partners slider */
    .partners-wrapper {
        flex-direction: column;
    }

    .slider-btn {
        display: none;
    }

    /* Contact info */
    .contact-info {
        grid-template-columns: 1fr !important;
    }

    .info-item {
        padding: 1.5rem;
    }

    /* Quick contact buttons */
    .quick-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .quick-btn {
        width: 100%;
        text-align: center;
    }

    /* Gold partner box */
    .gold-partner-box {
        padding: 2rem 1rem;
    }

    .gold-partner-box h3 {
        font-size: 1.5rem;
    }

    .benefits-small {
        grid-template-columns: 1fr !important;
    }

    /* Stats */
    .stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Service boxes */
    .service-box {
        padding: 1.5rem;
    }

    /* Blog card images */
    .blog-image img {
        height: 200px;
        object-fit: cover;
    }

    /* Vacancy cards */
    .vacancy-card {
        padding: 1.5rem;
    }

    .vacancy-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Extra kiçik ekranlar üçün (< 480px) */
@media (max-width: 480px) {

    /* Daha kiçik padding */
    section {
        padding: 3rem 1rem !important;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Nav logo */
    .logo {
        font-size: 1.1rem;
    }

    /* Hero section */
    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    /* Buttonlar */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Section başlıqları */
    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    /* Cards */
    .blog-card,
    .service-card,
    .feature-card,
    .team-member,
    .industry-card {
        padding: 1rem;
    }

    /* Form inputs */
    input,
    textarea,
    select {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    /* Blog meta */
    .blog-meta {
        flex-wrap: wrap;
        gap: 0.3rem;
        font-size: 0.75rem;
    }

    /* Methodology tabs */
    .methodology-tab {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    /* Footer */
    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    /* Gold partner */
    .badge-icon-small {
        font-size: 2.5rem;
    }

    .gold-partner-box h3 {
        font-size: 1.2rem;
    }

    .partner-details {
        padding: 1.5rem;
    }

    .partner-details h4 {
        font-size: 1.2rem;
    }

    /* Stats */
    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* Landscape mode fix mobil cihazlar üçün */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    /* nav-links mobile-responsive.css-də idarə olunur
    .nav-links {
        max-height: 70vh;
        overflow-y: auto;
    }
    */
}

/* Tablet üçün optimizasiya (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Horizontal scroll prevention - already handled in main CSS above */

/* ==========================================
   MOBILE RESPONSIVE FIXES (CRITICAL UPDATE)
   ========================================== */

@media (max-width: 768px) {

    /* About Page Fixes - FORCE COLUMN LAYOUT */
    .about-story {
        padding: 2rem 1rem !important;
        overflow-x: hidden !important;
    }

    .about-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .story-content {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 2rem !important;
    }

    .story-text {
        width: 100% !important;
        max-width: 100% !important;
    }

    .story-text h2 {
        font-size: 1.5rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.3 !important;
    }

    /* Force 1 column for stats on mobile */
    .story-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .stat-box {
        padding: 1.5rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Footer Fixes */
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }

    .footer-col,
    .footer-section {
        width: 100% !important;
        text-align: left !important;
    }
}