/* =========================================
   Variables & Reset
   ========================================= */
   :root {
    /* Colors */
    --navy-blue: #061A2F;
    --royal-blue: #0B5ED7;
    --ice-blue: #DDF3FF;
    --gold: #D4AF37;
    --soft-gold: #F5D76E;
    --white: #FFFFFF;
    --light-gray: #F4F7FA;
    --dark-text: #111827;
    
    /* Typography */
    --font-main: 'Tajawal', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(6, 26, 47, 0.15);
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* =========================================
   Typography & Utilities
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
}

.section-header p {
    color: #4b5563;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-blue);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--soft-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-gold:hover {
    background: var(--soft-gold);
    transform: scale(1.05);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-blue);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   Header
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo-text {
    color: var(--navy-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.header.scrolled .nav-links a {
    color: var(--navy-blue);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp, .btn-call {
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1ebc5a;
    transform: translateY(-2px);
}

.btn-call {
    background: var(--gold);
    color: var(--navy-blue);
}

.btn-call:hover {
    background: var(--soft-gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 3px;
}

.header.scrolled .hamburger span {
    background: var(--navy-blue);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #0a2542 100%);
    padding-top: 80px; /* offset for header */
    overflow: hidden;
}

.hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(221, 243, 255, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--ice-blue);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trust-points {
    margin-bottom: 2.5rem;
}

.trust-points li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.trust-points i {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 20px;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--royal-blue), transparent);
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
    transform: rotate(3deg);
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--gold);
    font-size: 1.2rem;
}

.card-1 { top: 10%; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 20%; left: -30px; animation-delay: 1.5s; }
.card-3 { bottom: 5%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* =========================================
   Services Section
   ========================================= */
.services {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: right;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--ice-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--royal-blue);
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--royal-blue);
}

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

.service-card h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-service:hover {
    color: var(--navy-blue);
}

.btn-service i {
    transition: transform 0.3s ease;
}

.btn-service:hover i {
    transform: translateX(-5px);
}

/* =========================================
   Before / After Section
   ========================================= */
.before-after-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.slider-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.slider-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before-wrapper {
    position: absolute;
    top: 0;
    left: 0; /* Changed from right to left for proper RTL interaction */
    width: 50%; /* Initial state */
    height: 100%;
    overflow: hidden;
}

.image-before-wrapper img {
    /* To keep image in place while wrapper resizes */
    width: 800px; /* Fixed width of container */
    max-width: none;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--gold);
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.slider-handle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy-blue);
    font-size: 1rem;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.benefits-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #4b5563;
}

.benefits-list i {
    color: var(--gold);
}

/* =========================================
   Why Choose Us
   ========================================= */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--light-gray), #eef2f6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    color: var(--navy-blue);
    font-size: 1.2rem;
}

/* =========================================
   Common Problems
   ========================================= */
.problems {
    padding: 6rem 0;
    background-color: var(--white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    border-right: 4px solid var(--royal-blue);
    transition: var(--transition);
}

.problem-card:hover {
    background: var(--ice-blue);
    transform: translateX(-5px);
}

.problem-card h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.problem-card p {
    color: #4b5563;
    font-size: 0.95rem;
}

.problems-action {
    text-align: center;
}

/* =========================================
   CTA Section
   ========================================= */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--royal-blue) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>');
    background-size: 100px 100px;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: #031020;
    color: var(--light-gray);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-about p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.footer-contact a {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-contact a i {
    color: var(--gold);
    margin-left: 0.5rem;
}

.footer-links h4, .footer-services h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-services h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

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

.footer-links a, .footer-services a {
    color: #9ca3af;
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

/* =========================================
   Floating Buttons & Mobile CTA
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-wa {
    background-color: #25D366;
}

.float-call {
    background-color: var(--royal-blue);
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: flex;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .trust-points li {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after, .footer-services h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .desktop-only { display: none; }
    .mobile-only { display: flex; }

    /* Header Mobile */
    .nav-links, .btn-call, .btn-whatsapp {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .nav-links.active a {
        color: var(--navy-blue);
        font-size: 1.2rem;
        padding: 10px 0;
        display: block;
    }

    .header.scrolled .logo-text {
        color: var(--navy-blue);
    }
    .logo-text {
        color: var(--navy-blue); /* fallback for mobile nav open state */
    }

    /* Hero Mobile */
    .hero-title {
        font-size: 2.2rem;
    }

    .floating-card {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .card-1 { top: -10px; right: 0; }
    .card-2 { bottom: 10%; left: 0; }
    .card-3 { display: none; }

    /* Slider Mobile */
    .slider-wrapper {
        height: 250px;
    }

    .image-before-wrapper img {
        width: 100vw; /* Approx width for mobile */
    }

    /* Bottom Mobile CTA */
    .mobile-bottom-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    .m-btn {
        flex: 1;
        padding: 1rem;
        text-align: center;
        font-weight: 700;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .m-wa {
        background-color: #25D366;
        color: white;
    }

    .m-call {
        background-color: var(--gold);
        color: var(--navy-blue);
    }

    body {
        padding-bottom: 60px; /* Space for bottom CTA */
    }

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

/* =========================================
   Inner Pages (Services)
   ========================================= */
.inner-hero {
    position: relative;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #0a2542 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--light-gray);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.inner-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.inner-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--ice-blue);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.service-content {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.service-text h2 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-text p {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1.1rem;
}

.service-image {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-list {
    margin-bottom: 4rem;
}

.service-list h3 {
    text-align: center;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.service-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-list li {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--navy-blue);
    border-right: 4px solid var(--gold);
}

.service-list li i {
    color: var(--royal-blue);
    font-size: 1.2rem;
}

/* Steps */
.service-steps {
    background: var(--white);
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.step-card {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 10px rgba(11, 94, 215, 0.3);
}

.step-card h4 {
    color: var(--navy-blue);
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.faq-item h4 i {
    color: var(--gold);
}

.faq-item p {
    color: #4b5563;
    padding-right: 1.8rem;
}

/* Related Services */
.related-services {
    padding: 4rem 0;
    background: var(--white);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-card {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.related-card:hover {
    background: var(--ice-blue);
    transform: translateY(-5px);
}

.related-card i {
    font-size: 1.5rem;
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.related-card h4 {
    color: var(--navy-blue);
    font-size: 1rem;
}

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

/* =========================================
   Dropdown Menu
   ========================================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: var(--navy-blue) !important;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: var(--transition);
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--royal-blue) !important;
    padding-right: 2rem;
}

/* Region Badges */
.regions-container {
    padding: 4rem 0;
    background: var(--white);
}

.regions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.region-badge {
    background: var(--light-gray);
    color: var(--navy-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.region-badge:hover {
    background: var(--ice-blue);
    color: var(--royal-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.region-badge i {
    color: var(--gold);
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.05);
        padding-right: 1.5rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .dropdown-menu a {
        color: var(--white) !important;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .header.scrolled .dropdown-menu a {
        color: var(--navy-blue) !important;
    }
}

@media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

