
        /* ============================================
           CODE NEXIS — PREMIUM WEB DESIGN AGENCY
           Theme: Dark Crimson + Black + White
           ============================================ */

        :root {
            --primary: #8B0000;
            --primary-light: #C1121F;
            --accent: #ff1a1a;
            --accent-glow: rgba(255, 26, 26, 0.15);
            --gold: #ff3131;
            --gold-light: #ff7d7d;
            --dark: #050505;
            --dark-light: #0a0a0a;
            --dark-card: #111111;
            --dark-border: #1a1a1a;
            --white: #ffffff;
            --white-muted: rgba(255, 255, 255, 0.6);
            --white-subtle: rgba(255, 255, 255, 0.08);
            --gray: #e5e5e5;
            --gray-light: #f5f5f5;
            --text: #1a1a1a;
            --text-light: #6b7280;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            --shadow-red: 0 8px 30px rgba(255, 0, 0, 0.2);
            --radius: 12px;
            --radius-lg: 16px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            --container: 1280px;
            --header-height: 80px;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
            font-size: 16px;
        }

        body {
            font-family: 'Philosopher', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            background: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .container-wide {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', Georgia, serif;
            line-height: 1.15;
            font-weight: 450;
        }

        h1,
        .hero h2 {
            font-size: clamp(2.8rem, 6vw, 5rem);
            letter-spacing: -2.5px;
            color: white;
        }

        h2 {
            font-size: 30px;
            letter-spacing: -0.5px;
            color: #fff;
        }
        p {
            color: #fde8ec;
        }
        h3 {
            font-size: 30px;
            line-height: 1.3;
            color:#ffb200;
            margin-bottom: 24px;
        }

        /* Reading Progress Bar */
        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light));
            z-index: 10001;
            width: 0%;
            transition: width 0.1s linear;
            box-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
        }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -50px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 0 0 8px 0;
            z-index: 10002;
            font-weight: 600;
            font-size: 0.875rem;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: white;
            box-shadow: var(--shadow-red);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(255, 0, 0, 0.35);
            color: white;
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline:hover {
            background: white;
            color: var(--dark);
            border-color: white;
            transform: translateY(-2px);
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--text);
            border: 1.5px solid rgba(0, 0, 0, 0.2);
        }

        .btn-outline-dark:hover {
            background: var(--dark);
            color: white;
            border-color: var(--dark);
            transform: translateY(-2px);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--primary-light), var(--accent));
            color: white;
            box-shadow: 0 4px 20px rgba(193, 18, 31, 0.35);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(193, 18, 31, 0.5);
            filter: brightness(1.1);
            color: white;
        }

        .btn-dark {
            background: var(--dark-card);
            color: white;
            border: 1.5px solid var(--dark-border);
        }

        .btn-dark:hover {
            background: var(--dark-border);
            transform: translateY(-2px);
            color: white;
        }

        .btn-whatsapp {
            background: #25d366;
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        }

        .btn-whatsapp:hover {
            background: #20ba5a;
            transform: translateY(-2px);
            color: white;
        }

        .btn:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }

        /* Section Label */
        .section-label {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 26, 26, 0.1);
            color: var(--accent);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
            border: 1px solid rgba(255, 26, 26, 0.15);
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin: 0 auto 64px;
        }

        .section-header h2 {
            margin-bottom: 16px;
        }

        .section-header p {
            color: #fde8ec;
            font-size: 1.125rem;
        }   

        .section-header-light h2 {
            color: white;
        }

        .section-header-light p {
            color: var(--white-muted);
        }

        /* ============================================
           HEADER & NAVIGATION
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--white-subtle);
            transition: var(--transition);
            height: var(--header-height);
        }

        .header.scrolled {
            background: rgba(5, 5, 5, 0.95);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            background: #3d000c
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-desktop a {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            color: #fde8ec;
            position: relative;
        }

        .nav-desktop a:hover,
        .nav-desktop a:focus {
            color: white;
            background: rgba(255, 255, 255, 0.05);
            outline: none;
        }

        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--primary-light);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            border-radius: 2px;
        }

        .nav-desktop a:hover::after,
        .nav-desktop a:focus::after {
            transform: scaleX(1);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .mobile-toggle span {
            display: block;
            width: 28px;
            height: 2.5px;
            background: white;
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(5, 5, 5, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-slow);
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav a {
            color: white;
            font-size: 1.5rem;
            font-weight: 500;
            font-family: 'Playfair Display', serif;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .mobile-nav.active a {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav.active a:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-nav.active a:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-nav.active a:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-nav.active a:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-nav.active a:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-nav.active a:nth-child(6) {
            transition-delay: 0.35s;
        }

        .mobile-nav a:hover {
            color: var(--gold-light);
        }

        /* ============================================
           VIDEO HERO SECTION
           ============================================ */
        .video-hero {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 500px;
            max-height: 800px;
            overflow: hidden;
            background: var(--dark);
            margin-top: var(--header-height);
        }

        .video-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.85));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 24px;
        }

        .video-overlay h2 {
            color: white;
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 16px;
            max-width: 900px;
        }

        .video-overlay p {
            color: var(--white-muted);
            font-size: 1.125rem;
            max-width: 600px;
            margin-bottom: 32px;
        }

        .video-play-btn {
            width: 72px;
            height: 72px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .video-play-btn:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: scale(1.1);
        }

        .video-hero[loaded] .video-bg {
            opacity: 0.6;
            transition: opacity 1s ease;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #050505 0%, #0a0000 50%, #1a0505 100%);
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 26, 26, 0.12) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInUp 1s ease forwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .float-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.35;
            pointer-events: none;
        }

        .orb-1 {
            width: 350px;
            height: 350px;
            background: var(--accent);
            top: 10%;
            left: -8%;
            animation: orbFloat 8s ease-in-out infinite;
        }

        .orb-2 {
            width: 250px;
            height: 250px;
            background: var(--gold);
            bottom: 15%;
            right: 8%;
            animation: orbFloat 10s ease-in-out infinite reverse;
        }

        .orb-3 {
            width: 180px;
            height: 180px;
            background: var(--primary-light);
            top: 50%;
            left: 40%;
            animation: orbFloat 12s ease-in-out infinite 2s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -30px) scale(1.05);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.95);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            color: var(--gold-light);
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            width: fit-content;
        }

        .hero h1,
        .hero h2 {
            color: white;
            margin-bottom: 24px;
        }

        .hero h1 .gradient-text,
        .hero h2 .gradient-text {
            background: linear-gradient(135deg, var(--gold-light), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            color: var(--white-muted);
            margin-bottom: 12px;
            max-width: 540px;
            line-height: 1.7;
        }

        .hero-subnote {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-bottom: 32px;
        }

        .hero-subnote b {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-visual {
            animation: fadeInUp 1s ease 0.3s both;
        }

        .hero-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 36px;
            position: relative;
            overflow: hidden;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 26, 26, 0.15) 0%, transparent 70%);
            animation: cardPulse 4s ease-in-out infinite;
        }

        @keyframes cardPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.3);
                opacity: 0.8;
            }
        }

        .hero-card h3 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 12px;
            position: relative;
        }

        .hero-card>p {
            color: var(--white-muted);
            font-size: 0.9rem;
            margin-bottom: 24px;
            position: relative;
        }

        .hero-stat-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            position: relative;
        }

        .hero-stat-item {
            text-align: center;
            padding: 18px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .hero-stat-number {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--gold-light);
            font-family: 'Playfair Display', serif;
        }

        .hero-stat-label {
            font-size: 0.8rem;
            color: var(--white-muted);
            margin-top: 4px;
        }

        /* ============================================
           CLIENTS STRIP
           ============================================ */
        .clients {
            background: var(--dark-light);
            padding: 40px 0;
            border-top: 1px solid var(--white-subtle);
            border-bottom: 1px solid var(--white-subtle);
            overflow: hidden;
        }

        .clients-track {
            display: flex;
            gap: 80px;
            animation: scrollTrack 30s linear infinite;
            width: max-content;
        }

        .client-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--white-muted);
            opacity: 0.35;
            white-space: nowrap;
            transition: opacity 0.3s;
            font-weight: 500;
        }

        .client-logo:hover {
            opacity: 0.8;
        }

        @keyframes scrollTrack {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ============================================
           SECTION BACKGROUNDS
           ============================================ */
        .section-light {
            background: #25000b;
            padding: 20px 0;
        }

        .section-white {
            background: #1a0007;
            padding: 20px 0;
        }

        .section-dark {
            background: var(--dark);
            padding: 120px 0;
        }

        /* ============================================
           SPLIT GRID
           ============================================ */
        .split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .split-content h2 {
            margin-bottom: 20px;
            color: #d4af37;
        }

        .split-content p {
            color: #fde8ec;
            margin-bottom: 18px;
            line-height: 1.75;
        }

        .split-content a {
            color: #ffffff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .split-content a:hover {
            color: var(--primary);
        }

        .feature-check-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin: 28px 0;
            color:#fde8ec;
        }

        .feature-check {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .feature-check .check-icon {
            width: 22px;
            height: 22px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .split-image-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .split-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(255, 255, 255, 0.02));
            z-index: 1;
            mix-blend-mode: multiply;
            pointer-events: none;
        }

        .split-image-wrapper img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .split-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            padding: 20px 28px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
            z-index: 2;
            text-align: center;
        }

        .experience-badge .years {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-top: 4px;
        }

        /* ============================================
           WIDE TEXT CONTENT SECTIONS
           ============================================ */


        .text-content {
            max-width: 720px;
            margin: 0 auto;
        }

        .text-content-wide {
            max-width: 1100px;
            margin: 0 auto;
        }

        .text-content-wide h2 {
            font-size: 30px;
            margin-bottom: 24px;
            color: #ffb200;
        }

        .text-content h2 {
            margin-bottom: 20px;
            color: var(--text);
        }

        .text-content p,
        .text-content-wide p {
            color: #fde8ec;
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 1.125rem;
        }

        .text-content b,
        .text-content-wide b {
            color: var(--primary);
            font-weight: 600;
        }

        .text-content a,
        .text-content-wide a {
            color: var(--primary-light);
            text-decoration: underline;
            text-underline-offset: 3px;
            font-weight: 500;
        }

        .text-content a:hover,
        .text-content-wide a:hover {
            color: var(--primary);
        }

        .text-lead {
            font-size: 1.25rem !important;
            color: var(--text) !important;
            font-weight: 500;
        }

        /* ============================================
           SERVICES GRID
           ============================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .service-card {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            transition: var(--transition-slow);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 26, 26, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 22px;
            transition: var(--transition);
            color: var(--accent);
        }

        .service-card:hover .service-icon {
            transform: scale(1.08) rotate(-3deg);
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            color: white;
        }

        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--text);
        }

        .service-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .service-link:hover {
            gap: 12px;
        }

        /* ============================================
           AREAS WE SERVE GRID
           ============================================ */
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }

        .area-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: var(--transition);
            position: relative;
            text-align: center;
            padding: 24px 16px;
            cursor: pointer;
        }

        .area-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 0, 0, 0.15);
        }

        .area-card .area-icon {
            width: 48px;
            height: 48px;
            background: var(--gray-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            color: var(--accent);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .area-card:hover .area-icon {
            background: var(--accent);
            color: white;
            transform: scale(1.1);
        }

        .area-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
        }

        .area-card span {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* ============================================
           PRICING SECTION
           ============================================ */
        .pricing-section {
            background: var(--dark-light);
            padding: 20px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            align-items: start;
        }

        .pricing-card {
            background: var(--dark-card);
            border: 1px solid var(--dark-border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            transition: var(--transition);
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 0, 0, 0.2);
        }

        .pricing-card.featured {
            border-color: rgba(255, 0, 0, 0.3);
            box-shadow: 0 0 40px rgba(255, 0, 0, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .pricing-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--primary-light));
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            color: white;
            padding: 5px 16px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
        }

       /* ===== PREMIUM PRICING SECTION ===== */
.lux-pricing {
    padding: 40px 0;
    background: #3d000c;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 70px;
    align-items: stretch;
}

/* PRICING CARDS */
.pricing-card {
    position: relative;
    padding: 50px 35px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff2e63, #ff9c58);
    opacity: 0.7;
}

/* HOVER EFFECT */
.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 80px rgba(255, 80, 120, 0.16);
    border-color: rgba(255, 46, 99, 0.2);
}

/* FEATURED CARD (MIDDLE ONE) */
.pricing-card.featured {
    background: #fff;
    border: 2px solid #ff2e63;
    box-shadow: 0 20px 65px rgba(255, 46, 99, 0.1);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    height: 8px;
    background: linear-gradient(90deg, #ff2e63, #ff6b4a);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 35px 85px rgba(255, 46, 99, 0.22);
}

/* BADGE */
.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff2e63, #ff9c58);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 46, 99, 0.3);
}

/* CARD DETAILS */
.pricing-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.price {
    font-size: 46px;
    font-weight: 900;
    color: #ff2e63;
    margin-bottom: 15px;
}

.price span {
    font-size: 16px;
    font-weight: 600;
    color: #777;
}

.price-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    min-height: 45px;
}

/* FEATURES LIST */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.pricing-features li {
    font-size: 15px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li.included {
    color: #333;
}

.pricing-features li.included i {
    color: #2ed573;
    font-size: 16px;
}

.pricing-features li.not-included {
    color: #aaa;
    text-decoration: line-through;
}

.pricing-features li.not-included i {
    color: #ff4757;
    font-size: 14px;
}

/* PREMIUM ACTION BUTTONS */
.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s;
    text-align: center;
}

.plan-standard {
    background: #f1f2f6;
    color: #111;
}

.plan-standard:hover {
    background: #111;
    color: #fff;
}

.plan-executive {
    background: linear-gradient(135deg, #ff2e63, #ff9855);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.25);
}

.plan-executive:hover {
    box-shadow: 0 15px 40px rgba(255, 46, 99, 0.45);
    transform: translateY(-2px);
}

.plan-vip {
    background: #111;
    color: #fff;
}

.plan-vip:hover {
    background: #ff2e63;
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.25);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        margin: 60px auto 0;
    }
    .pricing-card.featured {
        transform: scale(1);
    }
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .lux-pricing {
        padding: 70px 0;
    }
    .price {
        font-size: 38px;
    }
}
        /* ============================================
           STATS COUNTER SECTION
           ============================================ */
        .stats-section {
            background: var(--dark);
            padding: 100px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }

        .stat-item .stat-num {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold-light), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .stat-item .stat-desc {
            margin-top: 8px;
            color: var(--white-muted);
            font-size: 0.95rem;
        }

        /* ============================================
           WHY CHOOSE US
           ============================================ */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .why-card {
            text-align: center;
            padding: 40px 24px;
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .why-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 18px;
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: var(--transition);
        }

        .why-card:hover .why-icon {
            transform: scale(1.1);
        }

        .why-icon svg {
            width: 24px;
            height: 24px;
        }

        .why-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            color: var(--text);
        }

        .why-card p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.65;
        }

        /* ============================================
           PROCESS TIMELINE
           ============================================ */
        .process-track {
            display: flex;
            gap: 32px;
            position: relative;
            align-items: flex-start;
        }

        .process-track::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), var(--primary-light));
            z-index: 0;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-step .step-num {
            width: 80px;
            height: 80px;
            background: var(--gray-light);
            border: 3px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin: 0 auto 20px;
            font-family: 'Playfair Display', serif;
            transition: var(--transition);
        }

        .process-step:hover .step-num {
            background: var(--accent);
            color: white;
            transform: scale(1.08);
        }

        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--text);
        }

        .process-step p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* ============================================
           FEATURES SPLIT SECTION
           ============================================ */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .feature-row {
            display: flex;
            gap: 18px;
            padding: 22px;
            background: var(--gray-light);
            border-radius: var(--radius);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }

        .feature-row:hover {
            background: white;
            box-shadow: var(--shadow-lg);
            transform: translateX(6px);
        }

        .feature-row .f-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .feature-row h4 {
            font-size: 1.05rem;
            margin-bottom: 4px;
            color: var(--text);
        }

        .feature-row p {
            font-size: 0.88rem;
            color: var(--text-light);
        }

        .feature-panel {
            background: linear-gradient(135deg, var(--dark), var(--dark-light));
            border-radius: var(--radius-lg);
            padding: 48px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .feature-panel h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 12px;
        }

        .feature-panel>p {
            color: var(--white-muted);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .panel-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
        }

        .panel-item:last-child {
            margin-bottom: 0;
        }

        .panel-item .p-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            color: white;
        }

        .panel-item .p-title {
            font-weight: 600;
            color: white;
        }

        .panel-item .p-sub {
            font-size: 0.85rem;
            color: var(--white-muted);
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
    .lux-testimonials{ padding:60px 0; background: #1a0007; } 
    .testimonials-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:30px; margin-top:70px; } 
    .testimonial-card{ position:relative; padding: 45px 32px; border-radius:30px; background: rgba(255,255,255,.78); backdrop-filter: blur(15px); box-shadow: 0 15px 60px rgba(0,0,0,.07); transition:.45s; overflow:hidden; } 
    .testimonial-card::before{ content:""; position:absolute; top:0; left:0; width:100%; height:5px; background: linear-gradient( 90deg, #ff2e63, #ff9c58 ); } 
    .testimonial-card:hover{ transform: translateY(-12px); box-shadow: 0 30px 80px rgba(255,80,120,.18); } 
    .quote-icon{ font-size:52px; opacity:.12; position:absolute; right:25px; top:20px; color:#ff2e63; } 
    .testimonial-stars{ font-size:22px; color:#ffb400; margin-bottom:24px; } 
    .testimonial-text{ font-size:15px; line-height:2; color:#555; margin-bottom:35px; } 
    .testimonial-author{ display:flex; align-items:center; gap:14px; } 
    .t-avatar{ width:65px; height:65px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:800; color:#fff; background: linear-gradient( 135deg, #ff2e63, #ff9c58 ); box-shadow: 0 10px 30px rgba(255,80,120,.25); } 
    .t-name{ font-size:18px; font-weight:700; } 
    .t-location{ font-size:14px; color:#777; } @media(max-width:992px){ 
    .testimonials-grid{ grid-template-columns: 1fr 1fr; } } @media(max-width:768px){ 
    .lux-testimonials{ padding:70px 0; } 
    .testimonials-grid{ grid-template-columns: 1fr; gap:22px; } }
        /* ============================================
           PHOTO GALLERY
           ============================================ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 260px);
            gap: 16px;
        }

        .gallery-item {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            cursor: pointer;
            background: var(--gray-light);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5, 5, 5, 0.8), transparent);
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay h4 {
            color: white;
            font-size: 1.05rem;
        }

        .gallery-item.tall {
            grid-row: span 2;
        }

        .gallery-item.wide {
            grid-column: span 2;
        }

      ```css
/* ===== FAQ SECTION ===== */

.lux-faq{
padding:110px 0;
background:linear-gradient(
180deg,
#fff,
#fff7f9
);
overflow:hidden;
}

.faq-wrap{
max-width:900px;
margin:70px auto 0;

display:flex;
flex-direction:column;

gap:22px;
}


/* CARD */

.faq-item{

background:
rgba(255,255,255,.82);

backdrop-filter:
blur(16px);

border-radius:24px;

overflow:hidden;

box-shadow:
0 18px 60px rgba(0,0,0,.08);

border:
1px solid rgba(255,255,255,.8);

transition:.35s;

position:relative;

}


.faq-item::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;

height:5px;

background:
linear-gradient(
90deg,
#ff2e63,
#ff9855
);

}


.faq-item:hover{

transform:
translateY(-8px);

box-shadow:
0 35px 80px rgba(255,90,120,.16);

}



/* QUESTION */

.faq-q{

width:100%;

display:flex;

justify-content:space-between;

align-items:center;

padding:
28px 32px;

border:0;

background:none;

cursor:pointer;

font-size:22px;

font-weight:700;

color:#111;

text-align:left;

}



/* PLUS ICON */

.faq-plus{

width:52px;

height:52px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

color:#fff;

background:
linear-gradient(
135deg,
#ff2e63,
#ff9855
);

flex-shrink:0;

transition:.45s;

box-shadow:
0 10px 30px rgba(255,80,120,.25);

}



/* ANSWER */

.faq-a{

max-height:0;

overflow:hidden;

transition:
all .45s ease;

}



.faq-a p{

padding:
0 32px 32px;

line-height:2;

font-size:15px;

color:#666;

}



/* ACTIVE */

.faq-item.active .faq-a{

max-height:350px;

}


.faq-item.active .faq-plus{

transform:
rotate(45deg);

}



/* MOBILE */

@media(max-width:768px){

.lux-faq{

padding:70px 0;

}

.faq-wrap{

margin-top:40px;

gap:18px;

}

.faq-q{

font-size:18px;

padding:22px;

}

.faq-plus{

width:44px;

height:44px;

font-size:22px;

}

.faq-a p{

padding:
0 22px 22px;

}

}
        /* ============================================
           COMPARISON TABLE
           ============================================ */
        .compare-section {
            background: var(--dark);
            padding: 120px 0;
        }

        .compare-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .compare-table {
            width: 100%;
            min-width: 600px;
            border-collapse: separate;
            border-spacing: 0;
        }

        .compare-table th {
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            color: white;
            padding: 18px 24px;
            font-weight: 600;
            text-align: left;
            font-size: 0.95rem;
        }

        .compare-table th:first-child {
            border-radius: var(--radius) 0 0 0;
        }

        .compare-table th:last-child {
            border-radius: 0 var(--radius) 0 0;
            text-align: center;
        }

        .compare-table th:nth-child(3) {
            text-align: center;
        }

        .compare-table td {
            padding: 16px 24px;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--dark-border);
        }

        .compare-table tr:nth-child(even) td {
            background: var(--dark-card);
        }

        .compare-table tr:nth-child(odd) td {
            background: var(--dark-light);
        }

        .compare-table td:first-child {
            color: var(--white-muted);
        }

        .compare-table td:nth-child(2) {
            color: var(--white-muted);
            text-align: center;
        }

        .compare-table td:nth-child(3) {
            color: white;
            text-align: center;
            background: rgba(255, 0, 0, 0.05) !important;
        }

        .compare-table .check-yes {
            color: #22c55e;
        }

        .compare-table .check-no {
            color: rgba(255, 255, 255, 0.2);
        }

        /* ============================================
           CTA BANNER
           ============================================ */
        .cta-section {
            background: linear-gradient(135deg, var(--dark), var(--dark-light));
            color: white;
            text-align: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 16px;
            position: relative;
        }

        .cta-section p {
            color: var(--white-muted);
            font-size: 1.125rem;
            max-width: 560px;
            margin: 0 auto 36px;
            position: relative;
        }

        /* ============================================
           CONTACT SECTION
           ============================================ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
        }

        .contact-info h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--text);
        }

        .contact-info>p {
            color: var(--text-light);
            margin-bottom: 28px;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .contact-detail .c-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 26, 26, 0.08);
            color: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-detail h4 {
            font-size: 0.95rem;
            margin-bottom: 3px;
            color: var(--text);
        }

        .contact-detail p,
        .contact-detail a {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .contact-detail a:hover {
            color: var(--accent);
        }

        .contact-form {
            background: var(--gray-light);
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            font-size: 0.88rem;
            color: var(--text);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 13px 16px;
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            background: white;
            transition: var(--transition);
            color: var(--text);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(255, 26, 26, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

       /* ===== LUXURY FOOTER DESIGN ===== */
.lux-footer {
    background: #0b0c10;
    color: #bcbed8;
    padding: 30px 0 30px;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #ff2e63;
    position: relative;
    overflow: hidden;
}

.lux-footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    background: radial-gradient(rgba(255, 46, 99, 0.08), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

/* BRAND COLUMN STYLE */
.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-brand .logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #ff2e63, #ff9c58);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 46, 99, 0.3);
}

.footer-brand .logo span {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: #8a8d9f;
}

.footer-brand p a {
    color: #ff2e63;
    text-decoration: none;
    font-weight: 600;
}

/* FOOTER COLUMNS */
.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #ff2e63;
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #8a8d9f;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

/* HOVER EFFECT ON LINKS */
.footer-col ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-col ul li a::before {
    content: "•";
    color: #ff2e63;
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: 0.3s;
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

/* FOOTER BOTTOM SECTION */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #6c6f84;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: #6c6f84;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-legal-links a:hover {
    color: #ff2e63;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .lux-footer {
        padding: 60px 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}
        /* ============================================
           FLOATING CTA BUTTON
           ============================================ */
        .fab {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--accent), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
            cursor: pointer;
            z-index: 997;
            border: none;
            transition: var(--transition);
            animation: fabPulse 2s ease-in-out infinite;
        }

        .fab:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 32px rgba(255, 0, 0, 0.5);
        }

        @keyframes fabPulse {

            0%,
            100% {
                box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
            }

            50% {
                box-shadow: 0 8px 32px rgba(255, 0, 0, 0.6);
            }
        }

        /* ============================================
           STICKY CONTACT BAR (MOBILE)
           ============================================ */
        .sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(5, 5, 5, 0.95);
            backdrop-filter: blur(20px);
            z-index: 996;
            border-top: 1px solid var(--white-subtle);
        }

        .sticky-bar-inner {
            display: flex;
            height: 60px;
        }

        .sticky-bar-inner a {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            color: white;
            font-size: 0.7rem;
            font-weight: 500;
            transition: var(--transition);
            text-decoration: none;
        }

        .sticky-bar-inner a:first-child {
            background: var(--accent);
        }

        .sticky-bar-inner a:nth-child(2) {
            background: #25d366;
        }

        .sticky-bar-inner a:nth-child(3) {
            background: var(--dark-card);
        }

        .sticky-bar-inner a svg {
            width: 18px;
            height: 18px;
        }

        /* ============================================
           LIGHTBOX
           ============================================ */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(5, 5, 5, 0.95);
            backdrop-filter: blur(20px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            border-radius: var(--radius);
            box-shadow: var(--shadow-xl);
        }

        .lightbox-close {
            position: absolute;
            top: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.25rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* ============================================
           SCROLL REVEAL
           ============================================ */
        .reveal {
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {

            .hero-grid,
            .split-grid,
            .contact-grid,
            .features-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-track {
                flex-direction: column;
                gap: 48px;
            }

            .process-track::before {
                display: none;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 200px);
            }

            .gallery-item.tall {
                grid-row: span 1;
            }

            .gallery-item.wide {
                grid-column: span 1;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .areas-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .video-hero {
                height: 50vh;
                min-height: 400px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 70px;
            }

            .nav-desktop {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-nav {
                display: flex;
            }

            .hero {
                min-height: auto;
                padding: 80px 0 60px;
            }

            .hero-grid {
                gap: 40px;
            }

            .hero-stat-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero h1,
            .hero h2 {
                font-size: clamp(2.2rem, 8vw, 3rem);
            }

            .section-light,
            .section-white,
            .section-dark,
            .pricing-section,
            .compare-section,
            .testimonials-section,
            .cta-section {
                padding: 30px 0;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .areas-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(5, 180px);
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
                margin-bottom: 40px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .feature-check-grid {
                grid-template-columns: 1fr;
            }

            .experience-badge {
                right: 0;
                bottom: -12px;
                padding: 16px 22px;
            }

            .experience-badge .years {
                font-size: 2rem;
            }

            .testimonial-card {
                flex: 0 0 300px;
                padding: 28px;
            }

            .fab {
                bottom: 72px;
                right: 16px;
                width: 48px;
                height: 48px;
            }

            .sticky-bar {
                display: block;
            }

            .split-image-wrapper img {
                height: 320px;
            }

            .cta-section p {
                font-size: 1rem;
            }

            body {
                padding-bottom: 60px;
            }

            .text-content-wide {
                padding: 0 16px;
            }

            .video-hero {
                height: 40vh;
                min-height: 300px;
            }

            .video-overlay h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {

            .container,
            .container-wide {
                padding: 0 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .areas-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 32px 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .text-content-wide h2 {
                font-size: 1.8rem;
            }
        }

        /* ============================================
           REDUCED MOTION
           ============================================ */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        /* TABLE ONLY CSS */

        .aerocity-price-table {
            width: 100%;
            overflow-x: auto;
            margin: 25px 0;
        }

        .aerocity-price-table table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
        }

        .aerocity-price-table th {
            background: #e41818;
            color: #fff;
            padding: 15px;
            text-align: center;
            font-size: 16px;
        }

        .aerocity-price-table td {
            padding: 14px;
            border: 1px solid #e5e5e5;
            text-align: center;
        }

        .aerocity-price-table td:first-child,
        .aerocity-price-table th:first-child {
            text-align: left;
        }

        .aerocity-price-table tbody tr:nth-child(even) {
            background: #f7f7f7;
        }

        .aerocity-price-table tbody tr:hover {
            background: #e7d512;
        }

 @media (max-width:768px){

    .video-hero{
        height:auto;
        min-height:520px;
    }

    .video-overlay{
        padding:40px 20px;
        justify-content:center;
    }

    .hero-badge{
        margin-bottom:15px !important;
        font-size:13px;
        padding:8px 14px;
    }

    .video-overlay h2{
        font-size:32px;
        line-height:1.2;
        margin-bottom:15px;
        max-width:100%;
    }

    .video-overlay p{
        font-size:16px;
        line-height:1.7;
        max-width:100%;
        margin-bottom:25px;
    }

    .video-play-btn{
        width:60px;
        height:60px;
        font-size:20px;
    }
}
/* ============================================
           Profile Card By Ruhani
           ============================================ */
.profile-box{
    display:flex;
    align-items:center;
    background:#1a0007;
    border:1px solid #d4a843;
    border-radius:20px;
    overflow:hidden;
    margin:20px 0;
}

.profile-img{
    position:relative;
    width:320px;
    flex-shrink:0;
}

.profile-img img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.category{
    position:absolute;
    top:12px;
    left:12px;
    background:#222;
    color:#fff;
    padding:6px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:500;
}

.watermark{
    position:absolute;
    left:50%;
    bottom:15px;
    transform:translateX(-50%);
    background:#111;
    color:#ff1675;
    border:1px solid #ff1675;
    padding:8px 15px;
    border-radius:6px;
    font-size:12px;
    font-weight:700;
    white-space:nowrap;
}

.profile-content{
    flex:1;
    padding:25px 30px;
    color:#fff;
}

.profile-content h2{
    margin:0;
    font-size:36px;
    line-height:1.2;
}

.meta{
    color:#ff1675;
    font-size:18px;
    margin:8px 0 15px;
}

.profile-content p{
    margin:0 0 15px;
    font-size:16px;
    line-height:1.7;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px 25px;
    list-style:none;
    padding:0;
    margin:0;
}

.features li{
    color:#ddd;
    font-size:15px;
}

.btn-wrap{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.btn{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#fff;
    font-weight:700;
    padding:14px;
    border-radius:50px;
    font-size:18px;
}

.call-btn{
    background:#ff1675;
}

.whatsapp-btn{
    background:#22b14c;
}

/* Mobile */

@media(max-width:768px){

    .profile-box{
        display:block;
    }

    .profile-img{
        width:100%;
    }

    .profile-img img{
        height:320px;
    }

    .profile-content{
        padding:18px;
    }

    .profile-content h2{
        font-size:26px;
    }

    .meta{
        font-size:16px;
    }

    .profile-content p{
        font-size:14px;
        line-height:1.6;
    }

    .features{
        grid-template-columns:1fr;
        gap:6px;
    }

    .features li{
        font-size:14px;
    }

    .btn-wrap{
        gap:10px;
    }

    .btn{
        font-size:14px;
        padding:12px;
    }

    .watermark{
        font-size:10px;
        padding:6px 10px;
    }
}
.section-profile{
    max-width:1200px;
    margin:auto;
}
.rates-section{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin:25px 0;
    padding: 40px;
}

.rate-card{
    position:relative;
    padding:18px 15px;
    border-radius:15px;
    text-align:center;
    background:#860b3a;
    border:1px solid #fff;
    transition:.3s;
}

.rate-card:hover{
    transform:translateY(-3px);
    box-shadow:0 0 15px rgba(255,22,117,.25);
}

.tag{
    position:absolute;
    top:10px;
    right:10px;
    font-size:9px;
    font-weight:700;
    padding:4px 8px;
    border-radius:20px;
    background:#050505;
    color:#fff;
}

.rate-card h3{
    color:#fff;
    font-size:20px;
    line-height:1.2;
    margin:18px 0 8px;
}

.price{
    color:#ffcc00;
    font-size:34px;
    font-weight:800;
    margin-bottom:8px;
    line-height:1;
}

.rate-card p{
    color:#ddd;
    font-size:13px;
    line-height:1.5;
    margin:0;
}

@media(max-width:768px){
    .rates-section{
        grid-template-columns:1fr;
        gap:12px;
    }

    .rate-card{
        padding:15px;
    }

    .rate-card h3{
        font-size:18px;
    }

    .price{
        font-size:28px;
    }

    .rate-card p{
        font-size:12px;
    }
}
.rate-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 30px;
}

.rate-heading span{
    display:inline-block;
    color:#ff1675;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.rate-heading h2{
    color:#fff;
    font-size:38px;
    line-height:1.2;
    margin:0 0 12px;
}

.rate-heading p{
    color:#cfcfcf;
    font-size:16px;
    line-height:1.7;
    margin:0;
}

@media(max-width:768px){
    .rate-heading h2{
        font-size:28px;
    }

    .rate-heading p{
        font-size:14px;
    }
}
ol {
color:#f312af; /* Rich golden yellow */
font-weight: 500;
}
ul {
color:#f312af; /* Rich golden yellow */
font-weight: 500;
}
.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:stretch;
}

.map-box{
overflow:hidden;
border-radius:20px;
box-shadow:0 10px 35px rgba(0,0,0,.12);
min-height:650px;
}

.map-box iframe{
width:100%;
height:100%;
border:0;
display:block;
}

.contact-form{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 35px rgba(0,0,0,.08);
}

@media(max-width:768px){

.contact-grid{
grid-template-columns:1fr;
}

.map-box{
height:320px;
min-height:auto;
}

}
/*booking process*/
.booking-process{

padding:20px 0;

background:#1a0007;

overflow:hidden;

position:relative;

}



.process-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:30px;

margin-top:70px;

}



.process-card{

position:relative;

padding:
70px 30px 35px;

border-radius:30px;

background:
rgba(255,255,255,.78);

backdrop-filter:
blur(14px);

border:
1px solid rgba(255,255,255,.8);

box-shadow:
0 15px 60px rgba(0,0,0,.08);

text-align:center;

overflow:hidden;

transition:.45s;

}



.process-card::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;

height:5px;

background:
linear-gradient(
90deg,
#ff2e63,
#ff8b55
);

}



.process-card::after{

content:"";

position:absolute;

width:220px;

height:220px;

top:-90px;

right:-90px;

border-radius:50%;

background:
radial-gradient(
rgba(255,90,130,.16),
transparent
);

}



.process-card:hover{

transform:
translateY(-14px);

box-shadow:
0 35px 90px rgba(255,60,120,.18);

}



.process-number{

position:absolute;

top:-30px;

left:50%;

transform:
translateX(-50%);

width:72px;

height:72px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

font-weight:900;

color:#fff;

background:
linear-gradient(
135deg,
#ff2e63,
#ff9856
);

box-shadow:
0 15px 40px rgba(255,80,120,.45);

}



.process-icon{

width:90px;

height:90px;

margin:auto;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

font-size:34px;

background:
linear-gradient(
135deg,
#fff1f5,
#ffe4d8
);

color:#ff2e63;

margin-bottom:25px;

transition:.4s;

}



.process-card:hover .process-icon{

transform:
rotate(12deg)
scale(1.08);

}



.process-card h3{

font-size:26px;

margin-bottom:14px;

color:#111;

}



.process-card p{

font-size:15px;

line-height:1.9;

color:#666;

}



@media(max-width:992px){

.process-grid{

grid-template-columns:
1fr 1fr;

}

}



@media(max-width:768px){

.booking-process{

padding:70px 0;

}

.process-grid{

grid-template-columns:
1fr;

gap:24px;

}

.process-card{

padding:
65px 24px 30px;

}

.process-icon{

width:80px;

height:80px;

font-size:28px;

}

.process-card h3{

font-size:22px;

}

}
/* ===== BACK TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #ff2e63;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Button Show State */
.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover Effect */
.scroll-top-btn:hover {
    background: #ff2e63;
    color: #fff;
    box-shadow: 0 15px 35px rgba(255, 46, 99, 0.5);
    transform: translateY(-5px);
}

/* SVG Scroll Progress Circle */
.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.progress-circle path {
    fill: none;
    stroke: #ff2e63;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 0.1s linear;
}

.scroll-top-btn:hover .progress-circle path {
    stroke: #fff;
}