/* ============================================
   CHAM CHAM PALACE - Main Stylesheet
   ============================================ */

:root {
    --primary: #f3b22f;
    --primary-dark: #d99a15;
    --primary-light: #fce5ad;
    --secondary: #1a1a2e;
    --secondary-light: #2d2d44;
    --accent: #e94560;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border: #e5e5e5;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

.container,
.container-full {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
}

.full-width {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

em { font-style: italic; color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243,178,47,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    width: 12%;
    min-width: 120px;
    line-height: 0;
    flex-shrink: 0;
}

.logo-img {
    width: 60%;
    height: auto;
    display: block;
}

/* .navbar.scrolled .logo-img {
    height: 48px;
} */

.logo i { color: var(--primary); font-size: 1.6rem; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item { position: relative; }

.nav-menu > .nav-item > a,
.nav-dropdown-head > a {
    color: rgba(255,255,255,0.85);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--primary); }

.nav-dropdown-head {
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    cursor: pointer;
    padding: 8px 6px;
    font-size: 0.7rem;
    line-height: 1;
    transition: var(--transition);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--primary); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: rgba(26, 26, 46, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
    color: var(--primary);
    background: rgba(255,255,255,0.04);
}

.nav-cta { margin-left: 4px; }

.nav-cta .btn { white-space: nowrap; }

.nav-anchor {
    height: 0;
    scroll-margin-top: 100px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* Homepage Hero Slider */
.page-home .navbar-over-hero {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 20px 0;
}

.page-home .navbar-over-hero.scrolled,
.navbar-over-hero.scrolled {
    background: rgba(26,26,46,0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--secondary);
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1.08);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.45) 0%, rgba(26,26,46,0.75) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 120px 20px 100px;
    width: 100%;
}

.hero-slide .hero-slide-content .hero-subtitle,
.hero-slide .hero-slide-content .hero-title,
.hero-slide .hero-slide-content .hero-text,
.hero-slide .hero-slide-content .hero-actions {
    opacity: 0;
    transform: translateY(24px);
}

.hero-slide.active .hero-slide-content .hero-subtitle { animation: heroContentIn 0.7s ease 0.1s forwards; }
.hero-slide.active .hero-slide-content .hero-title { animation: heroContentIn 0.7s ease 0.25s forwards; }
.hero-slide.active .hero-slide-content .hero-text { animation: heroContentIn 0.7s ease 0.4s forwards; }
.hero-slide.active .hero-slide-content .hero-actions { animation: heroContentIn 0.7s ease 0.55s forwards; }

@keyframes heroContentIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.hero-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.hero-prev { left: clamp(16px, 3vw, 40px); }
.hero-next { right: clamp(16px, 3vw, 40px); }

.hero-slide-content .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.75);
}

.hero-slide-content .btn-outline:hover {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
}

.hero-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    z-index: 10;
    width: 0;
    transition: width 0.1s linear;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title { margin-bottom: 20px; }
.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero-scroll a { color: rgba(255,255,255,0.6); font-size: 1.2rem; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Booking Search */
.booking-search {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: end;
    background: #fff;
    padding: clamp(20px, 3vw, 36px);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.search-form .form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-form input,
.search-form select,
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fff;
}

.search-form input:focus,
.search-form select:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(243,178,47,0.15);
}

/* Sections */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--bg-dark); color: #fff; }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-subtitle.light { color: var(--primary-light); }
.section-title { margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-desc { color: var(--text-light); font-size: 1.05rem; }

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(26, 26, 46, 0.92);
    color: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.about-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-badge span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

.about-content .section-subtitle,
.about-content .section-title {
    text-align: left;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin: 28px 0 32px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.about-features i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
}

.category-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.category-card h3 { margin-bottom: 8px; }
.category-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.category-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

/* Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: clamp(20px, 2.5vw, 32px);
}

.rooms-section .rooms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img { transform: scale(1.08); }

.room-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.room-status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.room-status.available { background: var(--success); color: #fff; }
.room-status.unavailable { background: var(--danger); color: #fff; }

.room-info { padding: 24px; }
.room-info h3 { margin-bottom: 8px; }
.room-info h3 a:hover { color: var(--primary); }
.room-info > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

.room-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-meta i { color: var(--primary); margin-right: 4px; }

.room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.room-price .price { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.room-price .per-night { font-size: 0.85rem; color: var(--text-muted); }

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: clamp(14px, 1.5vw, 22px);
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.amenity-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.amenity-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.amenity-item span { font-size: 0.9rem; font-weight: 500; }

/* Testimonials */
.testimonials-slider-wrap {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 56px;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: var(--radius);
    box-sizing: border-box;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.15);
}

.testimonial-rating { color: var(--primary); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-text { font-size: 1rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; color: rgba(255,255,255,0.85); }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author strong { display: block; }
.testimonial-author span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active { border-color: var(--primary); box-shadow: 0 2px 12px rgba(243,178,47,0.15); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-content h2 { margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.1rem; }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    padding: 140px clamp(20px, 4vw, 64px) 60px;
    text-align: center;
    width: 100%;
}

.page-hero-sm { padding: 120px 0 40px; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--primary-light); }

/* Content Pages */
.content-page .content-intro {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.content-page .content-intro .section-title,
.content-page .content-intro .section-subtitle {
    text-align: center;
}

.content-page .content-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.content-page .content-intro .content-actions {
    justify-content: center;
    margin-top: 24px;
}

.content-layout,
.content-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.content-block-grid.reverse .content-media { order: 2; }
.content-block-grid.reverse .content-body { order: 1; }

.content-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.content-media img {
    width: 100%;
    min-height: 320px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-body .section-subtitle,
.content-body .section-title {
    text-align: left;
}

.content-body p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.75;
}

.content-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
}

.content-highlights.columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text);
    font-size: 0.98rem;
}

.content-highlights li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.content-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.content-block {
    margin-bottom: 48px;
}

.content-block.bg-light {
    margin-left: calc(-1 * clamp(20px, 4vw, 64px));
    margin-right: calc(-1 * clamp(20px, 4vw, 64px));
    padding: 48px clamp(20px, 4vw, 64px);
    background: var(--bg-light);
    border-radius: var(--radius);
}

.content-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    margin-top: 12px;
}

.content-link:hover { color: var(--secondary); }

.room-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.room-type-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.room-type-card-image {
    margin: -28px -28px 20px;
    height: 220px;
    overflow: hidden;
}

.room-type-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(243, 178, 47, 0.35);
}

.room-type-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.room-type-card .room-type-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.room-type-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

.content-amenities {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px;
}

.content-amenities h3 {
    margin-bottom: 20px;
}

.content-amenities > p {
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 0;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.venue-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 0 24px;
    text-align: center;
    box-shadow: var(--shadow);
    scroll-margin-top: 100px;
    overflow: hidden;
}

.venue-card-image {
    height: 180px;
    overflow: hidden;
    margin-bottom: 20px;
}

.venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.venue-card h3,
.venue-card p {
    padding: 0 20px;
}

.venue-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(243, 178, 47, 0.12);
    color: var(--primary);
    font-size: 1.25rem;
}

.venue-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.venue-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

.content-block {
    scroll-margin-top: 100px;
    margin-bottom: 56px;
}

.content-block:last-child {
    margin-bottom: 0;
}
.room-type-card {
    scroll-margin-top: 100px;
}

/* Rooms Listing */
.listing-layout {
    display: grid;
    grid-template-columns: minmax(260px, 300px) 1fr;
    gap: clamp(24px, 4vw, 48px);
}

.filters-sidebar {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-form h3 { margin-bottom: 24px; font-size: 1.2rem; }

.filter-group { margin-bottom: 20px; }
.filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.listing-header { margin-bottom: 24px; color: var(--text-light); }

/* Room Details */
.room-details-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.room-details-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}

.room-details-main {
    display: grid;
    gap: 32px;
    min-width: 0;
}

.room-details-main .breadcrumb {
    justify-content: flex-start;
    margin: 0;
    color: var(--text-muted);
}

.room-details-main .breadcrumb a {
    color: var(--primary);
}

.room-header-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.room-header-content h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 6px;
}

.room-category-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.room-category-label i {
    color: var(--primary);
    margin-right: 6px;
}

.room-header-price .price {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--primary);
}

.room-header-price .per-night {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.room-gallery-inline {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--secondary);
    box-shadow: var(--shadow);
}

.room-gallery-inline .gallery-hero-slider {
    height: clamp(280px, 42vw, 460px);
}

.room-gallery-inline .gallery-hero-counter {
    bottom: 24px;
    right: 16px;
}

.room-gallery-inline .gallery-hero-thumbs {
    padding: 12px 16px;
    background: var(--bg-light);
}

.room-gallery-inline .gallery-prev {
    left: 16px;
}

.room-gallery-inline .gallery-next {
    right: 16px;
}

.booking-sidebar {
    position: relative;
}

.booking-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.booking-card-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.booking-card-header h2 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.booking-card-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.booking-card-price .per-night {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.gallery-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-hero-slide.active { opacity: 1; z-index: 1; }

.gallery-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: var(--secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.gallery-nav:hover { background: var(--primary); color: #fff; }

.gallery-hero-counter {
    position: absolute;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-hero-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gallery-hero-thumb {
    width: 88px;
    height: 62px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-hero-thumb.active,
.gallery-hero-thumb:hover {
    border-color: var(--primary);
    opacity: 1;
}

.gallery-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }

.booking-price { margin-bottom: 16px; }
.booking-price .price { font-size: 2rem; font-weight: 700; color: var(--primary); }
.booking-price .per-night { color: var(--text-muted); }

.availability-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.status-available { background: rgba(40,167,69,0.1); color: var(--success); }
.status-unavailable { background: rgba(220,53,69,0.1); color: var(--danger); }

.booking-form .form-group { margin-bottom: 16px; }
.booking-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

.booking-summary {
    background: var(--bg-light);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 2px solid var(--border);
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.room-description h2, .room-amenities h2 { margin-bottom: 20px; }

/* Hotel Gallery */
.hotel-gallery-section {
    padding: 80px 0;
}

.hotel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
}

.hotel-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    grid-column: span 1;
}

.hotel-gallery-item.gallery-item-wide {
    grid-column: span 2;
}

.hotel-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hotel-gallery-item:hover img { transform: scale(1.08); }

.hotel-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hotel-gallery-item:hover .hotel-gallery-overlay { opacity: 1; }

.hotel-gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.hotel-gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s;
}

.hotel-gallery-item:hover .hotel-gallery-overlay h3,
.hotel-gallery-item:hover .hotel-gallery-overlay p {
    transform: translateY(0);
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin: 0 auto;
}

.lightbox-caption {
    color: #fff;
    margin-top: 20px;
}

.lightbox-caption h3 { font-size: 1.3rem; margin-bottom: 6px; }
.lightbox-caption p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; color: var(--primary); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.room-description p { color: var(--text-light); line-height: 1.8; margin-bottom: 30px; }

.room-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.spec-item i { font-size: 1.5rem; color: var(--primary); }
.spec-item strong { display: block; font-size: 0.85rem; color: var(--text-muted); }
.spec-item span { font-weight: 600; }

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-light);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

.amenity-tag i { color: var(--primary); }

/* Booking Confirmation */
.confirmation-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.confirmation-icon { font-size: 4rem; color: var(--success); margin-bottom: 20px; }
.confirmation-card h1 { margin-bottom: 12px; }
.confirmation-card > p { color: var(--text-light); margin-bottom: 32px; }

.confirmation-details {
    text-align: left;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.detail-row:last-child { border-bottom: none; }
.detail-row.total { font-size: 1.1rem; font-weight: 700; color: var(--primary); border-top: 2px solid var(--border); margin-top: 8px; padding-top: 16px; }

.confirmation-note { color: var(--text-light); font-size: 0.9rem; margin-bottom: 32px; }
.confirmation-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: clamp(32px, 5vw, 64px);
}

.contact-info-panel h2 { margin-bottom: 12px; }
.contact-info-panel > p { color: var(--text-light); margin-bottom: 32px; }

.contact-info-items { display: grid; gap: 24px; margin-bottom: 32px; }

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.contact-info-item strong { display: block; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-light); font-size: 0.95rem; }

.contact-form-panel {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-light);
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.alert-success { background: rgba(40,167,69,0.1); color: var(--success); border: 1px solid rgba(40,167,69,0.2); }
.alert-error { background: rgba(220,53,69,0.1); color: var(--danger); border: 1px solid rgba(220,53,69,0.2); }
.alert-warning { background: rgba(255,193,7,0.1); color: #856404; border: 1px solid rgba(255,193,7,0.2); }

.text-warning { color: var(--warning); }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i { font-size: 4rem; color: var(--text-muted); margin-bottom: 20px; }
.empty-state h3 { margin-bottom: 12px; }
.empty-state p { color: var(--text-light); margin-bottom: 24px; }

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.page-link.active, .page-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(24px, 4vw, 56px);
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: inline-block;
    line-height: 0;
    width: 40%;
    margin-bottom: 16px;
}

.footer-logo .logo-img {
    width: 40%;
    display: block;
}

.footer-logo i { color: var(--primary); }
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-col h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--primary); padding-left: 4px; }

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-info i { color: var(--primary); margin-top: 4px; }

.social-links { display: flex; gap: 12px; }

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1200px) {
    .nav-menu > .nav-item > a,
    .nav-dropdown-head > a {
        padding: 8px 8px;
        font-size: 0.78rem;
    }
}

@media (max-width: 1024px) {
    .search-form { grid-template-columns: 1fr 1fr; }
    .search-form .btn { grid-column: span 2; }
    .room-details-layout { grid-template-columns: 1fr; }
    .booking-card { position: static; }
    .room-details-section { padding-top: 100px; }
    .rooms-section .rooms-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .hotel-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .hotel-gallery-item.gallery-item-wide { grid-column: span 2; }
    .listing-layout { grid-template-columns: 1fr; }
    .filters-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .content-layout,
    .content-block-grid { grid-template-columns: 1fr; }
    .content-block-grid.reverse .content-media,
    .content-block-grid.reverse .content-body { order: unset; }
    .room-type-grid { grid-template-columns: 1fr; }
    .venue-grid { grid-template-columns: repeat(2, 1fr); }
    .content-highlights.columns-2 { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        align-items: stretch;
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu > .nav-item > a,
    .nav-dropdown-head > a { padding: 12px 16px; white-space: normal; }
    .nav-dropdown-head { justify-content: space-between; width: 100%; }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.04);
        border: none;
        box-shadow: none;
        padding: 0 0 8px;
        display: none;
        min-width: 0;
    }
    .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu li a { padding: 10px 16px 10px 28px; font-size: 0.9rem; }
    .nav-cta { margin-left: 0; margin-top: 8px; }
    .nav-cta .btn { width: 100%; text-align: center; }
    .search-form { grid-template-columns: 1fr; }
    .search-form .btn { grid-column: span 1; }
    .rooms-grid { grid-template-columns: 1fr; }
    .rooms-section .rooms-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .venue-grid { grid-template-columns: 1fr; }
    .content-block.bg-light {
        margin-left: 0;
        margin-right: 0;
        padding: 32px 20px;
    }
    .categories-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .about-image img { min-height: 280px; }
    .testimonials-slider-wrap { padding: 0 48px; }
    .testimonial-nav { width: 38px; height: 38px; font-size: 0.85rem; }
    .hero-slider { min-height: 500px; height: 85vh; }
    .hero-nav { width: 42px; height: 42px; }
    .hero-dots { bottom: 70px; }
    .room-gallery-inline .gallery-hero-slider { height: 260px; }
    .gallery-nav { width: 40px; height: 40px; }
    .gallery-prev { left: 12px; }
    .gallery-next { right: 12px; }
    .hotel-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .hotel-gallery-item,
    .hotel-gallery-item.gallery-item-wide { grid-column: span 1; }
    .hotel-gallery-overlay { opacity: 1; }
    .room-header-content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .confirmation-card { padding: 24px; }
    .contact-form-panel { padding: 24px; }
    .gallery-hero-thumb { width: 72px; height: 52px; }
    .lightbox { padding: 16px; }
    .lightbox-nav { width: 40px; height: 40px; }
}
