   :root {
            --bg-dark: #0a0f1e;
            --bg-card: #111827;
            --bg-soft: #1a2335;
            --accent: #f59e0b;
            --accent-dark: #d97706;
            --accent-light: #fbbf24;
            --text-main: #f9fafb;
            --text-muted: #9ca3af;
            --text-light: #e5e7eb;
            --radius-lg: 1.5rem;
            --radius-md: 1rem;
            --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
            --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.5);
            --gradient-primary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --gradient-card: linear-gradient(145deg, #111827, #0f172a);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            min-height: 100vh;
            background: var(--bg-dark);
            color: var(--text-main);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            font-family: inherit;
            border: none;
            cursor: pointer;
            background: none;
        }

        .page-shell {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem 6rem;
        }

        /* Loader - Faster */
       .loader-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-orbit {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: var(--gradient-primary);
    position: relative;
    animation: spin 0.8s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-weight: 700;
    font-size: 0.8rem;
}

.loader-orbit::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-top-color: rgba(245, 158, 11, 0.9);
    animation: spin 1.2s linear infinite reverse;
}

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(16px);
            background: rgba(10, 15, 30, 0.9);
            border-bottom: 1px solid rgba(55, 65, 81, 0.5);
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .brand-mark {
            width: 42px;
            height: 42px;
            border-radius: 1.1rem;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #111827;
            font-size: 0.95rem;
            font-weight: 700;
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
        }

        .brand-text-title {
            font-weight: 700;
            font-size: 1.1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .brand-text-sub {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            font-size: 0.9rem;
        }

        .nav-links a {
            color: var(--text-light);
            position: relative;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-light);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -0.2rem;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 100px;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-nav-call {
            padding: 0.6rem 1.4rem;
            border-radius: 999px;
            background: var(--gradient-primary);
            color: #111827;
            font-weight: 600;
            border: 0;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-nav-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
        }

        /* Mobile Bottom Navigation - Fixed */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(55, 65, 81, 0.5);
            z-index: 40;
            padding: 0.5rem 0;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .mobile-bottom-nav.hidden {
            transform: translateY(100%);
        }

        .mobile-nav-items {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0.5rem;
            border-radius: 0.75rem;
            transition: background 0.3s ease;
            flex: 1;
            max-width: 80px;
        }

        .mobile-nav-item.active {
            background: rgba(245, 158, 11, 0.1);
        }

        .mobile-nav-icon {
            font-size: 1.2rem;
            margin-bottom: 0.25rem;
            color: var(--text-muted);
        }

        .mobile-nav-item.active .mobile-nav-icon {
            color: var(--accent);
        }

        .mobile-nav-label {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        .mobile-nav-item.active .mobile-nav-label {
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-bottom-nav {
                display: block;
            }
            
            .page-shell {
                padding-bottom: 5rem;
            }
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            right: 1.5rem;
            bottom: 5.5rem;
            z-index: 60;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.5);
        }

        @media (max-width: 768px) {
            .scroll-to-top {
                bottom: 6rem;
                right: 1rem;
            }
        }

        /* Sections / layout */
        section {
            scroll-margin-top: 5rem;
        }

        .section-card {
            background: var(--gradient-card);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(55, 65, 81, 0.5);
            padding: 2.5rem 2rem;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-primary);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-sub {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 36rem;
            line-height: 1.7;
        }

        /* Hero */
        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 3rem;
            align-items: center;
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .hero-title-main {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .hero-title-main span:first-child {
            display: block;
            color: var(--text-light);
        }

        .hero-title-main span:last-child {
            display: block;
            color: var(--accent);
            margin-top: 0.5rem;
        }

        .hero-text {
            margin-top: 1.2rem;
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 32rem;
            line-height: 1.7;
        }

        .hero-cta-row {
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        @media (max-width: 480px) {
            .hero-cta-row {
                flex-direction: row;
                justify-content: flex-start;
            }
            
            .btn-pill-primary, .btn-pill-ghost {
                flex: 1;
                min-width: 140px;
                text-align: center;
                justify-content: center;
            }
        }

        .btn-pill-primary {
            padding: 1rem 2rem;
            border-radius: 999px;
            border: 0;
            font-weight: 600;
            font-size: 1rem;
            background: var(--gradient-primary);
            box-shadow: 0 18px 40px rgba(245, 158, 11, 0.4);
            color: #111827;
            transform: translateY(0);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-pill-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 50px rgba(245, 158, 11, 0.5);
        }

        .btn-pill-ghost {
            padding: 0.9rem 1.8rem;
            border-radius: 999px;
            border: 1px solid rgba(156, 163, 175, 0.4);
            color: var(--text-light);
            font-size: 1rem;
            backdrop-filter: blur(12px);
            background: rgba(55, 65, 81, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-pill-ghost:hover {
            background: rgba(55, 65, 81, 0.5);
            border-color: var(--accent);
            color: var(--accent-light);
        }

        /* Small Rating in Hero */
        .hero-rating {
            margin-top: 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.8rem;
            border-radius: 999px;
            background: rgba(55, 65, 81, 0.3);
            border: 1px solid rgba(156, 163, 175, 0.3);
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .hero-rating span.star {
            font-size: 0.9rem;
            color: var(--accent);
        }

        .hero-slider-shell {
            position: relative;
            border-radius: var(--radius-lg);
            padding: 0.5rem;
            background: var(--gradient-card);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            touch-action: pan-y;
        }

        .hero-slides-container {
            position: relative;
            height: 400px;
            border-radius: 1.25rem;
            overflow: hidden;
            user-select: none;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-slide-badge {
            position: absolute;
            left: 1.5rem;
            top: 1.5rem;
            padding: 0.7rem 1rem;
            border-radius: 1rem;
            background: rgba(17, 24, 39, 0.9);
            border: 1px solid rgba(245, 158, 11, 0.3);
            color: var(--accent-light);
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8);
        }

        .hero-slide-caption {
            position: absolute;
            left: 1.5rem;
            bottom: 1.5rem;
            padding: 1rem 1.2rem;
            border-radius: 1rem;
            background: rgba(17, 24, 39, 0.9);
            border: 1px solid rgba(55, 65, 81, 0.5);
            max-width: 70%;
            backdrop-filter: blur(10px);
        }

        .hero-slide-caption h3 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
            color: var(--text-light);
        }

        .hero-slide-caption p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .hero-dots {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            justify-content: center;
        }

        .hero-dots button {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            border: 0;
            background: rgba(156, 163, 175, 0.4);
            transition: all 0.3s ease;
        }

        .hero-dots button.active {
            width: 24px;
            background: var(--gradient-primary);
        }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: center;
        }

        @media (max-width: 900px) {
            .about-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .about-points {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .about-points div {
            padding: 0.8rem 1rem;
            border-radius: var(--radius-md);
            background: rgba(55, 65, 81, 0.3);
            border: 1px solid rgba(55, 65, 81, 0.5);
            font-size: 0.9rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-points div::before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
        }

        .about-photo-wrap {
            border-radius: var(--radius-lg);
            padding: 0.35rem;
            background: var(--gradient-card);
            box-shadow: var(--shadow-soft);
        }

        .about-photo-inner {
            border-radius: 1.2rem;
            overflow: hidden;
            position: relative;
        }

        .about-photo-inner::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        @media (max-width: 900px) {
            .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .services-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .service-card {
            padding: 1.8rem 1.5rem;
            border-radius: var(--radius-lg);
            background: var(--gradient-card);
            border: 1px solid rgba(55, 65, 81, 0.5);
            box-shadow: var(--shadow-medium);
            transform: translateY(0) translateZ(0);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
            border-color: rgba(245, 158, 11, 0.3);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .service-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .service-text {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .service-more {
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: gap 0.3s ease;
        }

        .service-card:hover .service-more {
            gap: 0.5rem;
        }

        /* How we work - Improved */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        @media (max-width: 900px) {
            .how-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 640px) {
            .how-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .how-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: var(--radius-lg);
            background: var(--gradient-card);
            border: 1px solid rgba(55, 65, 81, 0.5);
            box-shadow: var(--shadow-medium);
            transform: translateY(0) translateZ(0);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .how-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .how-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
            border-color: rgba(245, 158, 11, 0.3);
        }

        .how-card:hover::before {
            transform: scaleX(1);
        }

        .how-step {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 999px;
            margin: 0 auto;
            background: var(--gradient-primary);
            color: #111827;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 14px 24px rgba(245, 158, 11, 0.4);
            position: relative;
            z-index: 1;
            margin-bottom: 1rem;
        }

        .how-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .how-text {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Brands */
      .brands-track-shell {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid rgba(55, 65, 81, 0.5);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.brands-track-shell::before, .brands-track-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.brands-track-shell::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-card) 0%, transparent 100%);
}

.brands-track-shell::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-card) 0%, transparent 100%);
}

.brands-track {
    display: flex;
    gap: 2rem;
    animation: brands-scroll 25s linear infinite;
}

.brands-logo {
    min-width: 140px;
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    background: rgba(55, 65, 81, 0.3);
    border: 1px solid rgba(55, 65, 81, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brands-logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.brands-logo:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

@keyframes brands-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        @media (max-width: 900px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .testimonials-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .testimonial-card {
            padding: 2rem 1.5rem;
            border-radius: var(--radius-lg);
            background: var(--gradient-card);
            border: 1px solid rgba(55, 65, 81, 0.5);
            box-shadow: var(--shadow-medium);
            position: relative;
        }

      .testimonial-card::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }

        .testimonial-rating {
            color: var(--accent);
        }

        /* Service Area */
      .areas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    perspective: 1000px;
}

@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }
}

.area-item {
    padding: 1.2rem 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(55, 65, 81, 0.4), rgba(30, 41, 59, 0.3));
    border: 1px solid rgba(245, 158, 11, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: translateZ(0);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(245, 158, 11, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.area-item::after {
    content: '📍';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.area-item:hover {
    color: var(--accent-light);
    border-color: rgba(245, 158, 11, 0.6);
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.15), rgba(30, 41, 59, 0.4));
    transform: translateY(-8px) translateZ(20px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(245, 158, 11, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.area-item:hover::before {
    left: 100%;
}

.area-item:hover::after {
    opacity: 1;
    transform: scale(1) rotate(15deg);
}

.area-item:active {
    transform: translateY(-4px) translateZ(10px) rotateX(2deg);
    transition: all 0.1s ease;
}

/* Animation for page load */
@keyframes areaItemPop {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.area-item {
    animation: areaItemPop 0.6s ease-out both;
}

/* Stagger the animations */
.area-item:nth-child(1) { animation-delay: 0.1s; }
.area-item:nth-child(2) { animation-delay: 0.2s; }
.area-item:nth-child(3) { animation-delay: 0.3s; }
.area-item:nth-child(4) { animation-delay: 0.4s; }
.area-item:nth-child(5) { animation-delay: 0.5s; }
.area-item:nth-child(6) { animation-delay: 0.6s; }
.area-item:nth-child(7) { animation-delay: 0.7s; }
.area-item:nth-child(8) { animation-delay: 0.8s; }

/* Mobile optimizations */
@media (max-width: 768px) {
    .area-item {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
        transform: none !important;
    }
    
    .area-item:hover {
        transform: translateY(-4px) !important;
    }
    
    .areas-grid {
        perspective: none;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .area-item:hover {
        transform: none;
        border-color: rgba(245, 158, 11, 0.4);
        background: rgba(55, 65, 81, 0.4);
    }
    
    .area-item:active {
        transform: scale(0.98);
        background: rgba(245, 158, 11, 0.2);
    }
}
        /* CTA - No Tilt, Bounce Animation with WhatsApp */
        .cta-shell {
            border-radius: var(--radius-lg);
            padding: 3rem 2.5rem;
            background: var(--gradient-card);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(55, 65, 81, 0.5);
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            animation: bounceIn 1s ease-out;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }
            60% {
                opacity: 1;
                transform: translateX(10px);
            }
            80% {
                transform: translateX(-5px);
            }
            100% {
                transform: translateX(0);
            }
        }

        .cta-shell::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
        }

        .cta-heading {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .cta-sub {
            font-size: 1rem;
            color: var(--text-muted);
        }

        .cta-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cta-btn-main {
            padding: 1rem 1.8rem;
            border-radius: 999px;
            background: var(--gradient-primary);
            color: #111827;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 14px 26px rgba(245, 158, 11, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn-main:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(245, 158, 11, 0.5);
        }

        .cta-btn-whatsapp {
            padding: 1rem 1.8rem;
            border-radius: 999px;
            background: #25d366;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 14px 26px rgba(37, 211, 102, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 30px rgba(37, 211, 102, 0.5);
        }

        /* FAQ */
        .faq-list {
            margin-top: 2rem;
            display: grid;
            gap: 1rem;
        }

        .faq-item {
            border-radius: var(--radius-md);
            padding: 1.5rem;
            background: var(--gradient-card);
            border: 1px solid rgba(55, 65, 81, 0.5);
            transition: all 0.3s ease;
        }

        .faq-item.open {
            border-color: rgba(245, 158, 11, 0.3);
        }

        .faq-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
        }

        .faq-question {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
        }

        .faq-toggle {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 999px;
            border: 1px solid rgba(156, 163, 175, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            flex-shrink: 0;
            transition: all 0.3s ease;
            color: var(--text-muted);
        }

        .faq-item.open .faq-toggle {
            background: var(--accent);
            border-color: var(--accent);
            color: #111827;
            transform: rotate(45deg);
        }

        .faq-answer {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease;
            opacity: 0;
            line-height: 1.6;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
            opacity: 1;
        }

        /* WhatsApp button - Moved to Left with Reduced Background */
 .wa-button {
    position: fixed;
    bottom: 100px;
    left: 40px;
    z-index: 9999;
    text-align: center;
}

@media (max-width: 768px) {
    .wa-button {
        bottom: 100px;
        left: 40px;
    }
}

.wa-inner {
    display: block;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 50px;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.wa-inner:hover {
    background-color: #25d366;
    animation: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    font-family: 'Font Awesome 5 Brands';
    font-size: 50px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

        /* Footer */
        footer {
            border-top: 1px solid rgba(55, 65, 81, 0.8);
            background: var(--bg-card);
            padding: 3rem 1.5rem 2rem;
            margin-top: 3rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
            gap: 2.5rem;
            font-size: 0.85rem;
        }

        @media (max-width: 900px) {
            .footer-inner {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            }
        }

        @media (max-width: 640px) {
            .footer-inner {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        .footer-col-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-size: 1rem;
        }

        .footer-links a {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 2.5rem auto 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(55, 65, 81, 0.5);
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.in-view {
            opacity: 1;
            transform: translateY(0);
        }
   