/* Enhanced Base Styles */
        body { 
            font-family: 'Inter', sans-serif; 
            scroll-behavior: smooth; 
            -webkit-font-smoothing: antialiased; 
            -moz-osx-font-smoothing: grayscale; 
            background-color: theme('colors.custom-light'); 
            color: #191f27; 
            line-height: 1.75; 
            font-size: 16px;
        }
        html[lang="ar"] body { font-family: 'Cairo', sans-serif; }

        /* Language Button Styling */
        .lang-btn { transition: color 0.3s ease, border-color 0.3s ease; padding-bottom: 6px; border-bottom: 2px solid transparent; }
        .lang-btn.active { font-weight: 600; color: theme('colors.custom-dark'); border-color: theme('colors.custom-medium'); }
        .lang-btn:not(.active) { color: theme('colors.gray.500'); }
        .lang-btn:hover:not(.active) { color: theme('colors.custom-medium'); }

        /* Language Display Rules */
        html[lang="ar"] [data-lang="fr"] { display: none; }
        html[lang="fr"] [data-lang="ar"] { display: none; }

        /* RTL Adjustments */
        html[lang="ar"] { direction: rtl; }
        html[lang="ar"] .text-left, html[lang="ar"] .md\:text-left, html[lang="ar"] .lg\:text-left { text-align: right; }
        html[lang="ar"] .text-right, html[lang="ar"] .md\:text-right, html[lang="ar"] .lg\:text-right { text-align: left; }
        html[lang="ar"] [class*="space-x"] > * + * { --tw-space-x-reverse: 1; margin-right: calc(var(--tw-space-x-reverse) * var(--tw-space-x)); margin-left: calc((1 - var(--tw-space-x-reverse)) * var(--tw-space-x)); }
        html[lang="ar"] .space-x-8 > * + * { margin-right: 2rem; margin-left: 0; }
        html[lang="ar"] .space-x-6 > * + * { margin-right: 1.5rem; margin-left: 0; }
        html[lang="ar"] .space-x-5 > * + * { margin-right: 1.25rem; margin-left: 0; }
        html[lang="ar"] .space-x-4 > * + * { margin-right: 1rem; margin-left: 0; }
        html[lang="ar"] .space-x-3 > * + * { margin-right: 0.75rem; margin-left: 0; }
        html[lang="ar"] [class*="mr-"] { margin-left: 0.5rem; margin-right: 0; }
        html[lang="ar"] [class*="ml-"] { margin-right: 0.5rem; margin-left: 0; }
        html[lang="ar"] .md\:pl-6 { padding-right: 1.5rem; padding-left: 0; }
        html[lang="ar"] form label { display: block; text-align: right; }
        html[lang="ar"] form input, html[lang="ar"] form textarea { text-align: right; }
        html[lang="ar"] .whatsapp-icon { transform: scaleX(-1); margin-left: 0.5rem; margin-right: 0; }
        html[lang="fr"] .whatsapp-icon { margin-right: 0.5rem; }
        html[lang="ar"] .icon-inline, html[lang="ar"] .footer-icon { margin-left: 0.5rem; margin-right: 0; }
        html[lang="fr"] .icon-inline, html[lang="fr"] .footer-icon { margin-right: 0.5rem; }
        html[lang="ar"] ol { padding-right: 1.5rem; padding-left: 0; }
        html[lang="fr"] ol { padding-left: 1.5rem; padding-right: 0; }
        html[lang="ar"] .advantage-icon { margin-left: 0.75rem; margin-right: 0; }
        html[lang="fr"] .advantage-icon { margin-right: 0.75rem; }
        html[lang="ar"] .help-list li { padding-left: 0; padding-right: 1.75rem; }
        html[lang="fr"] .help-list li { padding-left: 1.75rem; padding-right: 0; }
        html[lang="ar"] .help-list li::before { left: auto; right: 0; }
        html[lang="fr"] .help-list li::before { left: 0; right: auto; }

        /* Enhanced Card Styling */
        .service-card { 
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid theme('colors.custom-medium' / 15%); 
            box-shadow: theme('boxShadow.soft-lg'); 
            background-color: theme('colors.white' / 80%); 
            backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            padding: 2rem;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, theme('colors.custom-accent'), theme('colors.custom-accent-dark'));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover { 
            transform: translateY(-8px) scale(1.01); 
            box-shadow: theme('boxShadow.soft-xl'), theme('boxShadow.hover-glow');
            background-color: #f7d5c1 !important;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 1.5rem;
            color: theme('colors.custom-accent');
            transition: all 0.3s ease;
        }

        .service-card:hover .service-card-icon {
            transform: scale(1.1);
            color: #191f27;
        }

        .service-card:hover h3,
        .service-card:hover p {
            color: #191f27;
        }

        /* Enhanced Button Styling */
        .btn-primary, .hero-cta {
            background: linear-gradient(135deg, #1e293b 0%, #4e73df 100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: 200% auto;
            color: #ffffff !important;
            position: relative;
            overflow: hidden;
            padding: 0.875rem 2rem;
            border-radius: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.025em;
        }

        .btn-primary:hover, .hero-cta:hover {
            background-position: right center;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(78, 115, 223, 0.3);
        }

        .btn-primary:active, .hero-cta:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background-color: theme('colors.white');
            color: theme('colors.custom-dark');
            border: 1px solid theme('colors.custom-medium' / 20%);
            padding: 0.875rem 2rem;
            border-radius: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.025em;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: theme('colors.custom-light');
            border-color: theme('colors.custom-medium' / 40%);
            transform: translateY(-2px);
            box-shadow: theme('boxShadow.soft-lg');
        }

        .btn-secondary:active {
            transform: translateY(0);
        }

        /* Enhanced Header */
        #main-header {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding-top: 1rem;
            padding-bottom: 1rem;
            background-color: theme('colors.custom-light' / 98%);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid theme('colors.custom-medium' / 10%);
        }

        #main-header.scrolled {
            background-color: theme('colors.custom-light' / 99%);
            box-shadow: theme('boxShadow.soft-lg');
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }

        /* Enhanced Hero Section */
        #hero {
            background: linear-gradient(135deg, rgba(241, 232, 169, 0.5), rgba(235, 200, 155, 0.5)), url('banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 12rem 0;
            overflow: hidden;
            min-height: 600px;
        }

        #hero::before {
            display: none; /* Remove the additional overlay */
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, #191f27 0%, #402826 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: relative;
            display: inline-block;
            letter-spacing: -0.02em;
        }

        .hero-content p.text-lg {
            font-size: 1.25rem;
            line-height: 1.5;
            color: #191f27 !important;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .hero-content p.text-lg span,
        .hero-content p.text-lg span[lang="ar"],
        .hero-content p.text-lg span[lang="fr"] {
            color: #191f27 !important;
        }

        .hero-cta {
            background-image: linear-gradient(135deg, theme('colors.custom-dark') 0%, theme('colors.custom-medium') 100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: 200% auto;
            color: #ffffff !important;
            position: relative;
            overflow: hidden;
            padding: 0.875rem 2rem;
            border-radius: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.025em;
        }

        .hero-cta:hover {
            background-position: right center;
            transform: translateY(-2px);
            box-shadow: theme('boxShadow.soft-lg'), theme('boxShadow.hover-glow');
        }

        .hero-cta:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-cta {
                padding: 1rem 2rem;
                font-size: 1.125rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Enhanced WhatsApp Button */
        .whatsapp-button {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 4.5rem;
            height: 4.5rem;
            background: linear-gradient(135deg, theme('colors.whatsapp-green'), theme('colors.whatsapp-hover'));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 0 4px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 50;
            animation: float 3s ease-in-out infinite;
            overflow: hidden;
        }

        .whatsapp-button::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .whatsapp-button::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, theme('colors.whatsapp-green'), theme('colors.whatsapp-hover'));
            border-radius: inherit;
            z-index: -1;
            animation: rotate 4s linear infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 
                0 8px 30px rgba(37, 211, 102, 0.4),
                0 0 0 8px rgba(37, 211, 102, 0.15);
        }

        .whatsapp-button:hover::before {
            opacity: 1;
        }

        .whatsapp-button:active {
            transform: scale(0.95);
        }

        .whatsapp-button svg {
            width: 2rem;
            height: 2rem;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
            transition: transform 0.3s ease;
        }

        .whatsapp-button:hover svg {
            transform: scale(1.1) rotate(5deg);
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .whatsapp-button {
                width: 4rem;
                height: 4rem;
                bottom: 1.5rem;
                right: 1.5rem;
            }
            .whatsapp-button svg {
                width: 1.75rem;
                height: 1.75rem;
            }
        }

        /* Enhanced Form Inputs */
        form input, form textarea {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid theme('colors.custom-medium' / 20%);
            border-radius: 0.75rem;
            padding: 0.875rem 1.25rem;
            background-color: theme('colors.white' / 80%);
            backdrop-filter: blur(8px);
        }

        form input:focus, form textarea:focus {
            border-color: theme('colors.custom-accent');
            box-shadow: 0 0 0 3px theme('colors.custom-accent' / 20%);
            outline: none;
            background-color: theme('colors.white');
        }

        form label {
            font-weight: 500;
            color: theme('colors.custom-dark');
            margin-bottom: 0.5rem;
            display: block;
        }

        /* Enhanced Process Steps */
        .process-step-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .process-step-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, theme('colors.custom-accent') 0%, theme('colors.custom-accent-dark') 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .process-step-btn:hover::after {
            opacity: 0.1;
        }

        .process-step-btn.active-step {
            background-color: theme('colors.custom-medium');
            color: theme('colors.custom-light');
            border-color: theme('colors.custom-dark' / 50%);
            box-shadow: theme('boxShadow.inset-highlight'), theme('boxShadow.soft-xl');
            transform: translateY(-2px);
        }

        /* Enhanced Mood Check-in */
        .mood-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .mood-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, theme('colors.custom-accent') 0%, theme('colors.custom-accent-dark') 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .mood-btn:hover::after {
            opacity: 0.1;
        }

        .mood-btn:hover {
            transform: translateY(-2px);
            box-shadow: theme('boxShadow.soft-lg');
        }

        /* Enhanced Footer */
        footer {
            background: linear-gradient(to bottom, theme('colors.custom-dark'), theme('colors.custom-dark' / 95%));
            position: relative;
            overflow: hidden;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, theme('colors.custom-accent'), transparent);
            opacity: 0.3;
        }

        .footer-content {
            position: relative;
            z-index: 1;
        }

        .footer-title {
            color: theme('colors.custom-light');
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-link {
            color: theme('colors.custom-light' / 70%);
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 0.75rem;
        }

        .footer-link:hover {
            color: theme('colors.custom-accent');
            transform: translateX(4px);
        }

        html[lang="ar"] .footer-link:hover {
            transform: translateX(-4px);
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: theme('colors.custom-light' / 10%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: theme('colors.custom-light');
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: theme('colors.custom-accent');
            transform: translateY(-4px);
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(to right, #4e73df, #2e59d9);
            z-index: 1000;
            transition: width 0.1s ease-out;
        }

        /* Enhanced Section Transitions */
        section {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Loading States */
        .loading {
            position: relative;
            overflow: hidden;
        }

        .loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, theme('colors.custom-light' / 20%), transparent);
            animation: loading 1.5s infinite;
        }

        @keyframes loading {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* Scroll animation */
        .reveal { 
            opacity: 1; 
            transform: translateY(0); 
            transition: opacity 0.7s ease-out, transform 0.7s ease-out; 
        }
        .reveal.visible { 
            opacity: 1; 
            transform: translateY(0); 
        }

        /* Booking Details & TOS Styling */
        #booking-details h3 { color: theme('colors.custom-dark'); font-weight: 600; margin-bottom: 1.25rem; font-size: 1.5rem; }
        #booking-details h4 { color: theme('colors.custom-dark'); font-weight: 600; margin-top: 1.75rem; margin-bottom: 1rem; font-size: 1.25rem; }
        #booking-details ol { list-style: decimal; space-y: 0.75rem; }
        #booking-details ol li::marker { color: theme('colors.custom-medium'); font-weight: 600; }
        #booking-details .price-box { background-color: theme('colors.white' / 70%); backdrop-filter: blur(5px); padding: 2rem; border-radius: 0.75rem; border: 1px solid theme('colors.custom-medium' / 20%); box-shadow: theme('boxShadow.soft-lg'); }

        /* General Button Styling (Form Button) */
        .btn-primary { background-image: linear-gradient(to right, theme('colors.custom-dark') 0%, theme('colors.custom-medium') 100%); transition: all 0.4s ease; background-size: 200% auto; color: theme('colors.custom-light'); }
        .btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: theme('boxShadow.soft-xl'); }

        /* Section Styling */
        section { padding-top: 6rem; padding-bottom: 6rem; overflow: hidden; }

        /* Process Step Button Styling */
        .process-step-btn { padding: 1rem; background-color: theme('colors.white' / 50%); border: 1px solid theme('colors.custom-medium' / 20%); border-radius: 0.75rem; box-shadow: theme('boxShadow.soft-lg'); cursor: pointer; transition: all 0.3s ease; text-align: center; }
        .process-step-btn:hover { transform: translateY(-4px); box-shadow: theme('boxShadow.soft-xl'); background-color: theme('colors.white' / 70%); border-color: theme('colors.custom-medium' / 40%); }
        .process-step-btn.active-step { background-color: theme('colors.custom-medium'); color: theme('colors.custom-light'); border-color: theme('colors.custom-dark'/ 50%); box-shadow: theme('boxShadow.inset-highlight'), theme('boxShadow.soft-xl'); transform: translateY(-2px); }
        .process-step-btn.active-step h3,
        .process-step-btn.active-step .text-custom-medium { color: theme('colors.custom-light'); }

        /* Process Step Content Styling */
        #process-step-content { margin-top: 2.5rem; padding: 2rem; background-color: theme('colors.white' / 70%); border-radius: 0.75rem; border: 1px solid theme('colors.custom-medium' / 20%); box-shadow: theme('boxShadow.soft-lg'); min-height: 100px; transition: opacity 0.4s ease-out; }
        #process-step-content.content-loading { opacity: 0; }

        /* Input focus ring color */
        form input:focus, form textarea:focus { --tw-ring-color: theme('colors.custom-medium'); border-color: theme('colors.custom-medium'); }

        /* Link colors */
        a { color: theme('colors.custom-medium'); text-decoration: none; transition: color 0.3s ease; }
        a:hover { color: theme('colors.custom-dark'); }
        #booking-details a { text-decoration: underline; }
        #contact a.text-custom-medium:hover { color: theme('colors.custom-dark'); }
        #contact a[href*="wa.me"] { background-color: theme('colors.whatsapp-green'); color: theme('colors.white'); }
        #contact a[href*="wa.me"]:hover { background-color: theme('colors.whatsapp-hover'); }

        /* Footer styling */
        footer { background-color: theme('colors.custom-dark'); color: theme('colors.custom-light' / 70%); }
        footer p { color: theme('colors.custom-light' / 50%); }

        /* Section background adjustments */
        #about { background-color: theme('colors.custom-light'); }
        #mood-checkin { background-color: theme('colors.white'); }
        #online-advantage { background-color: #ffffff; }
        #comparison { background-color: theme('colors.custom-light'); }
        #services { background-color: theme('colors.custom-light'); }
        #process { background-color: #ffffff; }
        #process .bg-white { background-color: #ffffff; border-color: theme('colors.custom-medium' / 30%); }
        #booking-details { background-color: theme('colors.custom-light'); }
        #contact { background-image: linear-gradient(to bottom right, rgba(143, 127, 112, 0.15), rgba(74, 63, 53, 0.1)); }
        #contact .bg-white { background-color: #ffffff; border-color: theme('colors.gray.300' / 50%); }
        #terms { background-color: #ffffff; }

        /* Icon colors */
        .advantage-icon, .text-custom-medium, #services .text-custom-medium, #process .text-custom-medium, #contact .icon-inline { color: theme('colors.custom-medium'); }
        .footer-icon { color: currentColor; }

        /* Mood Check-in Styles */
       .mood-btn { padding: 0.75rem 1.5rem; background-color: theme('colors.white'); border: 1px solid theme('colors.custom-medium' / 20%); border-radius: 9999px; box-shadow: theme('boxShadow.soft-lg'); transition: all 0.3s ease; cursor: pointer; font-weight: 500; }
       .mood-btn:hover { transform: scale(1.05); background-color: theme('colors.custom-light'/50); border-color: theme('colors.custom-medium' / 40%); box-shadow: theme('boxShadow.soft-xl'); }
       .mood-btn:focus { outline: none; box-shadow: 0 0 0 3px theme('colors.custom-medium' / 30%); border-color: theme('colors.custom-medium' / 40%); }
       #mood-result { 
            margin-top: 2rem; 
            padding: 2rem; 
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 1rem; 
            border: 1px solid theme('colors.custom-medium' / 20%); 
            box-shadow: theme('boxShadow.soft-lg'); 
            min-height: 100px; 
            transition: all 0.5s ease; 
            opacity: 0;
            transform: translateY(20px);
            position: relative;
            overflow: hidden;
        }

        #mood-result.visible { 
            opacity: 1;
            transform: translateY(0);
        }

        #mood-result::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, theme('colors.custom-accent'), theme('colors.custom-accent-dark'));
        }

        #mood-result p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: theme('colors.custom-dark');
            margin: 0;
            font-style: italic;
        }

        /* Enhanced Service Cards */
        .service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            border-radius: 1.5rem;
            padding: 2.5rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(78, 115, 223, 0.1);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(78, 115, 223, 0.05), rgba(46, 89, 217, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, theme('colors.custom-accent'), theme('colors.custom-accent-dark'));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            box-shadow: 
                0 20px 40px rgba(78, 115, 223, 0.15),
                0 0 20px rgba(78, 115, 223, 0.1);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card-icon {
            width: 5rem;
            height: 5rem;
            margin-bottom: 2rem;
            padding: 1.25rem;
            border-radius: 1.25rem;
            background: linear-gradient(135deg, rgba(78, 115, 223, 0.1), rgba(46, 89, 217, 0.1));
            color: theme('colors.custom-accent');
            transition: all 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .service-card-icon::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, theme('colors.custom-accent'), theme('colors.custom-accent-dark'));
            border-radius: inherit;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .service-card:hover .service-card-icon {
            transform: scale(1.1) rotate(5deg);
            color: #191f27;
        }

        .service-card:hover .service-card-icon::before {
            opacity: 1;
        }

        .service-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: theme('colors.custom-dark');
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .service-card:hover h3 {
            color: theme('colors.custom-accent');
            transform: translateY(-2px);
        }

        .service-card p {
            color: #191f27;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .service-card:hover p {
            transform: translateY(-2px);
        }

        .service-card .learn-more {
            color: theme('colors.custom-accent');
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            background: rgba(78, 115, 223, 0.1);
        }

        .service-card .learn-more svg {
            transition: transform 0.3s ease;
        }

        .service-card:hover .learn-more {
            color: theme('colors.custom-accent-dark');
            background: rgba(78, 115, 223, 0.15);
            transform: translateX(4px);
        }

        .service-card:hover .learn-more svg {
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .service-card {
                padding: 2rem;
            }
            .service-card-icon {
                width: 4rem;
                height: 4rem;
                padding: 1rem;
            }
            .service-card h3 {
                font-size: 1.5rem;
            }
        }

        /* Fixing errors and enhancing visuals */
        /* Enhanced hover effects for buttons and links */
        a:hover, button:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }

        /* Improved mobile menu design */
        #mobile-menu {
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
            border-radius: 0 0 1rem 1rem;
        }

        /* Sticky scroll progress bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(to right, #4e73df, #2e59d9);
            z-index: 1000;
            transition: width 0.1s ease-out;
        }

        /* Updated hero section gradient */
        #hero {
            background: linear-gradient(135deg, rgba(240, 229, 170, 0.5), rgba(229, 225, 143, 0.5)), url('banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 12rem 0;
            overflow: hidden;
            min-height: 600px;
        }

        /* Alternating section background colors */
        #about {
            background-color: #f5f0dc; /* Beige */
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238f7f70' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
        }

        #online-advantage {
            background-color: #ffffff; /* White */
        }


        #booking-details {
            background-color: #ffffff; /* White */
        }

        #contact {
            background-color: #f5f5dc; /* Beige */
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238f7f70' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        #terms {
            background-color: #ffffff; /* White */
        }

        /* Enhanced button visibility */
        .btn-primary {
            background: linear-gradient(135deg, #8b4513, #d2b48c); /* Brown to beige gradient */
            color: #ffffff; /* White text */
            font-weight: bold;
            border: 2px solid #8b4513; /* Brown border */
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #d2b48c, #8b4513); /* Reverse gradient */
            color: #ffffff;
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3); /* Subtle shadow */
        }

        .hero-content p.text-lg {
            font-size: 1.25rem;
            line-height: 1.5;
            color: #191f27;
            margin-bottom: 2.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        .hero-content p.text-lg span {
            color: #191f27 !important;
        }

        .hero-content p.text-lg span[lang="ar"] {
            color: #191f27 !important;
        }

        .hero-content p.text-lg span[lang="fr"] {
            color: #191f27 !important;
        }

        /* Update all text content colors */
        body, p, h1, h2, h3, h4, h5, h6, span, li, td, th {
            color: #191f27;
        }

        /* Preserve specific colors for interactive elements */
        .btn-primary, .hero-cta, .whatsapp-button, 
        button[type="submit"], 
        a[href*="wa.me"],
        .hero-title {
            color: #ffffff;
        }

        /* Preserve link colors */
        a:not(.btn-primary):not(.hero-cta):not(.whatsapp-button) {
            color: theme('colors.custom-medium');
        }

        /* Update specific elements that might have been missed */
        .hero-content p.text-lg,
        .hero-content p.text-lg span,
        .hero-content p.text-lg span[lang="ar"],
        .hero-content p.text-lg span[lang="fr"],
        .hero-subtitle,
        .service-card p,
        .help-list li,
        #booking-details p,
        #terms p,
        .mood-btn,
        #mood-result p,
        .footer-link,
        .footer-title,
        .footer p {
            color: #191f27 !important;
        }

        /* Preserve white text for buttons and CTAs */
        .btn-primary,
        .hero-cta,
        .whatsapp-button,
        button[type="submit"],
        a[href*="wa.me"] {
            color: #ffffff !important;
        }

        /* Button Text Color */
        .btn-primary span[data-lang="fr"],
        .btn-primary span[data-lang="ar"],
        .hero-cta span[data-lang="fr"],
        .hero-cta span[data-lang="ar"],
        .btn-primary,
        .hero-cta {
            color: #ffffff !important;
        }

        /* Preserve white text for buttons and CTAs */
        .btn-primary,
        .hero-cta,
        .whatsapp-button,
        button[type="submit"],
        a[href*="wa.me"] {
            color: #ffffff !important;
        }

        .btn-primary span,
        .hero-cta span {
            color: #ffffff !important;
        }

        /* Add subtle background patterns to sections */
        #about { 
            background-color: #f5f5dc; /* Beige */
            background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238f7f70' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
        }

        #contact {
            background-color: #f5f5dc; /* Beige */
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238f7f70' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        #services {
            background-color: #f5f5dc; /* Beige */
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238f7f70' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        /* Ensure consistent image aspect ratios and add subtle borders/shadows */
        .rounded-xl {
            aspect-ratio: 3/2;
            object-fit: cover;
            border: 1px solid rgba(78, 115, 223, 0.1);
            box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rounded-xl:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        /* Fix footer text color to ensure it's white */
        footer, footer * {
            color: white !important;
        }
        footer .footer-icon {
            color: white !important;
        }
        footer svg {
            color: white !important;
            stroke: white !important;
        }
        footer p, footer span {
            color: white !important;
        }
        footer a:not(.btn-primary):not(.hero-cta):not(.whatsapp-button) {
            color: white !important;
        }

        #online-advantage .advantage-icon {
            color: #eacb52 !important;
        }
        #online-advantage .service-card-icon {
            color: #eacb52 !important;
            background: linear-gradient(135deg, rgba(234, 203, 82, 0.15), rgba(234, 203, 82, 0.10));
        }
        #online-advantage .service-card:hover .service-card-icon {
            color: #191f27 !important;
            background: linear-gradient(135deg, rgba(234, 203, 82, 0.25), rgba(234, 203, 82, 0.15));
        }
        #online-advantage .service-card:hover h3 {
            color: #eacb52 !important;
        }
        #online-advantage .service-card .learn-more {
            color: #eacb52 !important;
            background: rgba(234, 203, 82, 0.10);
        }
        #online-advantage .service-card:hover .learn-more {
            color: #bfa12a !important;
            background: rgba(234, 203, 82, 0.18);
        }
        #online-advantage .service-card,
#online-advantage .bg-white {
    transition: background 0.3s, box-shadow 0.3s;
}
#online-advantage .service-card:hover,
#online-advantage .bg-white:hover {
    background-color: #f1f3b7 !important;
    box-shadow: 0 8px 32px 0 rgba(234, 203, 82, 0.15);
}