:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --secondary: #c9a227;
    --secondary-light: #d4af37;
    --accent: #2d5a7b;
    --light: #f8f9fa;
    --dark: #0a0a14;
    --text: #333;
    --text-light: #666;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
}

.site-logo span {
    color: var(--secondary);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    list-style: none;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s;
}

.main-navigation a:hover {
    color: var(--secondary);
}

.main-navigation a:hover::after {
    width: 100%;
}

.luxury-hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 20, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 10px 25px;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.gold-text {
    color: var(--secondary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-luxury {
    display: inline-block;
    padding: 18px 45px;
    background: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid var(--secondary);
}

.btn-luxury:hover {
    background: transparent;
    color: var(--secondary);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.btn-luxury-outline {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.btn-luxury-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 25px; opacity: 0.5; }
}

.brand-story {
    padding: 140px 0;
    background: var(--white);
}

.brand-story .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.story-content {
    max-width: 600px;
}

.story-badge {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

.story-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 500;
}

.story-divider {
    width: 80px;
    height: 2px;
    background: var(--secondary);
    margin-bottom: 30px;
}

.story-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 50px;
    background: var(--light);
    transition: all 0.4s ease;
}

.stat-item:hover {
    background: var(--primary);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
    color: var(--white);
}

.stat-item:hover .stat-number {
    color: var(--secondary);
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.4s;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-light);
    text-transform: uppercase;
    transition: color 0.4s;
}

.room-preview {
    padding: 140px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-badge.light {
    color: var(--secondary-light);
}

.section-title-luxury {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title-luxury.light {
    color: var(--white);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.room-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.category-card {
    position: relative;
    overflow: hidden;
    background: var(--primary);
}

.category-image {
    height: 450px;
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 25px;
    background: linear-gradient(to top, rgba(10, 10, 20, 0.95) 0%, transparent 100%);
    transition: padding 0.4s ease;
}

.category-card:hover .category-overlay {
    padding-bottom: 60px;
}

.category-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 5px;
}

.category-tagline {
    font-size: 0.8rem;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.category-link:hover {
    background: var(--secondary);
    color: var(--dark);
}

.cta-center {
    text-align: center;
}

.why-choose {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-choose .container {
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 25px;
    color: var(--secondary);
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.amenities-section {
    padding: 140px 0;
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

.amenities-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s;
}

.amenities-list li:hover {
    padding-left: 10px;
    color: var(--primary);
}

.amenity-icon {
    color: var(--secondary);
    font-size: 0.9rem;
}

.amenities-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 2px solid var(--secondary);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.amenities-image:hover .image-frame img {
    transform: scale(1.05);
}

.cta-section {
    padding: 120px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.site-footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s ease 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.room-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.room-content {
    padding: 25px;
}

.room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.room-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.room-price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: #666;
}

.booking-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.widget-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.widget-price span {
    font-size: 1rem;
    color: #666;
}

.booking-form {
    margin-top: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-summary {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary);
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
}

.btn-book {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-book:hover {
    background: #b8931f;
}

.room-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.single-room-hero {
    height: 500px;
    position: relative;
    margin-top: 70px;
}

.room-slider {
    height: 100%;
    overflow: hidden;
}

.room-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 1024px) {
    .room-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .brand-story .container {
        flex-direction: column;
    }
    
    .story-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .room-categories {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .main-navigation ul {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .room-details-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        position: static;
    }
    
    .single-room-hero {
        height: 350px;
    }
}

body.single-room,
body.rooms-archive {
    padding-top: 70px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.room-archive {
    padding: 80px 0;
    background: var(--light);
}

.room-details-section {
    padding: 60px 0 100px;
    background: var(--light);
}

.room-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.room-info .category {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.room-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.room-description p {
    margin-bottom: 15px;
}

.details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.detail-icon {
    font-size: 1.5rem;
}

.detail-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.detail-text span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
}

.amenities-grid-room {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.amenity-item .amenity-icon {
    color: var(--secondary);
    font-weight: bold;
}

.room-sidebar {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-tag {
    background: var(--light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.room-name a {
    color: inherit;
    text-decoration: none;
}

.room-name a:hover {
    color: var(--secondary);
}

.filter-bar {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.booking-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.booking-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.no-rooms {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 15px;
}

.no-rooms h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
    margin-bottom: 10px;
}

.no-rooms p {
    color: var(--text-light);
}

.pagination {
    text-align: center;
    margin-top: 50px;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--secondary);
    color: var(--dark);
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .details-list {
        flex-direction: column;
    }
    
    .room-details-section {
        padding: 40px 0 60px;
    }
    
    .amenities-grid-room {
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
}

.hero-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-service {
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-divider {
    color: var(--secondary);
    font-weight: 300;
}

.footer-tagline {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 8px;
}

.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-services a:hover {
    color: var(--secondary);
}

.resort-section {
    padding: 120px 0;
    background: var(--light);
}

.resort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.resort-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.resort-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.resort-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.resort-badge {
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resort-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.resort-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.resort-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.resort-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.resort-feature-icon {
    color: var(--secondary);
    flex-shrink: 0;
}

.resort-feature-icon svg {
    stroke: var(--secondary);
}

.resort-feature-text strong {
    display: block;
    color: var(--primary);
    margin-bottom: 3px;
}

.resort-feature-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.lawns-section {
    position: relative;
    padding: 120px 0;
    color: var(--white);
}

.lawns-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.lawns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.lawns-highlights {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.lawn-highlight {
    text-align: center;
}

.lawn-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 600;
    line-height: 1;
}

.lawn-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.lawns-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.event-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.event-type {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.event-icon {
    color: var(--secondary);
}

.event-icon svg {
    stroke: var(--secondary);
}

.event-info strong {
    display: block;
    color: var(--white);
    margin-bottom: 2px;
}

.event-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.lawns-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 450px;
}

.lawn-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lawn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lawn-image:hover img {
    transform: scale(1.05);
}

.lawn-image-1 {
    grid-row: span 2;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.7);
}

.enquiry-form-section {
    padding: 100px 0;
    background: var(--light);
}

.enquiry-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.enquiry-form-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
}

.enquiry-form-container p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.enquiry-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group.full-width {
    grid-column: span 2;
}

.time-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.time-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

@media (max-width: 992px) {
    .resort-grid,
    .lawns-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resort-image {
        order: -1;
    }
    
    .resort-image img {
        height: 400px;
    }
    
    .lawns-gallery {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-services {
        flex-wrap: wrap;
        font-size: 0.95rem;
    }
    
    .resort-section,
    .lawns-section {
        padding: 80px 0;
    }
    
    .resort-features,
    .event-types {
        grid-template-columns: 1fr;
    }
    
    .lawns-highlights {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .lawn-number {
        font-size: 2.5rem;
    }
    
    .lawns-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .lawn-image-1 {
        grid-row: auto;
    }
    
    .lawn-image img {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .enquiry-form-container {
        padding: 30px 20px;
    }
}
