
        :root {
            --primary-dark: #7C4F2A;
            --primary-medium: #A47148;
            --primary-light: #DDB892;
            --cream: #FAF3E0;
            --neon-glow: rgba(220, 180, 120, 0.5);
            --gradient-1: linear-gradient(135deg, #7C4F2A 0%, #A47148 50%, #DDB892 100%);
            --gradient-2: linear-gradient(135deg, #DDB892 0%, #FAF3E0 50%, #A47148 100%);
            --shadow-neon: 0 0 30px rgba(124, 79, 42, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--primary-dark);
            overflow-x: hidden;
            line-height: 1.7;
        }
        
        /* Floating Elements Animation */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .floating-delayed {
            animation: floating 3s ease-in-out infinite 1s;
        }
        
        /* Neon Glow Effect */
        .neon-glow {
            box-shadow: 0 0 20px var(--neon-glow), 0 0 40px rgba(164, 113, 72, 0.2);
        }
        
        .text-glow {
            text-shadow: 0 0 10px var(--neon-glow), 0 0 20px rgba(164, 113, 72, 0.3);
        }
        
        /* ==================== NAVBAR ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10000;
            padding: 15px 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background: transparent;
        }
        
        .navbar.scrolled {
            background: linear-gradient(135deg, rgba(124, 79, 42, 0.98) 0%, rgba(164, 113, 72, 0.98) 100%);
            padding: 10px 0;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        
        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .logo span {
            font-size: 36px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
            align-items: center;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            padding: 12px 18px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--cream);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 10px;
        }
        
        .nav-link:hover::before,
        .nav-link.active::before {
            width: 60%;
        }
        
        .nav-link:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }
        
        .nav-cta {
            background: var(--cream) !important;
            color: var(--primary-dark) !important;
            padding: 14px 30px !important;
            font-weight: 600 !important;
            border-radius: 50px !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        
        .nav-cta:hover {
            transform: scale(1.05) translateY(-2px) !important;
            box-shadow: 0 10px 30px rgba(250, 243, 224, 0.4) !important;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 10001;
        }
        
        .hamburger span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Menu */
        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 400px;
                height: 100vh;
                background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
                flex-direction: column;
                padding: 100px 40px 40px;
                gap: 10px;
                transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                box-shadow: -10px 0 40px rgba(0,0,0,0.3);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-link {
                width: 100%;
                text-align: center;
                padding: 15px;
                font-size: 16px;
            }
        }
        
        /* ==================== HERO SECTION ==================== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(124, 79, 42, 0.95) 0%, rgba(164, 113, 72, 0.9) 50%, rgba(221, 184, 146, 0.85) 100%),
                        url('https://images.pexels.com/photos/163277/pexels-photo-163277.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 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.05'%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");
        }
        
        .hero-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            animation: particleFloat 15s infinite;
        }
        
        @keyframes particleFloat {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }
        
        .hero-content {
            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-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: white;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-text h1 span {
            display: block;
            background: linear-gradient(90deg, #FAF3E0, #DDB892);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.2s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s both;
        }
        
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: var(--cream);
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .btn-primary:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 20px 40px rgba(250, 243, 224, 0.4);
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 40px;
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s ease;
            border: 2px solid white;
        }
        
        .btn-secondary:hover {
            background: white;
            color: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.3s both;
        }
        
        .hero-image-main {
            width: 100%;
            max-width: 550px;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            position: relative;
            z-index: 2;
        }
        
        .hero-floating-card {
            position: absolute;
            background: white;
            padding: 20px 25px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            z-index: 3;
        }
        
        .hero-floating-card.card-1 {
            top: 20px;
            left: -40px;
            animation: floating 3s ease-in-out infinite;
        }
        
        .hero-floating-card.card-2 {
            bottom: 40px;
            right: -30px;
            animation: floating 3s ease-in-out infinite 1.5s;
        }
        
        .card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .card-stat {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-dark);
        }
        
        .card-label {
            font-size: 0.85rem;
            color: #666;
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 150px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                display: none;
            }
        }
        
        /* ==================== ABOUT SECTION ==================== */
        .about {
            padding: 120px 0;
            background: white;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }
        
        .section-badge {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, rgba(124, 79, 42, 0.1) 0%, rgba(221, 184, 146, 0.2) 100%);
            color: var(--primary-dark);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
            border: 1px solid rgba(124, 79, 42, 0.2);
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .about-card {
            background: linear-gradient(145deg, #fff 0%, var(--cream) 100%);
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(124, 79, 42, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .about-card:hover::before {
            transform: scaleX(1);
        }
        
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(124, 79, 42, 0.15);
        }
        
        .about-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-1);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: white;
            transition: all 0.4s ease;
        }
        
        .about-card:hover .about-icon {
            transform: rotateY(360deg);
        }
        
        .about-card h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .about-card p {
            color: #666;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        
        /* ==================== MILESTONES SECTION ==================== */
        .milestones {
            padding: 100px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }
        
        .milestones::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
        }
        
        .milestones .section-title {
            color: white;
        }
        
        .milestones .section-subtitle {
            color: rgba(255,255,255,0.85);
        }
        
        .milestones .section-badge {
            background: rgba(255,255,255,0.15);
            color: white;
            border-color: rgba(255,255,255,0.3);
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 40px 25px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.4s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.2);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            font-weight: 500;
        }
        
        /* ==================== WHY CHOOSE US ==================== */
        .features {
            padding: 120px 0;
            background: var(--cream);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .feature-card {
            background: white;
            padding: 45px 35px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid transparent;
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(221, 184, 146, 0.1) 0%, transparent 70%);
            transition: all 0.5s ease;
            opacity: 0;
        }
        
        .feature-card:hover::after {
            opacity: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-light);
            box-shadow: 0 30px 60px rgba(124, 79, 42, 0.15);
        }
        
        .feature-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 4rem;
            font-weight: 900;
            color: rgba(124, 79, 42, 0.08);
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }
        
        .feature-icon-wrapper {
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }
        
        .feature-card:hover .feature-icon-wrapper {
            transform: rotate(10deg) scale(1.1);
        }
        
        .feature-icon-wrapper i {
            font-size: 32px;
            color: white;
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }
        
        .feature-card p {
            color: #666;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }
        
        /* ==================== WORK PROCESS ==================== */
        .process {
            padding: 120px 0;
            background: white;
        }
        
        .process-timeline {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
        }
        
        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-dark), var(--primary-light));
            transform: translateX(-50%);
            border-radius: 10px;
        }
        
        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .process-step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .step-content {
            width: calc(50% - 50px);
            background: var(--cream);
            padding: 35px;
            border-radius: 20px;
            transition: all 0.4s ease;
        }
        
        .step-content:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 40px rgba(124, 79, 42, 0.15);
        }
        
        .step-number {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            z-index: 2;
            box-shadow: 0 10px 30px rgba(124, 79, 42, 0.3);
            border: 5px solid white;
        }
        
        .step-icon {
            width: 55px;
            height: 55px;
            background: var(--primary-dark);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            color: white;
            font-size: 24px;
        }
        
        .step-content h3 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .step-content p {
            color: #666;
            font-size: 0.95rem;
        }
        
        @media (max-width: 768px) {
            .process-line {
                left: 30px;
            }
            
            .process-step,
            .process-step:nth-child(even) {
                flex-direction: column;
                padding-left: 80px;
            }
            
            .step-content {
                width: 100%;
            }
            
            .step-number {
                left: 30px;
            }
        }
        
        /* ==================== PACKAGES SECTION ==================== */
        .packages {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .package-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid transparent;
        }
        
        .package-card.featured {
            border-color: var(--primary-medium);
            transform: scale(1.05);
        }
        
        .package-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--gradient-1);
            color: white;
            padding: 8px 45px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
            z-index: 10;
        }
        
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(124, 79, 42, 0.2);
        }
        
        .package-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        .package-header {
            background: var(--gradient-1);
            padding: 40px 35px;
            text-align: center;
            color: white;
        }
        
        .package-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .package-price {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
        }
        
        .package-price span {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.8;
        }
        
        .package-body {
            padding: 40px 35px;
        }
        
        .package-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(124, 79, 42, 0.1);
        }
        
        .package-feature:last-child {
            border-bottom: none;
        }
        
        .package-feature i {
            color: var(--primary-medium);
            font-size: 1.1rem;
        }
        
        .package-btn {
            display: block;
            width: 100%;
            padding: 18px;
            background: var(--gradient-1);
            color: white;
            text-decoration: none;
            text-align: center;
            border-radius: 15px;
            font-weight: 600;
            margin-top: 25px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .package-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(124, 79, 42, 0.3);
        }
        
        @media (max-width: 768px) {
            .package-card.featured {
                transform: scale(1);
            }
        }
        
        /* ==================== SERVICES SECTION ==================== */
        .services {
            padding: 120px 0;
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .service-card {
            background: linear-gradient(145deg, var(--cream) 0%, #fff 100%);
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            border-color: var(--primary-light);
            box-shadow: 0 25px 50px rgba(124, 79, 42, 0.15);
        }
        
        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-1);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 45px;
            color: white;
            transition: all 0.5s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover .service-icon {
            transform: rotateY(180deg) scale(1.1);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-medium);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-link:hover {
            gap: 15px;
            color: var(--primary-dark);
        }
        
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ==================== BOOKING FORM ==================== */
        .booking {
            padding: 120px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }
        
        .booking::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            top: -200px;
            right: -200px;
        }
        
        .booking .section-title,
        .booking .section-subtitle {
            color: white;
        }
        
        .booking-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .booking-form {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 25px;
        }
        
        .form-group {
            position: relative;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--primary-dark);
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e8e0d0;
            border-radius: 15px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: var(--cream);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-medium);
            box-shadow: 0 0 0 4px rgba(164, 113, 72, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 20px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(124, 79, 42, 0.3);
        }
        
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .booking-form {
                padding: 30px 25px;
            }
        }
        
        /* ==================== REVIEWS SECTION ==================== */
        .reviews {
            padding: 120px 0;
            background: var(--cream);
        }
        
        .reviews-slider {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        .reviews-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }
        
        .review-card {
            min-width: calc(33.333% - 20px);
            background: white;
            padding: 40px 35px;
            border-radius: 25px;
            transition: all 0.4s ease;
            border: 1px solid rgba(124, 79, 42, 0.1);
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(124, 79, 42, 0.15);
        }
        
        .review-stars {
            color: #f59e0b;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        
        .review-text {
            color: #444;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
            font-size: 1rem;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .review-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .review-info h4 {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 3px;
        }
        
        .review-info span {
            color: #888;
            font-size: 0.9rem;
        }
        
        .reviews-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }
        
        .review-nav-btn {
            width: 55px;
            height: 55px;
            background: white;
            border: 2px solid var(--primary-light);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 1.2rem;
        }
        
        .review-nav-btn:hover {
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
        }
        
        @media (max-width: 992px) {
            .review-card {
                min-width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 576px) {
            .review-card {
                min-width: 100%;
            }
        }
        
        /* ==================== FAQ SECTION ==================== */
        .faq {
            padding: 120px 0;
            background: white;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .faq-item {
            background: var(--cream);
            border-radius: 20px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .faq-item:hover {
            border-color: var(--primary-light);
        }
        
        .faq-question {
            width: 100%;
            padding: 25px 30px;
            background: transparent;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--primary-medium);
        }
        
        .faq-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-answer-content {
            padding: 0 30px 25px;
            color: #666;
            line-height: 1.8;
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
        }
        
        /* ==================== CTA SECTION ==================== */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(124, 79, 42, 0.95) 0%, rgba(164, 113, 72, 0.95) 100%),
                        url('https://images.pexels.com/photos/4226140/pexels-photo-4226140.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            text-align: center;
            position: relative;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 40px;
        }
        
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 50px;
            background: white;
            color: var(--primary-dark);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .cta-btn:hover {
            transform: scale(1.08) translateY(-5px);
            box-shadow: 0 25px 50px rgba(255,255,255,0.3);
        }
        
        /* ==================== CONTACT SECTION ==================== */
        .contact {
            padding: 120px 0;
            background: var(--cream);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        
        .contact-card:hover {
            transform: translateX(10px);
            border-color: var(--primary-light);
            box-shadow: 0 15px 35px rgba(124, 79, 42, 0.1);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            color: var(--primary-dark);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-details p,
        .contact-details a {
            color: #666;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: var(--primary-medium);
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 45px;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(124, 79, 42, 0.1);
        }
        
        .contact-form-wrapper h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-bottom: 30px;
            font-family: 'Playfair Display', serif;
        }
        
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ==================== PRIVACY POLICY & TERMS ==================== */
        .legal-section {
            padding: 80px 0;
            background: white;
        }
        
        .legal-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 30px;
        }
        
        .legal-content h3 {
            color: var(--primary-dark);
            font-size: 1.4rem;
            margin: 25px 0 15px;
            font-weight: 700;
        }
        
        .legal-content p {
            color: #555;
            line-height: 1.9;
            margin-bottom: 15px;
        }
        
        .legal-content ul {
            margin: 15px 0 25px 25px;
            color: #555;
        }
        
        .legal-content li {
            margin-bottom: 10px;
            line-height: 1.7;
        }
        
        /* ==================== NEWSLETTER SECTION ==================== */
        .newsletter {
            padding: 100px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }
        
        .newsletter::before,
        .newsletter::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
        }
        
        .newsletter::before {
            top: -100px;
            left: -100px;
        }
        
        .newsletter::after {
            bottom: -100px;
            right: -100px;
        }
        
        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .newsletter h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
        }
        
        .newsletter > .newsletter-container > p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        
        .newsletter-form {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .newsletter-form .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .newsletter-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e8e0d0;
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-medium);
        }
        
        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 20px 0;
        }
        
        .checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--primary-dark);
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .checkbox-group label {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.6;
            margin: 0;
        }
        
        .success-message {
            display: none;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 20px 30px;
            border-radius: 15px;
            text-align: center;
            font-weight: 600;
            margin-top: 20px;
            animation: fadeInUp 0.5s ease;
        }
        
        .success-message.show {
            display: block;
        }
        
        /* ==================== FOOTER ==================== */
        .footer {
            background: linear-gradient(180deg, var(--primary-dark) 0%, #5a3820 100%);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 50px;
            max-width: 1300px;
            margin: 0 auto 50px;
            padding: 0 30px;
        }
        
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-light);
            border-radius: 10px;
        }
        
        .footer-about p {
            color: rgba(255,255,255,0.8);
            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.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--primary-light);
            transform: translateY(-5px);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 8px;
        }
        
        .footer-newsletter form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .footer-newsletter input {
            padding: 15px 20px;
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            font-family: inherit;
        }
        
        .footer-newsletter input::placeholder {
            color: rgba(255,255,255,0.6);
        }
        
        .footer-newsletter input:focus {
            outline: none;
            border-color: var(--primary-light);
            background: rgba(255,255,255,0.15);
        }
        
        .footer-newsletter button {
            padding: 15px 25px;
            background: var(--cream);
            color: var(--primary-dark);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter button:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        .footer-bottom a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* ==================== SCROLL TO TOP ==================== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(124, 79, 42, 0.3);
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
        }
        
        /* ==================== ANIMATIONS ==================== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Loading Animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid var(--primary-light);
            border-top-color: var(--primary-dark);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
