 /* ============= VARIABLES & RESET ============= */
        :root {
            --primary-color: #000;
            --secondary-color: #d4af37;
            --accent-color: #fff;
            --text-color: #333;
            --light-bg: #f9f9f9;
            --dark-bg: #1a1a1a;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
            --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
            --gradient-dark: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
            --border-radius: 15px;
            --header-height: 80px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light-bg);
            transition: var(--transition);
        }

        /* ============= ANIMATIONS ============= */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from { 
                opacity: 0;
                transform: translateY(-30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from { 
                opacity: 0;
                transform: translateX(-100%);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from { 
                opacity: 0;
                transform: translateX(100%);
            }
            to { 
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

       
        /* ============= MOBILE NAVIGATION IMPROVED ============= */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--accent-color);
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
            border-radius: 5px;
            transition: var(--transition);
            z-index: 1002;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-btn.active {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-links {
            position: fixed;
            top: 0;
            right: 0;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: var(--dark-bg);
            padding: 100px 30px 40px;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            overflow-y: auto;
        }

        .mobile-nav-links.active {
            transform: translateX(0);
        }

        .mobile-nav-links li {
            list-style: none;
            margin-bottom: 0;
        }

        .mobile-nav-links a {
            display: block;
            color: var(--accent-color);
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            padding: 18px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            color: var(--secondary-color);
            padding-left: 10px;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: var(--dark-bg);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--accent-color);
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
            transition: var(--transition);
        }

        .mobile-menu-close:hover {
            color: var(--secondary-color);
            transform: rotate(90deg);
        }

        /* ============= RTL SUPPORT ============= */
        body[dir="rtl"] {
            text-align: right;
        }

        body[dir="rtl"] .logo {
            flex-direction: row-reverse;
        }

        body[dir="rtl"] .nav-links a::after {
            left: auto;
            right: 0;
        }

        body[dir="rtl"] .mobile-nav-links a:hover,
        body[dir="rtl"] .mobile-nav-links a.active {
            padding-left: 0;
            padding-right: 10px;
        }

        body[dir="rtl"] .language-dropdown {
            right: auto;
            left: 0;
        }

        body[dir="rtl"] .mobile-nav-links {
            right: auto;
            left: 0;
            transform: translateX(-100%);
        }

        body[dir="rtl"] .mobile-nav-links.active {
            transform: translateX(0);
        }

        body[dir="rtl"] .testimonial-author {
            flex-direction: row-reverse;
        }

        body[dir="rtl"] .whatsapp-float {
            right: auto;
            left: 30px;
        }

        /* ============= SECTIONS ============= */
        section {
            padding: 100px 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 20px auto 0;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* ============= HERO SECTION ============= */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--accent-color);
            position: relative;
            background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(212,175,55,0.2) 100%);
            margin-top: var(--header-height);
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.4);
        }

        .hero-content {
            max-width: 900px;
            padding: 40px;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-width: 200px;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--primary-color);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-color);
            border: 2px solid var(--accent-color);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* ============= ABOUT SECTION ============= */
        .about-preview {
            background: var(--accent-color);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #555;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .highlight-item {
            text-align: center;
            padding: 30px;
            background: var(--light-bg);
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .highlight-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            background: var(--gradient-primary);
            color: var(--primary-color);
        }

        .highlight-item i {
            font-size: 40px;
            color: var(--secondary-color);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .highlight-item:hover i {
            color: var(--primary-color);
        }

        .view-all-btn {
            display: inline-block;
            padding: 14px 32px;
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            margin-top: 20px;
        }

        .view-all-btn:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* ============= SERVICES SECTION ============= */
        .services-preview {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .service-preview-card {
            background: var(--accent-color);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            border: 2px solid transparent;
        }

        .service-preview-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary-color);
        }

        .service-icon {
            font-size: 50px;
            color: var(--secondary-color);
            margin-bottom: 25px;
            animation: float 3s ease-in-out infinite;
        }

        .service-preview-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .service-preview-card p {
            color: #666;
            line-height: 1.6;
        }

        /* ============= PORTFOLIO SECTION ============= */
        .portfolio-preview {
            background: var(--accent-color);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            aspect-ratio: 4/3;
            transition: var(--transition);
        }

        .portfolio-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            color: var(--accent-color);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        /* ============= STATS SECTION ============= */
        .key-stats {
            background: var(--gradient-dark);
            color: var(--accent-color);
        }

        .key-stats .section-title h2 {
            color: var(--secondary-color);
        }

        .key-stats .section-title p {
            color: #ccc;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--secondary-color);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 10px;
            font-family: 'Arial Black', sans-serif;
        }

        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* ============= TESTIMONIALS SECTION ============= */
        .testimonials {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .testimonial-slide.active {
            display: block;
        }

        .testimonial-item {
            background: var(--accent-color);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .testimonial-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
        }

        .testimonial-content::before,
        .testimonial-content::after {
            content: '"';
            color: var(--secondary-color);
            font-size: 2rem;
            opacity: 0.5;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary-color);
        }

        .author-info h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .testimonial-nav button {
            background: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-nav button:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .testimonial-dot.active {
            background: var(--secondary-color);
            transform: scale(1.2);
        }

        /* ============= FINAL CTA SECTION ============= */
        .final-cta {
            background: var(--gradient-dark);
            color: var(--accent-color);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
            animation: shimmer 3s infinite;
        }

        .final-cta .section-title h2 {
            color: var(--secondary-color);
        }

  /* ============= FOOTER ============= */
  /* Combined and optimized SEO Badge styles */
.seo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0055A4, #EF4135); /* Using actual colors instead of var() for consistency */
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin: 10px 5px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(63, 81, 181, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.seo-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(63, 81, 181, 0.3);
}

.seo-badge i {
    margin-right: 8px;
}

/* Critical CSS for above-the-fold content */
.services-hero { 
    opacity: 0; 
}

.services-hero.loaded { 
    animation: fadeIn 0.8s ease forwards; 
}

@keyframes fadeIn { 
    to { 
        opacity: 1; 
    } 
}

/* SEO 2025 Enhancements */
.french-specialist {
    background: rgba(0, 85, 164, 0.1);
    border-left: 4px solid #0055A4;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

/* Performance optimizations */
footer {
    background: var(--gradient-dark);
    color: var(--accent-color);
    padding: 100px 5% 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}


.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-bottom: 15px;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-about p {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    padding: 8px 0;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    min-width: 24px;
}

.footer-contact a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    text-decoration: underline;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #999;
    position: relative;
    z-index: 1;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 15px;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* ============= WHATSAPP BUTTON ============= */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.4s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

/* ============= BACK TO TOP ============= */
.back-to-top {
    position: fixed;
    bottom: 130px; /* Position above WhatsApp button */
    right: 40px;
    background: #3498db; /* Default color */
    background: var(--secondary-color, #3498db);
    color: white;
    color: var(--primary-color, white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    box-shadow: var(--shadow-lg, 0 5px 15px rgba(0, 0, 0, 0.2));
    z-index: 999;
    transition: all 0.3s ease;
    transition: var(--transition, all 0.3s ease);
    text-decoration: none;
    
    /* INITIALLY HIDDEN */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    
    cursor: pointer;
}

/* WHEN VISIBLE (added by JavaScript) */
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2980b9; /* Darker on hover */
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    box-shadow: var(--shadow-xl, 0 10px 25px rgba(0, 0, 0, 0.3));
}

/* Pulse animation for WhatsApp */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}


        /* ============= RESPONSIVE DESIGN ============= */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            .nav-links,
            .header-actions {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero {
                min-height: 80vh;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 80px 5%;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .about-highlights {
                grid-template-columns: 1fr;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 20px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-item {
                padding: 30px 20px;
            }
        }

        /* ============= ACCESSIBILITY ============= */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        :focus {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        .about-final-cta {
    background: var(--gradient-dark);
    color: var(--accent-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-final-cta .section-title h2 {
    color: var(--secondary-color);
}

.about-final-cta .section-title p {
    color: #ccc;
}
