/* ==========================================================================
   SMART LINE USA - PREMIUM DESIGN SYSTEM & STYLES
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --bg-dark: #0b0f19;
    --bg-dark-secondary: #111827;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;

    --text-light: #f3f4f6;
    --text-muted-light: #9ca3af;
    --text-dark: #1f2937;
    --text-muted-dark: #6b7280;

    --primary: #14b8a6;
    --primary-hover: #0d9488;
    --secondary: #06b6d4;
    --secondary-hover: #0891b2;
    --accent: #6366f1;

    --gradient-primary: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --gradient-hero: radial-gradient(circle at 80% 20%, #1e1b4b 0%, #0b0f19 100%);
    --gradient-featured: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
    --gradient-text: linear-gradient(90deg, #14b8a6, #06b6d4 50%, #818cf8);
    --primary-gradient: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #6366f1 100%);

    --border-light: rgba(255, 255, 255, 0.08);
    --border-dark: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 25px rgba(20, 184, 166, 0.35);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 2. Global Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.45), var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: white;
}

.btn-quote {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-quote:hover {
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
    transform: scale(1.03);
}

.btn-block {
    width: 100%;
}

/* 3. Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    transition: var(--transition-fast);
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(11, 15, 25, 0.9);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-svg,
.logo-img {
    display: block;
    height: 52px;
    width: auto;
    transition: var(--transition-fast);
}

.logo:hover .logo-svg,
.logo:hover .logo-img {
    transform: translateY(-1px) scale(1.02);
    filter: drop-shadow(0 4px 12px rgba(20, 184, 166, 0.25));
}

.nav-menu>ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted-light);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: var(--transition-fast);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    width: 320px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding-left: 24px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* 4. Hero Section */
.hero-section {
    background: var(--gradient-hero);
    color: white;
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 350px;
    height: 350px;
    background: var(--primary);
}

.shape-2 {
    bottom: 10%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: var(--accent);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-tag {
    display: inline-block;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    color: #99f6e4;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.changing-text-wrapper {
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
    height: 1.25em;
    line-height: 1.25em;
}

.changing-text {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease;
}

.changing-text.anim-out {
    transform: translateY(-100%);
    opacity: 0;
}

.changing-text.anim-in {
    transform: translateY(100%);
    opacity: 0;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

/* Hero Language Marquee */
.language-marquee-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.marquee-fade-left,
.marquee-fade-right {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, #0b0f19, transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, #0b0f19, transparent);
}

.language-marquee {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    user-select: none;
    white-space: nowrap;
    will-change: transform;
}

.marquee-group {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    white-space: nowrap;
}

.marquee-lang-badge {
    background: #ffffff !important;
    border: none;
    color: #0f172a !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    gap: 12px;
    line-height: 1;
}

.flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag-icon-nav {
    width: 16px;
    height: auto;
    border-radius: 2px;
    margin-right: 8px;
    display: inline-block;
}

.marquee-lang-badge:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Hero Image & Floating Widgets */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    filter: blur(40px);
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    background: var(--bg-dark-secondary);
}

.hero-image {
    border-radius: 23px;
    object-fit: cover;
    width: 100%;
    height: 480px;
    filter: brightness(0.95);
    transition: var(--transition-normal);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
}

/* Floating Widgets */
.floating-widget {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-widget 4s ease-in-out infinite;
}

.chat-widget {
    bottom: 30px;
    left: -40px;
}

.rate-widget {
    top: 280px;
    right: -30px;
    animation-delay: 2s;
}

.widget-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.widget-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.widget-info p {
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

@keyframes float-widget {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* 5. Trust Stats Bar */
.trust-stats-bar {
    background: var(--bg-dark-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
    color: var(--text-light);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.stat-icon {
    color: var(--secondary);
    font-size: 1.1rem;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
}

/* 6. Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Desktop: 3 cards on top row, 2 centered on bottom row */
@media (min-width: 1025px) {
    .why-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .why-card {
        grid-column: span 2;
    }

    .why-card:nth-child(4) {
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .why-card:nth-child(5) {
        grid-column-start: 4;
        grid-column-end: 6;
    }
}

/* Tablet: 2 columns layout, centering the 5th card full-width */
@media (min-width: 600px) and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card:nth-child(5) {
        grid-column: span 2;
    }
}

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: background 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.why-card:hover {
    background: var(--gradient-primary);
    color: white !important;
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(20, 184, 166, 0.3);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    transition: color 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover h3 {
    color: white !important;
}

.why-card p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
    transition: color 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card-icon-box {
    width: 54px;
    height: 54px;
    background: rgba(20, 184, 166, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: background 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover .card-icon-box {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.card-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: background 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.35s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover .card-arrow {
    background: white;
    color: var(--primary);
    transform: translateX(4px);
}

/* 7. About Us Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.mission-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    filter: blur(40px);
}

.about-image {
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-light);
    color: white;
    padding: 16px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.badge-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted-light);
    letter-spacing: 1px;
}

.mini-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.08);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
    margin-bottom: 30px;
}

.about-bullets {
    margin-bottom: 40px;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 500;
}

.bullet-icon {
    width: 24px;
    height: 24px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* 8. Experts & Map Section */
.experts-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #eefaf4 0%, #f4fbf8 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.experts-grid-top {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* Stat Counter Box */
.stat-counter-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack .avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -14px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.avatar-stack .avatar-img:first-child {
    margin-left: 0;
}

.counter-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-number-row {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    display: flex;
    align-items: center;
}

.counter-plus {
    color: var(--text-dark);
}

.counter-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted-dark);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.experts-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.experts-desc {
    color: var(--text-muted-dark);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 460px;
}

/* Trial Lesson Button */
.btn-trial {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-trial-icon {
    width: 46px;
    height: 46px;
    background: #14b8a6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.3);
}

.btn-trial-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-left: 14px;
    transition: var(--transition-fast);
}

.btn-trial:hover .btn-trial-icon {
    transform: translateX(4px);
    background: #0d9488;
    box-shadow: 0 6px 18px rgba(20, 184, 166, 0.45);
}

.btn-trial:hover .btn-trial-text {
    color: #14b8a6;
}

/* Map Container */
.experts-section .map-container-box {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3D Globe Container */
.globe-container {
    width: 100%;
    height: 520px;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.globe-container:active {
    cursor: grabbing;
}

.globe-container canvas {
    outline: none;
    user-select: none;
    -webkit-user-drag: none;
}

.globe-tooltip {
    position: absolute;
    display: none;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--primary, #14b8a6);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(20, 184, 166, 0.2);
    backdrop-filter: blur(8px);
    transition: opacity 0.15s ease;
    opacity: 0;
}

.world-map-svg {
    width: 100%;
    height: auto;
    opacity: 0.98;
    pointer-events: none;
    filter: drop-shadow(0 10px 24px rgba(16, 185, 129, 0.08));
}

/* 3D Glossy Flag Spheres */
.flag-sphere {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18),
        inset 0 -8px 20px rgba(0, 0, 0, 0.35),
        inset 0 8px 20px rgba(255, 255, 255, 0.4);
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.flag-sphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.sphere-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

/* Individual Positions and Floating Animations */
.sphere-uk {
    width: 96px;
    height: 96px;
    top: -5%;
    right: 4%;
    animation: floatUK 6s ease-in-out infinite;
}

.sphere-fr {
    width: 72px;
    height: 72px;
    top: 22%;
    left: 28%;
    animation: floatFR 7s ease-in-out infinite;
}

.sphere-de {
    width: 76px;
    height: 76px;
    bottom: 8%;
    left: 24%;
    animation: floatDE 5.5s ease-in-out infinite;
}

.sphere-es {
    width: 86px;
    height: 86px;
    top: 42%;
    right: 3%;
    animation: floatES 6.5s ease-in-out infinite;
}

/* Hover effect: Scale up and increase shadow glow */
.flag-sphere:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        inset 0 -8px 20px rgba(0, 0, 0, 0.35),
        inset 0 8px 20px rgba(255, 255, 255, 0.45);
}

/* Keyframes for Continuous Smooth Floating Animation using margin-top */
@keyframes floatUK {

    0%,
    100% {
        margin-top: 0px;
    }

    50% {
        margin-top: -12px;
    }
}

@keyframes floatFR {

    0%,
    100% {
        margin-top: 0px;
    }

    50% {
        margin-top: -8px;
    }
}

@keyframes floatDE {

    0%,
    100% {
        margin-top: 0px;
    }

    50% {
        margin-top: -10px;
    }
}

@keyframes floatES {

    0%,
    100% {
        margin-top: 0px;
    }

    50% {
        margin-top: -7px;
    }
}

/* Interpreter Profiles Grid */
.interpreters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.interpreter-card {
    background: var(--bg-white);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.interpreter-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 182, 212, 0.15);
}

.card-img-box {
    position: relative;
    height: 200px;
    background: #e2e8f0;
    overflow: hidden;
}

.card-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: var(--transition-normal);
}

.interpreter-card:hover .card-avatar {
    transform: scale(1.05);
}

.lang-tag {
    position: absolute;
    bottom: 12px;
    left: 16px;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-light);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.card-details {
    padding: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-num {
    color: var(--text-muted-dark);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 4px;
}

.card-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.card-role {
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    margin-bottom: 20px;
    min-height: 40px;
}

.btn-card-book {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-card-book:hover {
    background: var(--primary);
    color: white;
}

/* 9. Scrolling Text Ticker Banner */
.ticker-section {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.45);
    padding: 28px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.ticker-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 45s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticker-track span {
    margin-right: 20px;
}

@keyframes marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* 10. Footer Section */
.main-footer {
    background-color: #060911;
    color: var(--text-light);
    padding: 60px 0 30px 0;
    border-top: 1px solid var(--border-light);
}

.footer-row-one {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 30px;
    margin-bottom: 40px;
}

.footer-brand-col {
    flex: 1 1 280px;
    max-width: 320px;
}

.footer-brand-desc {
    font-size: 0.92rem;
    color: var(--text-muted-light);
    line-height: 1.6;
    margin-top: 16px;
}

.footer-logo {
    display: block;
}

.footer-col {
    flex: 1 1 180px;
}

.footer-col.footer-contact-col {
    flex: 1 1 280px;
    max-width: 320px;
}

.footer-contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted-light);
    line-height: 1.6;
}

.footer-contact-details .contact-item i {
    color: #0ea5e9;
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-details .contact-item a {
    color: var(--text-muted-light);
    transition: color var(--transition-fast);
}

.footer-contact-details .contact-item a:hover {
    color: white;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.25));
}

.footer-address {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-address i,
.footer-contact-details i {
    color: #0ea5e9;
    margin-right: 8px;
}

.footer-contact-details {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    line-height: 1.8;
}

.footer-contact-details a:hover {
    color: white;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0ea5e9;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted-light);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

.col-subscribe p {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
}

.subscribe-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.9rem;
}

.subscribe-input::placeholder {
    color: var(--text-muted-light);
}

.btn-subscribe {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-subscribe:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.subscribe-success-msg {
    display: none;
    font-size: 0.85rem;
    color: #10b981;
    margin-top: 10px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex-shrink: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.payment-icons {
    display: flex;
    gap: 14px;
    font-size: 1.8rem;
    color: var(--text-light);
}

.payment-icons i {
    opacity: 0.75;
    transition: var(--transition-fast);
    cursor: pointer;
}

.payment-icons i:hover {
    color: #0ea5e9;
    opacity: 1;
    transform: translateY(-2px);
}

.footer-bottom a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* 11. Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 13, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: #e5e7eb;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-right: 20px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 28px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.highlight-text {
    color: var(--primary);
    font-weight: 700;
}

.modal-success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 20px;
}

.modal-success-screen h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-success-screen p {
    color: var(--text-muted-dark);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Video Player Modal Specifics */
.video-modal-content {
    max-width: 800px;
    padding: 0;
    background: black;
    border-radius: 16px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.simulated-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-overlay {
    text-align: center;
    color: white;
    padding: 24px;
}

.player-play-btn {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.player-play-btn:hover {
    transform: scale(1.1);
    color: white;
}

.player-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.player-overlay p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
}

/* 12. Page Transition & Scroll Triggers (Intersection Observer) */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: enter-left 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: enter-right 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes enter-left {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes enter-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal class setup */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .about-container {
        gap: 40px;
    }

    .footer-row-one {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-dark-secondary);
        border-left: 1px solid var(--border-light);
        padding: 100px 40px;
        transition: var(--transition-normal);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu>ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 6px 0 0 16px;
        width: auto;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .language-marquee-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .floating-widget {
        display: none;
        /* Hide floating widgets on mobile to declutter */
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .experts-grid-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .globe-container {
        height: 380px;
    }

    .avatar-stack {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-row-one {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-subscribe {
        max-width: 100%;
        width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/* 12. Contact Section (Homepage) */
.contact-section {
    padding: 100px 0;
    background-color: #060913;
    /* Deep midnight navy blue matching the image */
    color: #ffffff;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split 50/50 to stretch form and FAQs side-by-side */
    gap: 50px;
    align-items: stretch;
    /* Stretch columns to match heights for sticky scrolling */
}

.contact-info-col {
    padding-right: 10px;
}

.contact-subtitle {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
}

/* Specific styling for category titles in the FAQ accordion column to keep it compact */
.faq-info-col .contact-title {
    font-size: 1.35rem;
    /* much smaller title font size for compact layout */
    font-weight: 800;
    margin-top: 24px !important;
    /* reduced margin top from 40px inline */
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Ensure the first FAQ category doesn't have an unwanted top margin */
.faq-info-col .contact-title:first-of-type {
    margin-top: 0 !important;
}

/* FAQ Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* reduced from 16px */
    margin-top: 10px;
    /* reduced from 30px */
    width: 100%;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.03);
    /* Light transparent background matching Framer style */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    /* slightly smaller border radius */
    overflow: hidden;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.3);
    /* Subtle blue border when open */
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    /* reduced from 22px 26px */
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    color: #ffffff;
    gap: 16px;
}

.faq-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    /* reduced from 1.15rem */
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--secondary);
    /* Sky blue text when open */
}

.faq-icon-wrapper {
    width: 24px;
    /* reduced from 32px */
    height: 24px;
    /* reduced from 32px */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-icon-wrapper {
    background-color: rgba(6, 182, 212, 0.1);
}

.faq-item.active .faq-icon-wrapper {
    background-color: var(--secondary);
    color: #0f172a;
}

.faq-toggle-icon {
    font-size: 0.75rem;
    /* reduced from 0.9rem */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    /* plus sign becomes an X */
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    /* reduced from 0 26px 26px 26px */
    font-size: 0.88rem;
    /* reduced from 0.98rem */
    line-height: 1.6;
    color: #94a3b8;
    /* slate gray */
}

.faq-answer strong {
    color: var(--secondary);
    font-weight: 600;
}


/* Consultation Form Card */
.contact-form-col {
    position: relative;
}

.consultation-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 45px;
    /* stretched form container vertically */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #1e293b;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    overflow: hidden;
}

.consultation-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    /* much larger to make each word massive and single-line */
    font-weight: 800;
    color: #0f172a;
    line-height: 1.05;
    /* tighter line spacing for headline design */
    margin-bottom: 20px;
}

.consultation-card .card-subtitle {
    font-size: 1.25rem;
    /* made these words bigger as requested */
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 45px;
    /* more spacing to stretch the card height */
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* stretched input gaps from 20px */
}

.consultation-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* stretched internal gaps from 8px */
}

.consultation-form label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 16px 20px;
    /* stretched padding from 14px 18px */
    border-radius: 10px;
    /* smoother borders */
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.consultation-form textarea {
    min-height: 150px;
    /* stretched textarea height from default */
    resize: vertical;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #94a3b8;
}

.consultation-form select:invalid {
    color: #94a3b8;
}

.consultation-form select option {
    color: #0f172a;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.btn-submit-inquiry {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 16px 28px;
    /* stretched button padding */
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    text-transform: none;
    /* Make sure it doesn't capitalise automatically */
}

.btn-submit-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #000000;
}

/* Success Screen inside Card */
.consultation-success-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: none;
    /* Toggle to flex in JS */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 10;
}

.consultation-success-screen .success-icon {
    font-size: 4rem;
    color: #25d366;
    margin-bottom: 20px;
}

.consultation-success-screen h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.consultation-success-screen p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 320px;
}

/* Responsive grid for contact section */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-col {
        padding-right: 0;
    }

    .consultation-card {
        position: static;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 2.2rem;
    }

    .consultation-card {
        padding: 45px 24px;
    }

    .consultation-card h3 {
        font-size: 2.5rem;
        /* responsive title size on mobile to prevent overflow */
        margin-bottom: 15px;
    }

    .consultation-card .card-subtitle {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
}

/* 13. Testimonials Section (Dual-Row Infinite Marquee) */
.testimonials-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* White background instead of blue */
    color: var(--text-dark);
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    /* Subtle border on white bg */
    border-bottom: 1px solid #e2e8f0;
}

.testimonials-container {
    width: 100%;
    padding: 0;
}

/* Rows styling */
.testimonials-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
}

.testimonials-row:last-of-type {
    margin-bottom: 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    /* Ensure track occupies its full items content size */
}

/* Animations */
.row-left .testimonials-track {
    animation: scroll-left-testimonials 40s linear infinite;
}

.row-right .testimonials-track {
    animation: scroll-right-testimonials 40s linear infinite;
}

/* Pause animations on hover */
.testimonials-row:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes scroll-left-testimonials {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

    /* Shift exactly by half since it's duplicated */
}

@keyframes scroll-right-testimonials {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* Card Styling - Neobrutalist design */
.testimonial-card {
    width: 380px;
    height: 250px;
    border-radius: 24px;
    border: 2px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000000;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
    background-color: #ffffff;
}

.testimonial-card:active {
    cursor: grabbing;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 10px 10px 0px #000000;
}

/* Card background colors matching attachment */
.card-beige {
    background-color: #f6f4eb;
}

.card-lime {
    background-color: #e2f37e;
}

.card-lavender {
    background-color: #ebe7f5;
}

.card-green {
    background-color: #caffbf;
}

.card-green-alt {
    background-color: #bbf2c6;
}

.card-cyan {
    background-color: #cbf3f0;
}

.card-green-light {
    background-color: #caffbf;
}



/* Card inner layout */
.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #000000;
}

.user-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #000000;
}

.rating-stars {
    color: #000000;
    /* Neobrutalist styling uses solid black stars */
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.88rem;
    line-height: 1.6;
    font-weight: 500;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive styles for testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-card {
        width: 300px;
        height: 220px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 4px 4px 0px #000000;
    }

    .testimonial-card:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 6px 6px 0px #000000;
    }



    .testimonial-text {
        font-size: 0.82rem;
        line-height: 1.5;
        -webkit-line-clamp: 5;
    }

    .user-avatar {
        width: 28px;
        height: 28px;
    }

    .user-name {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   14. Subpage (About Us Page) Styling
   ========================================================================== */
.subpage-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-color: #060913;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid #1e293b;
}

.subpage-hero .hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.subpage-hero .hero-bg-shapes .shape-1 {
    top: -10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
}

.subpage-hero .hero-bg-shapes .shape-2 {
    bottom: -10%;
    right: 20%;
    width: 250px;
    height: 250px;
    background: var(--secondary-gradient);
}

.subpage-hero .mini-badge {
    margin-bottom: 15px;
}

.subpage-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: var(--font-header);
    color: #ffffff;
}

.subpage-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    margin-top: 15px;
}

.subpage-breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.subpage-breadcrumbs a:hover {
    color: var(--secondary-color);
}

/* Narrative & Vision Layout */
.about-detail-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: var(--text-dark);
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

.about-narrative {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-narrative p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
}

.about-narrative p:first-of-type {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.6;
}

.vision-card {
    background-color: #f6f4eb;
    border: 2px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    border-radius: 24px;
    padding: 35px;
    position: sticky;
    top: 100px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 10px 10px 0px #000000;
}

.vision-card .vision-icon {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
    font-family: var(--font-header);
}

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 500;
}

/* What We Do subpage section */
.about-what-we-do {
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.about-what-we-do .section-header {
    margin-bottom: 60px;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.what-we-do-card {
    background-color: #ffffff;
    border: 2px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.what-we-do-card:hover {
    transform: translateY(-4px);
    box-shadow: 10px 10px 0px #000000;
}

.what-we-do-card .card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid #000000;
    background-color: #e2f37e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000000;
    flex-shrink: 0;
}

.what-we-do-card:nth-child(2) .card-icon-box {
    background-color: #ebe7f5;
}

.what-we-do-card:nth-child(3) .card-icon-box {
    background-color: #cbf3f0;
}

.what-we-do-card:nth-child(4) .card-icon-box {
    background-color: #caffbf;
}

.what-we-do-card .card-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
    font-family: var(--font-header);
}

.what-we-do-card .card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
}

/* Call-to-action subpage banner */
.about-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-cta-banner {
    background: var(--primary-gradient);
    border: 2px solid #000000;
    box-shadow: 8px 8px 0px #000000;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: var(--font-header);
    color: #ffffff;
}

.about-cta-banner p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.5;
}

.about-cta-banner .btn-cta-white {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    font-weight: 800;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-cta-banner .btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #000000;
    background-color: #f8fafc;
    color: #000000;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .about-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .subpage-hero-title {
        font-size: 2.2rem;
    }

    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-cta-banner {
        padding: 40px 20px;
    }

    .about-cta-banner h2 {
        font-size: 1.8rem;
    }

    .about-cta-banner p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   15. RTL Subpage (Arabic Translation Page) Styling
   ========================================================================== */
.rtl-container {
    direction: rtl;
    text-align: right;
}

.rtl-container .subpage-breadcrumbs {
    flex-direction: row-reverse;
}

.rtl-container .about-detail-grid {
    grid-template-columns: 0.8fr 1.2fr;
    /* Swap columns for RTL flow */
}

@media (max-width: 991px) {
    .rtl-container .about-detail-grid {
        grid-template-columns: 1fr;
    }
}

.rtl-container .vision-card {
    text-align: right;
}

.rtl-container .what-we-do-card {
    text-align: right;
}

.rtl-container .what-we-do-card .card-content {
    text-align: right;
}

.rtl-container .about-cta-banner {
    text-align: center;
}

.rtl-container .about-cta-banner p {
    margin: 0 auto 30px auto;
}

/* ==========================================================================
   16. Supported Languages & Custom Quote Calculator Page Styling
   ========================================================================== */
.languages-grid-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0 auto;
}

.search-container input {
    width: 100%;
    padding: 16px 20px 16px 54px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
    background-color: #ffffff;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    border-radius: 12px;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-container input:focus {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
    border-color: var(--primary);
}

.search-container .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.15rem;
    color: #64748b;
    pointer-events: none;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.lang-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    height: 82px;
    background: #ffffff;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lang-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px #000000;
    background-color: #f1f7ff;
}

.lang-flag {
    width: 48px;
    height: 32px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.lang-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 65px; /* Prevent text collision with absolute badge */
    min-width: 0; /* Enable flex-based text-overflow truncation */
    flex: 1;
}

.lang-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-native {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    background-color: #f0fdfa;
    color: var(--primary);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 6px;
}

.no-results-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: #ffffff;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    border-radius: 16px;
    margin-top: 50px;
}

.no-results-msg h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 6px 0;
}

.no-results-msg p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #64748b;
}

/* Quote Calculator Neobrutalist Layout */
.language-quote-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 2px solid #e2e8f0;
}

.form-container-neobrutal {
    background: #ffffff;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0px #000000;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* Custom Checkbox Group styling */
.neobrutalist-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
    padding: 8px 0;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.checkbox-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-box {
    height: 22px;
    width: 22px;
    background-color: #f8fafc;
    border: 2px solid #000000;
    border-radius: 6px;
    position: relative;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.checkbox-option:hover input~.checkbox-box {
    background-color: #f1f5f9;
    transform: scale(1.05);
}

.checkbox-option input:checked~.checkbox-box {
    background-color: var(--primary);
}

.checkbox-box::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-option input:checked~.checkbox-box::after {
    display: block;
}

.checkbox-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 550;
    color: #334155;
}

/* Form Auto-Population Animation Pulse */
.highlight-pulse {
    animation: inputHighlightPulse 1.5s ease-in-out;
}

@keyframes inputHighlightPulse {
    0% {
        border-color: #e2e8f0;
        box-shadow: none;
    }

    30% {
        border-color: var(--primary);
        box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.35);
        background-color: #f0fdfa;
    }

    100% {
        border-color: #e2e8f0;
        box-shadow: none;
    }
}

/* Custom Success screen in Neobrutalist form */
.form-container-neobrutal .consultation-success-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: none;
    /* Flex triggers in script */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    z-index: 10;
}

.form-container-neobrutal .consultation-success-screen h3 {
    margin-top: 15px;
    font-size: 1.6rem;
}

/* Responsive grid overrides for supported languages page */
@media (max-width: 768px) {
    .languages-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .form-container-neobrutal {
        padding: 24px;
        border-width: 2px;
        box-shadow: 6px 6px 0px #000000;
    }
}

/* Experience & Stats Section Styling */
.experience-stats-section {
    background: #1e143f; /* Deep royal indigo/purple from image */
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.experience-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/world-map.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.06; /* Subtle watermark */
    pointer-events: none;
    z-index: 1;
}

.experience-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2; /* Ensure content stays in front of the map */
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: white;
}

.experience-desc-wrapper {
    max-width: 960px;
    margin: 0 auto 60px auto;
}

.experience-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.experience-desc:last-child {
    margin-bottom: 0;
}

.experience-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 50px 30px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.experience-stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-stat-value {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -1.5px;
}

.experience-stat-label {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

@media (max-width: 992px) {
    .experience-title {
        font-size: 2.5rem;
    }
    
    .experience-stat-value {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .experience-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .experience-stats-section {
        padding: 70px 0;
    }
    
    .experience-title {
        font-size: 2.2rem;
    }
    
    .experience-stat-card {
        padding: 35px 20px;
    }
    
    .experience-stat-value {
        font-size: 2.8rem;
    }
}