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

        :root {
            --primary: #1a0f1f;
            --secondary: #4a1942;
            --accent: #d4536b;
            --accent-warm: #ff6b9d;
            --accent-light: #ffe3e9;
            --text: #2d2033;
            --text-light: #8b7088;
            --bg: #faf5f7;
            --white: #ffffff;
            --shadow: rgba(74, 25, 66, 0.15);
            --glow: rgba(212, 83, 107, 0.3);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Dynamic Background System */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.25;
            transition: background-image 0.8s ease-in-out, opacity 0.8s ease-in-out;
        }

        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(to bottom, rgba(250, 250, 248, 0.1), rgba(250, 250, 248, 0.85));
            pointer-events: none;
            transition: background 0.8s ease-in-out;
        }

        /* Lighter overlay for sections with background images */
        body.bg-rooms::after,
        body.bg-location::after,
        body.bg-pricing::after {
            background: linear-gradient(to bottom, rgba(250, 250, 248, 0.4), rgba(250, 250, 248, 0.5)) !important;
        }

        /* Background images for each section */
        body.bg-home::before {
            background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=80') !important;
            opacity: 0.65 !important;
        }

        body.bg-about::before {
            background-image: url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?w=1920&q=80') !important;
            opacity: 0.35 !important;
        }

        body.bg-rooms::before {
            background-image: url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1920&q=80') !important;
            opacity: 0.85 !important;
        }

        body.bg-location::before {
            background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80') !important;
            opacity: 0.25 !important;
        }

        body.bg-pricing::before {
            background-image: url('https://images.unsplash.com/photo-1554995207-c18c203602cb?w=1920&q=80') !important;
            opacity: 0.85 !important;
        }

        body.bg-booking::before {
            background-image: url('https://images.unsplash.com/photo-1615874959474-d609969a20ed?w=1920&q=80') !important;
            opacity: 0.45 !important;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            color: var(--primary);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(250, 245, 247, 0.97);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 83, 107, 0.2);
            animation: slideDown 0.6s ease-out;
            box-shadow: 0 2px 15px rgba(74, 25, 66, 0.08);
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

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

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

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

        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ffe3e9 0%, #faf5f7 40%, #f5e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(212, 83, 107, 0.15) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -20%;
            width: 70%;
            height: 100%;
            background: radial-gradient(circle, rgba(74, 25, 66, 0.1) 0%, transparent 60%);
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-30px, -30px) rotate(5deg); }
            50% { transform: translate(-60px, 30px) rotate(-5deg); }
            75% { transform: translate(30px, 60px) rotate(3deg); }
        }

        .hero-content {
            max-width: 1200px;
            padding: 2rem;
            text-align: center;
            z-index: 1;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 4.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .hero h1 strong {
            font-weight: 600;
            display: block;
            color: var(--accent);
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: 0.5px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            font-size: 0.95rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
            color: var(--white);
            border: 2px solid transparent;
            box-shadow: 0 4px 15px var(--glow);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-warm) 0%, var(--accent) 100%);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--glow);
        }

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

        .btn-secondary:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(74, 25, 66, 0.3);
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 3rem auto;
        }

        /* First section (hero) - no top margin */
        section:first-of-type {
            margin-top: 0;
        }

        /* Add visual separation with background boxes for main content sections */
        .about,
        .rooms,
        .location-section,
        .pricing,
        .booking {
            background: var(--white);
            box-shadow: 0 5px 30px var(--shadow);
            border-radius: 20px;
        }

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

        .section-header h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
        }

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

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--text-light);
        }

        .about-features {
            display: grid;
            gap: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--bg);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .feature-item:hover {
            transform: translateX(10px);
            border-color: var(--accent);
            box-shadow: 0 5px 20px var(--shadow);
        }

        .feature-icon {
            font-size: 1.8rem;
            color: var(--accent);
            min-width: 50px;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            font-family: 'Montserrat', sans-serif;
        }

        .feature-text p {
            margin: 0;
            font-size: 0.95rem;
        }

        /* Rooms Section */
        .rooms {
            /* Background handled by global section style */
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 2rem;
        }

        .pricing-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            margin: 3rem auto;
            max-width: 1200px;
        }

        .pricing-category {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .pricing-category h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--primary);
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--accent);
        }

        .rate-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .rate-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            background: linear-gradient(135deg, var(--accent-light), rgba(255, 227, 233, 0.5));
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 83, 107, 0.1);
        }

        .rate-item:hover {
            background: linear-gradient(135deg, var(--accent-warm), var(--accent));
            transform: translateX(5px);
            box-shadow: 0 5px 20px var(--glow);
            color: var(--white);
        }

        .rate-item:hover .time,
        .rate-item:hover .price {
            color: var(--white);
        }

        .rate-item .time {
            font-weight: 500;
            color: var(--primary);
        }

        .rate-item .price {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            font-family: 'Cormorant Garamond', serif;
        }

        .rate-note {
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
            font-style: italic;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--accent-light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
            border-color: var(--accent);
        }

        .pricing-card.featured {
            border-color: var(--accent);
            transform: scale(1.05);
            box-shadow: 0 15px 50px var(--glow);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--accent-warm), var(--accent));
            color: var(--white);
            padding: 0.5rem 2.5rem;
            font-weight: 600;
            font-size: 0.85rem;
            transform: rotate(45deg);
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px var(--glow);
        }

        .pricing-header {
            text-align: center;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-light);
            margin-bottom: 2rem;
        }

        .pricing-header h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.3rem;
        }

        .currency {
            font-size: 1.5rem;
            color: var(--accent);
            font-weight: 600;
        }

        .amount {
            font-size: 3.5rem;
            font-weight: 300;
            font-family: 'Cormorant Garamond', serif;
            color: var(--secondary);
        }

        .period {
            font-size: 1.1rem;
            color: var(--text-light);
            align-self: flex-end;
            padding-bottom: 0.5rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.8rem 0;
            color: var(--text-light);
            font-size: 0.95rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .info-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--accent);
            box-shadow: 0 5px 20px var(--shadow);
        }

        .info-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin: 0;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .additional-amenities {
            margin-top: 5rem;
            padding: 3rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 10px 40px var(--shadow);
        }

        .additional-amenities h3 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary);
        }

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

        .amenity-card {
            text-align: center;
            padding: 2rem;
            background: var(--bg);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .amenity-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .amenity-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .amenity-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        .amenity-card p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .location-info {
            margin-top: 3rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, var(--accent-light), rgba(255, 107, 157, 0.2));
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(212, 83, 107, 0.2);
            box-shadow: 0 10px 30px rgba(212, 83, 107, 0.1);
        }

        .location-info h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .location-info p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text);
            max-width: 900px;
            margin: 0 auto;
        }

        /* Location Section */
        .location-section {
            padding: 6rem 2rem;
        }

        .location-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .location-map {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px var(--shadow);
            margin-bottom: 4rem;
            border: 3px solid var(--accent-light);
        }

        .location-map iframe {
            display: block;
            width: 100%;
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
        }

        .map-label {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 1rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 5px 20px var(--glow);
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .location-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .location-card {
            background: var(--bg);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .location-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--shadow);
            background: var(--white);
        }

        .location-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .location-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--secondary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }

        .location-card p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .location-directions {
            background: linear-gradient(135deg, var(--accent-light), rgba(255, 227, 233, 0.5));
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid rgba(212, 83, 107, 0.2);
        }

        .location-directions h3 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--secondary);
        }

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

        .direction-item {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
        }

        .direction-item strong {
            color: var(--secondary);
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.8rem;
        }

        .direction-item p {
            color: var(--text-light);
            line-height: 1.7;
            margin: 0;
        }

        .room-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(212, 83, 107, 0.15);
        }

        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(74, 25, 66, 0.2), 0 0 30px var(--glow);
            border-color: var(--accent);
        }

        .room-image {
            height: 350px;
            background: linear-gradient(135deg, var(--accent-light), var(--accent-warm));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary);
            position: relative;
            overflow: hidden;
        }

        /* Room Gallery Slider */
        .room-gallery {
            position: relative;
            height: 400px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--accent-light), var(--accent-warm));
        }

        .gallery-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-slide.active {
            opacity: 1;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-prev,
        .gallery-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(26, 15, 31, 0.7);
            color: var(--white);
            border: none;
            padding: 1rem 1.2rem;
            font-size: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            border-radius: 5px;
            line-height: 1;
        }

        .gallery-prev {
            left: 10px;
        }

        .gallery-next {
            right: 10px;
        }

        .gallery-prev:hover,
        .gallery-next:hover {
            background: rgba(212, 83, 107, 0.9);
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .dot.active {
            background: var(--accent-warm);
            border-color: var(--white);
            transform: scale(1.2);
        }

        .dot:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        /* Gallery Placeholder */
        .gallery-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-light), rgba(255, 107, 157, 0.1));
            color: var(--text-light);
            font-size: 1rem;
            text-align: center;
            padding: 2rem;
            font-style: italic;
        }

        .room-content {
            padding: 2rem;
        }

        .room-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .room-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .amenity-tag {
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, var(--accent-light), rgba(255, 107, 157, 0.15));
            color: var(--secondary);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(212, 83, 107, 0.2);
            transition: all 0.3s ease;
        }

        .amenity-tag:hover {
            background: linear-gradient(135deg, var(--accent-warm), var(--accent));
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Booking Section */
        .booking {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            border-radius: 20px;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(74, 25, 66, 0.4);
        }

        .booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 83, 107, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.15) 0%, transparent 50%);
            opacity: 0.8;
        }

        .booking-content {
            position: relative;
            z-index: 1;
        }

        .booking h2 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .booking p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

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

        .contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 83, 107, 0.3);
            border-color: var(--accent-warm);
        }

        .contact-card h3 {
            color: var(--accent-warm);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-card a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 500;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--accent-warm);
        }

        .contact-card p {
            font-size: 0.95rem;
            opacity: 0.8;
            margin-top: 0.5rem;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: var(--white);
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-warm);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .nzpc-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            margin: 2rem 0;
            transition: all 0.3s ease;
        }

        .nzpc-badge:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(250, 245, 247, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 2rem;
                gap: 0;
                box-shadow: 0 10px 30px var(--shadow);
                z-index: 999;
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }

            .nav-links.mobile-open {
                display: flex;
            }

            .nav-links li {
                border-bottom: 1px solid rgba(212, 83, 107, 0.1);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
                text-align: center;
            }

            .nav-links a::after {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .booking h2 {
                font-size: 2.2rem;
            }

            .pricing-options {
                grid-template-columns: 1fr;
            }

            .rooms-grid {
                grid-template-columns: 1fr;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .location-highlights {
                grid-template-columns: 1fr;
            }

            .directions-grid {
                grid-template-columns: 1fr;
            }

            .map-label {
                font-size: 0.9rem;
                padding: 0.8rem 1.2rem;
            }

            section {
                padding: 4rem 1.5rem;
            }

            .booking, .about {
                padding: 3rem 2rem;
            }

            .additional-amenities {
                padding: 2rem 1.5rem;
            }

            .location-directions {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 600px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
            }

            .rooms-grid {
                grid-template-columns: 1fr;
            }

            .rate-grid {
                grid-template-columns: 1fr;
            }

            .pricing-category {
                padding: 1.5rem;
            }

            .pricing-options {
                gap: 2rem;
            }

            .room-gallery {
                height: 300px;
            }

            .gallery-prev,
            .gallery-next {
                padding: 0.8rem 1rem;
                font-size: 1.5rem;
            }

            .gallery-dots {
                bottom: 10px;
            }

            .dot {
                width: 10px;
                height: 10px;
            }

            .amenities {
                gap: 0.5rem;
            }

            .amenity-tag {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }

        /* Scroll reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
