
        :root {
            --primary: #E2725B;
            --primary-dark: #c85a42;
            --secondary: #FFFDD0;
            --accent: #8B5E3C;
            --dark: #1a1a2e;
            --darker: #0f0f1a;
            --light: #ffffff;
            --gray: #6c757d;
            --light-gray: #f8f9fa;
            --gradient-neon: linear-gradient(135deg, #E2725B 0%, #ff6b9d 50%, #ffa06b 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            --shadow-neon: 0 0 30px rgba(226, 114, 91, 0.4);
            --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: var(--light);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
            box-shadow: var(--shadow-neon);
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 15px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            padding: 10px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--light);
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-neon);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: var(--shadow-neon);
            animation: logoFloat 3s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: color 0.3s ease;
            padding: 5px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-neon);
            transition: width 0.3s ease;
            box-shadow: var(--shadow-neon);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--gradient-neon) !important;
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
            box-shadow: var(--shadow-neon);
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 40px rgba(226, 114, 91, 0.6) !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--light);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            background: var(--gradient-dark);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            opacity: 0.15;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.6;
            animation: floatParticle 15s infinite;
            box-shadow: 0 0 20px var(--primary);
        }

        @keyframes floatParticle {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            animation: shapeFloat 20s ease-in-out infinite;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: 10%;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: #ff6b9d;
            bottom: 20%;
            left: -50px;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            background: #ffa06b;
            top: 50%;
            left: 40%;
            animation-delay: -10s;
        }

        @keyframes shapeFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.1); }
            50% { transform: translate(-20px, 20px) scale(0.9); }
            75% { transform: translate(20px, 30px) scale(1.05); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 30px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(226, 114, 91, 0.15);
            border: 1px solid rgba(226, 114, 91, 0.3);
            padding: 8px 18px;
            border-radius: 50px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 25px;
            backdrop-filter: blur(10px);
        }

        .hero-badge i {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--light);
            line-height: 1.2;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .hero-title .highlight {
            background: var(--gradient-neon);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient-neon);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-neon);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 0 50px rgba(226, 114, 91, 0.7);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--light);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            background: rgba(226, 114, 91, 0.1);
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease-out 0.3s both;
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-img-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        .hero-img-wrapper img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .hero-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 20px 25px;
            box-shadow: var(--shadow-float);
            animation: cardFloat 4s ease-in-out infinite;
        }

        .hero-floating-card.card-1 {
            bottom: 30px;
            left: -40px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hero-floating-card.card-2 {
            top: 30px;
            right: -30px;
            text-align: center;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .card-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-neon);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
        }

        .card-info h4 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .card-info p {
            font-size: 13px;
            color: var(--gray);
        }

        .rating-stars {
            color: #ffc107;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .rating-count {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            padding: 120px 0;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(226, 114, 91, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(226, 114, 91, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 18px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--dark);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 17px;
            color: var(--gray);
            line-height: 1.8;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .about-images {
            position: relative;
        }

        .about-img-main {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-float);
        }

        .about-img-main img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            display: block;
        }

        .about-img-secondary {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 220px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-float);
            border: 5px solid white;
        }

        .about-img-secondary img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .experience-badge {
            position: absolute;
            top: 30px;
            left: -30px;
            background: var(--gradient-neon);
            color: white;
            padding: 25px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-neon);
        }

        .experience-badge h3 {
            font-size: 38px;
            font-weight: 800;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 13px;
            opacity: 0.9;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .about-content p {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.9;
            margin-bottom: 30px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .value-item {
            background: white;
            padding: 25px;
            border-radius: 18px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-float);
            border-color: var(--primary);
        }

        .value-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(226, 114, 91, 0.15), rgba(255, 107, 157, 0.15));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .value-item h4 {
            font-size: 17px;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .value-item p {
            font-size: 14px;
            color: var(--gray);
            margin: 0;
            line-height: 1.6;
        }

        /* ========== MILESTONES / METRICS ========== */
        .milestones {
            padding: 100px 0;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .milestones-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1636138390540-de85ed519d40?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
            opacity: 0.05;
        }

        .metrics-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .metric-card {
            text-align: center;
            padding: 45px 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 25px;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-neon);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .metric-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(226, 114, 91, 0.3);
        }

        .metric-card:hover::before {
            transform: scaleX(1);
        }

        .metric-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            margin: 0 auto 25px;
            box-shadow: var(--shadow-neon);
        }

        .metric-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--light);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .metric-number span {
            color: var(--primary);
        }

        .metric-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        /* ========== WHY CHOOSE US / FEATURES ========== */
        .features {
            padding: 120px 0;
            background: var(--light);
            position: relative;
        }

        .features-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            padding: 40px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid #eee;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-neon);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(226, 114, 91, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card > * {
            position: relative;
            z-index: 1;
        }

        .feature-card:hover .feature-icon,
        .feature-card:hover h3,
        .feature-card:hover p {
            color: white;
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(226, 114, 91, 0.1), rgba(255, 160, 107, 0.1));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            color: var(--primary);
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
            transition: color 0.4s ease;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
            transition: color 0.4s ease;
        }

        /* ========== WORK PROCESS ========== */
        .process {
            padding: 120px 0;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 80px;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), #ff6b9d, #ffa06b);
            border-radius: 2px;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 0 15px;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            margin: 0 auto 25px;
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(226, 114, 91, 0.2);
            transition: all 0.4s ease;
            border: 4px solid transparent;
        }

        .process-step:hover .step-number {
            background: var(--gradient-neon);
            color: white;
            transform: scale(1.15);
            box-shadow: var(--shadow-neon);
        }

        .step-icon {
            font-size: 32px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .process-step h4 {
            font-size: 19px;
            color: var(--dark);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .process-step p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }

        /* ========== PACKAGES SECTION ========== */
        .packages {
            padding: 120px 0;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .packages-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .section-header.light .section-title {
            color: var(--light);
        }

        .section-header.light .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 60px;
        }

        .package-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 45px 35px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .package-card.featured {
            background: rgba(226, 114, 91, 0.1);
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .package-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 25px;
            right: -30px;
            background: var(--gradient-neon);
            color: white;
            padding: 8px 40px;
            font-size: 11px;
            font-weight: 700;
            transform: rotate(45deg);
        }

        .package-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            box-shadow: 0 30px 60px rgba(226, 114, 91, 0.2);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .package-icon {
            width: 85px;
            height: 85px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
            margin: 0 auto 25px;
            box-shadow: var(--shadow-neon);
        }

        .package-name {
            font-size: 24px;
            color: var(--light);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .package-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 25px;
            font-family: 'Playfair Display', serif;
        }

        .package-price span {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        .package-features {
            list-style: none;
            margin-bottom: 35px;
        }

        .package-features li {
            color: rgba(255, 255, 255, 0.75);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .package-features li i {
            color: var(--primary);
            font-size: 14px;
        }

        .package-btn {
            display: inline-block;
            background: var(--gradient-neon);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-neon);
        }

        .package-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 40px rgba(226, 114, 91, 0.6);
        }

        /* ========== SERVICES SECTION ========== */
        .services {
            padding: 120px 0;
            background: var(--light);
            position: relative;
        }

        .services-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .service-card {
            display: grid;
            grid-template-columns: 280px 1fr;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border: 1px solid #f0f0f0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(226, 114, 91, 0.15);
            border-color: var(--primary);
        }

        .service-img {
            overflow: hidden;
            position: relative;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-neon);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card:hover .service-overlay {
            opacity: 0.9;
        }

        .service-overlay i {
            font-size: 50px;
            color: white;
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-overlay i {
            transform: scale(1);
        }

        .service-content {
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-tag {
            display: inline-block;
            background: rgba(226, 114, 91, 0.1);
            color: var(--primary);
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
            width: fit-content;
        }

        .service-content h3 {
            font-size: 24px;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .service-content p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 15px;
        }

        /* ========== BOOKING FORM SECTION ========== */
        .booking {
            padding: 120px 0;
            background: var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .booking-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            background: white;
            border-radius: 35px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
        }

        .booking-info {
            background: var(--gradient-dark);
            padding: 60px 45px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .booking-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(226, 114, 91, 0.2) 0%, transparent 70%);
        }

        .booking-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--light);
            margin-bottom: 20px;
            position: relative;
        }

        .booking-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 35px;
            position: relative;
        }

        .booking-features-list {
            list-style: none;
            position: relative;
        }

        .booking-features-list li {
            color: rgba(255, 255, 255, 0.85);
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 15px;
        }

        .booking-features-list li i {
            width: 35px;
            height: 35px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
        }

        .booking-form {
            padding: 60px 45px;
        }

        .booking-form h3 {
            font-size: 26px;
            color: var(--dark);
            margin-bottom: 30px;
            font-weight: 700;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            outline: none;
            background: var(--light-gray);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(226, 114, 91, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: var(--gradient-neon);
            color: white;
            padding: 18px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-neon);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 40px rgba(226, 114, 91, 0.5);
        }

        /* ========== TESTIMONIALS SECTION ========== */
        .testimonials {
            padding: 120px 0;
            background: var(--light);
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            padding: 40px 35px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border: 1px solid #f5f5f5;
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(226, 114, 91, 0.12);
        }

        .testimonial-quote {
            font-size: 50px;
            color: var(--primary);
            opacity: 0.2;
            font-family: 'Playfair Display', serif;
            line-height: 1;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary);
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 17px;
            color: var(--dark);
            font-weight: 600;
            margin-bottom: 3px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
        }

        .testimonial-rating {
            color: #ffc107;
            font-size: 14px;
            margin-bottom: 15px;
        }

        /* ========== FAQ SECTION ========== */
        .faq {
            padding: 120px 0;
            background: var(--light-gray);
            position: relative;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .faq-list {
            margin-top: 50px;
        }

        .faq-item {
            background: white;
            border-radius: 18px;
            margin-bottom: 18px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .faq-item:hover {
            box-shadow: 0 10px 35px rgba(226, 114, 91, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question h4 {
            font-size: 17px;
            color: var(--dark);
            font-weight: 600;
            padding-right: 20px;
        }

        .faq-toggle {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(226, 114, 91, 0.1), rgba(255, 160, 107, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            background: var(--gradient-neon);
            color: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 0 30px 25px;
            font-size: 15px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 120px 0;
            background: var(--gradient-dark);
            position: relative;
            overflow: hidden;
        }

        .cta-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            opacity: 0.03;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            color: var(--light);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .cta-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* ========== CONTACT SECTION ========== */
        .contact {
            padding: 120px 0;
            background: var(--light);
            position: relative;
        }

        .contact-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
            margin-top: 60px;
        }

        .contact-info-cards {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid #f5f5f5;
        }

        .contact-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 45px rgba(226, 114, 91, 0.12);
            border-color: var(--primary);
        }

        .contact-card-icon {
            width: 65px;
            height: 65px;
            background: var(--gradient-neon);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: white;
            flex-shrink: 0;
            box-shadow: var(--shadow-neon);
        }

        .contact-card-content h4 {
            font-size: 18px;
            color: var(--dark);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .contact-card-content p {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.6;
        }

        .contact-card-content a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-card-content a:hover {
            color: var(--accent);
        }

        .contact-form-wrapper {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .contact-form-wrapper h3 {
            font-size: 26px;
            color: var(--dark);
            margin-bottom: 30px;
            font-weight: 700;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--darker);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-neon);
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-col h4 {
            color: var(--light);
            font-size: 19px;
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-neon);
            border-radius: 2px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--gradient-neon);
            transform: translateY(-5px);
            box-shadow: var(--shadow-neon);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .footer-links a i {
            font-size: 10px;
            color: var(--primary);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form p {
            color: rgba(255, 255, 255, 0.65);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .newsletter-input-wrapper {
            display: flex;
            gap: 10px;
        }

        .newsletter-input-wrapper input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--light);
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .newsletter-input-wrapper input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-input-wrapper input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-btn {
            padding: 15px 25px;
            background: var(--gradient-neon);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-neon);
        }

        .footer-bottom {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-neon);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: var(--shadow-neon);
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                max-width: 600px;
                margin: 0 auto;
            }

            .hero-floating-card.card-1 {
                left: 20px;
            }

            .hero-floating-card.card-2 {
                right: 20px;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .about-images {
                max-width: 550px;
                margin: 0 auto;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card {
                grid-template-columns: 300px 1fr;
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--darker);
                flex-direction: column;
                padding: 100px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline {
                flex-wrap: wrap;
                justify-content: center;
                gap: 40px;
            }

            .process-timeline::before {
                display: none;
            }

            .process-step {
                flex: 0 0 calc(50% - 20px);
            }

            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }

            .package-card.featured {
                transform: none;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-img-wrapper img {
                height: 400px;
            }

            .hero-floating-card {
                display: none;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .process-step {
                flex: 0 0 100%;
            }

            .service-card {
                grid-template-columns: 1fr;
            }

            .service-img {
                height: 220px;
            }

            .booking-wrapper {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 20px;
            }

            .hero-container {
                padding: 100px 20px 60px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 14px 28px;
                font-size: 14px;
            }

            .about-img-secondary {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 20px;
                width: 100%;
            }

            .experience-badge {
                position: relative;
                top: auto;
                left: auto;
                margin-bottom: 20px;
                display: inline-block;
            }

            .booking-form,
            .booking-info,
            .contact-form-wrapper {
                padding: 30px 25px;
            }

            .newsletter-input-wrapper {
                flex-direction: column;
            }
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }
