/* ============================================================
   SHALOM STAY - Premium Hotel Frontend
   Color: Deep Navy + Warm Gold | Fonts: Cormorant + Montserrat
   ============================================================ */

:root {
    --navy: #14332A;
    --navy-light: #1B4332;
    --navy-mid: #1E5340;
    --gold: #C9A96E;
    --gold-light: #D4BC8B;
    --gold-dark: #A68B5B;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    --text: #1A1A2E;
    --text-light: #555568;
    --text-muted: #8A8A9A;
    --border: #E8E4DE;
    --shadow: 0 4px 20px rgba(12, 27, 42, 0.08);
    --shadow-lg: 0 15px 50px rgba(12, 27, 42, 0.12);
    --shadow-gold: 0 5px 25px rgba(201, 169, 110, 0.25);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===================== HEADER ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

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

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    transition: var(--transition);
}

.header:not(.scrolled) .logo-name { color: var(--white); }

.logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    font-weight: 500;
}

/* Navigation */
.nav { display: flex; align-items: center; gap: 36px; }

.nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
}

.header.scrolled .nav a { color: var(--text); }

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--gold); }

.nav-cta { margin-left: 10px; }

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

.header.scrolled .mobile-menu-btn { color: var(--navy); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--navy);
    z-index: 2000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .logo-name { color: var(--white); }

.mobile-menu-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-nav { display: flex; flex-direction: column; flex: 1; }

.mobile-nav a {
    color: rgba(255, 255, 255, 0.75);
    padding: 16px 0;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }

.mobile-book-btn { margin-top: auto; text-align: center; }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-light);
    color: var(--gold);
    transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

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

.btn-outline:hover {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-lg { padding: 18px 44px; font-size: 0.85rem; }
.btn-sm { padding: 10px 24px; font-size: 0.78rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===================== HERO ===================== */
.hero {
    height: 100vh;
    min-height: 700px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20, 51, 42, 0.5), rgba(20, 51, 42, 0.7));
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 0 24px;
}

/* Photo Strip */
.photo-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 60px;
}

.photo-strip-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-strip-item:hover img {
    transform: scale(1.08);
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold-light);
}

.hero-badge-line {
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-content h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-content .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 8px;
    opacity: 0.9;
    font-weight: 400;
    font-style: italic;
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 10px auto 0;
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 55px; }
}

/* ===================== SECTIONS ===================== */
.section { padding: 100px 0; }

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

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header.light .section-tag { color: var(--gold-light); }

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.section-header.light h2 { color: var(--white); }

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 18px;
}

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

.section-header.light p { color: rgba(255, 255, 255, 0.65); }

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

/* ===================== ABOUT / FEATURES ===================== */
.about-section { background: var(--white); }

.about-content {
    max-width: 750px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 300;
}

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

.feature {
    text-align: center;
    padding: 40px 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
    background: var(--white);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature:hover .feature-icon { background: var(--gold); }

.feature-icon i { font-size: 1.3rem; color: var(--gold); transition: var(--transition); }
.feature:hover .feature-icon i { color: var(--white); }

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.feature p { color: var(--text-muted); font-size: 0.88rem; font-weight: 300; }

/* ===================== ROOMS ===================== */
.rooms-section { background: var(--cream); }

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.room-card .room-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.room-card .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card:hover .room-image img { transform: scale(1.08); }

.room-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
}

.room-price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 4px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.room-price .amount { display: block; font-size: 1.2rem; font-weight: 700; }
.room-price .period { font-size: 0.7rem; opacity: 0.75; font-weight: 300; }

.room-card .room-details { padding: 28px; }

.room-card .room-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.room-description {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    line-height: 1.6;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.room-meta i { color: var(--gold); margin-right: 6px; }

/* ===================== ROOM LISTING PAGE ===================== */
.page-header {
    background: linear-gradient(160deg, rgba(20, 51, 42, 0.78), rgba(20, 51, 42, 0.88)),
                url('../images/real/hotel-22.jpeg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 70px;
    text-align: center;
    color: var(--white);
}

.page-header h1 { font-size: 3.2rem; margin-bottom: 10px; color: var(--white); }
.page-header p { font-size: 1.05rem; opacity: 0.7; font-weight: 300; }

/* Room Filters */
.room-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    flex-wrap: wrap;
}

.filter-group { display: flex; align-items: center; gap: 10px; }

.filter-group label {
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.88rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus { outline: none; border-color: var(--gold); }

.filter-results {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rooms-list { display: flex; flex-direction: column; gap: 28px; }

.room-card-horizontal {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 380px 1fr;
    transition: var(--transition);
}

.room-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.room-card-horizontal .room-image {
    position: relative;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.room-card-horizontal .room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.room-card-horizontal:hover .room-image img { transform: scale(1.05); }

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.room-card-horizontal .room-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.room-header h2 { font-size: 1.7rem; color: var(--navy); }

.room-header .room-price {
    position: static;
    background: var(--navy);
    color: var(--white);
}

.room-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-info i { color: var(--gold); margin-right: 6px; }

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

.amenity-tag {
    background: var(--cream);
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.amenity-tag i { color: var(--gold); margin-right: 6px; }

.amenity-more { color: var(--gold); font-size: 0.82rem; padding: 6px 0; font-weight: 500; }

.room-actions { margin-top: auto; }

/* ===================== ROOM DETAIL PAGE ===================== */
.room-detail-section { padding: 30px 0 100px; }

.breadcrumb {
    margin: 90px 0 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 10px; }

.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 60px;
}

.room-gallery .main-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 12px; }

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

.room-gallery .main-image.placeholder {
    height: 460px;
    background: var(--cream-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.room-gallery .main-image.placeholder i { font-size: 4rem; margin-bottom: 10px; }

.thumbnail-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }

.thumbnail {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.thumbnail.active, .thumbnail:hover { opacity: 1; }
.thumbnail img { width: 100%; height: 70px; object-fit: cover; }

.room-info-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid var(--border);
}

.room-info-panel .room-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.room-info-panel h1 { font-size: 1.9rem; }

.room-price-box {
    background: var(--navy);
    padding: 18px 24px;
    border-radius: var(--radius);
    width: 100%;
    text-align: center;
    color: var(--white);
}

.room-price-box .price { font-size: 2.2rem; font-weight: 700; display: block; color: var(--gold); }
.room-price-box .period { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

.room-quick-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.room-quick-info .info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-light);
    font-size: 0.92rem;
}

.room-quick-info .info-item i {
    width: 42px;
    height: 42px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
}

/* Room Detail Content */
.room-detail-content { max-width: 800px; }

.room-description-section,
.room-amenities-section { margin-bottom: 44px; }

.room-description-section h2,
.room-amenities-section h2 { font-size: 1.6rem; margin-bottom: 20px; }

.description-text { color: var(--text-light); font-size: 0.98rem; line-height: 1.9; font-weight: 300; }

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.amenity-item i { color: var(--gold); font-size: 1rem; }

/* Related Rooms */
.related-rooms-section {
    margin-top: 70px;
    padding-top: 50px;
    border-top: 1px solid var(--border);
}

.related-rooms-section h2 { font-size: 2rem; margin-bottom: 30px; }

/* ===================== BOOKING MODAL ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 27, 42, 0.65);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active { display: flex; }

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 { font-size: 1.5rem; color: var(--navy); }

.modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover { color: var(--navy); }

.modal-body { padding: 30px; }

/* Booking Form */
.booking-form .form-group { margin-bottom: 20px; }

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.required { color: #D44638; }

/* Booking Summary */
.booking-summary {
    background: var(--cream);
    padding: 22px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.booking-summary h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--navy); }

.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.92rem; }

.summary-row.total {
    border-top: 2px solid var(--border);
    margin-top: 10px;
    padding-top: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold-dark);
}

/* Payment Info */
.payment-info {
    background: var(--cream);
    padding: 22px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border: 1px solid var(--gold-light);
}

.payment-info h3 { font-size: 1.1rem; margin-bottom: 14px; color: var(--navy); }
.payment-notice { color: var(--text-light); font-size: 0.88rem; margin-bottom: 14px; }

.bank-details h4 { font-size: 0.92rem; margin-bottom: 12px; color: var(--navy); }

.bank-details .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.88rem;
}

.bank-details .detail-row span { color: var(--text-muted); }

/* Success Message */
.success-message { text-align: center; padding: 30px; }
.success-message i { font-size: 3.5rem; color: #4CAF50; margin-bottom: 20px; }
.success-message h3 { font-size: 1.5rem; margin-bottom: 10px; }
.success-message p { color: var(--text-light); }

/* ===================== CONFIRMATION PAGE ===================== */
.confirmation-section { padding: 50px 0 100px; }

.confirmation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.confirmation-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 44px;
    text-align: center;
}

.confirmation-header .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirmation-header .success-icon i { font-size: 2.5rem; color: var(--gold); }
.confirmation-header h1 { font-size: 2rem; margin-bottom: 10px; color: var(--white); }

.booking-id {
    text-align: center;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.booking-id span { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 5px; }
.booking-id strong { font-size: 1.5rem; color: var(--gold-dark); }

.confirmation-details { padding: 30px; }

.details-section { margin-bottom: 30px; }

.details-section h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-section h3 i { color: var(--gold); }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.detail-item { padding: 16px; background: var(--cream); border-radius: var(--radius); }
.detail-item .label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.detail-item .value { font-weight: 600; color: var(--text); }
.detail-item.highlight { background: var(--navy); }
.detail-item.highlight .label { color: rgba(255, 255, 255, 0.6); }
.detail-item.highlight .value { font-size: 1.2rem; color: var(--gold); }

.special-requests { margin-top: 14px; padding: 16px; background: var(--cream); border-radius: var(--radius); }
.special-requests .label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }

.payment-section .payment-status { margin-bottom: 14px; }

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.pending { background: #FFF3E0; color: #E65100; }

.bank-details-card { background: var(--cream); padding: 22px; border-radius: var(--radius); margin: 18px 0; }
.bank-details-card h4 { font-size: 1rem; margin-bottom: 14px; }

.bank-info .bank-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.bank-info .bank-row:last-child { border-bottom: none; }
.bank-info .bank-row span { color: var(--text-muted); }

.payment-note {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #EEF5FF;
    border-radius: var(--radius);
    margin-top: 14px;
}

.payment-note i { color: #3B82F6; flex-shrink: 0; }
.payment-note p { font-size: 0.88rem; color: #1E40AF; margin: 0; }

.confirmation-footer { padding: 28px; border-top: 1px solid var(--border); }

.confirmation-footer .contact-info { text-align: center; margin-bottom: 22px; }
.confirmation-footer .contact-info h4 { font-size: 1.05rem; margin-bottom: 10px; }
.confirmation-footer .contact-info a { color: var(--gold-dark); display: inline-flex; align-items: center; gap: 8px; }
.confirmation-footer .actions { display: flex; gap: 14px; justify-content: center; }

/* ===================== WHY SECTION ===================== */
.why-section {
    background: var(--navy);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.why-item {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.why-item:last-child { border-right: none; }

.why-item:hover { background: rgba(255, 255, 255, 0.04); }

.why-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.4;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.why-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { background: var(--white); }

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

.testimonial-card {
    background: var(--cream);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.testimonial-quote {
    margin-bottom: 18px;
}

.testimonial-quote i {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.4;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-stars { margin-bottom: 18px; }
.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { color: var(--text-muted); font-size: 0.8rem; }

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(160deg, rgba(20, 51, 42, 0.82), rgba(20, 51, 42, 0.9)),
                url('../images/real/hotel-11.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 120px 24px;
}

.cta-content { max-width: 600px; margin: 0 auto; }
.cta-section .section-tag { color: var(--gold-light); }
.cta-section h2 { font-size: 3rem; margin-bottom: 16px; color: var(--white); }
.cta-section p { font-size: 1.05rem; margin-bottom: 36px; opacity: 0.7; font-weight: 300; }

/* ===================== ABOUT PAGE ===================== */
.about-story-section { background: var(--white); }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 { font-size: 2.4rem; margin-bottom: 14px; }

.about-story-content p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.9;
    margin-bottom: 16px;
    font-weight: 300;
}

.about-story-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-story-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* Stats */
.stats-section {
    background: var(--navy);
    color: var(--white);
    padding: 70px 0;
}

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

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label { font-size: 0.85rem; opacity: 0.65; font-weight: 300; text-transform: uppercase; letter-spacing: 1.5px; }

/* Values */
.values-section { background: var(--cream); }

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

.value-card {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.value-icon i { font-size: 1.3rem; color: var(--gold); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; font-weight: 300; }

/* Facilities */
.team-section { background: var(--white); }

.facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.facility-item {
    text-align: center;
    padding: 36px 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.facility-item:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }

.facility-item i { font-size: 2.2rem; color: var(--gold); margin-bottom: 18px; }
.facility-item h4 { font-size: 1.1rem; margin-bottom: 8px; }
.facility-item p { color: var(--text-muted); font-size: 0.88rem; font-weight: 300; }

/* ===================== CONTACT PAGE ===================== */
.contact-section { background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 50px; }

.contact-form-wrapper h2 { font-size: 2.2rem; margin-bottom: 10px; }

.contact-form-desc { color: var(--text-light); margin-bottom: 30px; font-size: 0.95rem; font-weight: 300; }

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.contact-form .form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.contact-success { text-align: center; padding: 40px 20px; }
.contact-success i { font-size: 3.5rem; color: #4CAF50; margin-bottom: 20px; display: block; }
.contact-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.contact-success p { color: var(--text-light); }

/* Contact Sidebar */
.contact-info-sidebar { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
    background: var(--navy);
    padding: 32px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i { font-size: 1rem; color: var(--gold); }
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 600; }
.contact-info-item p { color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; margin: 0; }
.contact-info-item p a { color: rgba(255, 255, 255, 0.6); }
.contact-info-item p a:hover { color: var(--gold); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ===================== GALLERY PAGE ===================== */
.gallery-section { background: var(--white); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    justify-content: center;
}

.gallery-filter {
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter:hover { border-color: var(--gold); color: var(--gold); }

.gallery-filter.active {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(12, 27, 42, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-room-name { color: var(--white); font-weight: 500; font-size: 0.9rem; }

.gallery-zoom {
    width: 40px;
    height: 40px;
    background: rgba(201, 169, 110, 0.3);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-zoom:hover { background: var(--gold); }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 27, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 40px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3001;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-content { text-align: center; max-width: 90vw; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-caption { color: rgba(255, 255, 255, 0.7); margin-top: 16px; font-size: 0.95rem; }

/* ===================== LEGAL PAGES ===================== */
.legal-section { background: var(--white); }

.legal-content { max-width: 780px; margin: 0 auto; }

.legal-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-block { margin-bottom: 36px; }
.legal-block h2 { font-size: 1.45rem; margin-bottom: 14px; }
.legal-block p { color: var(--text-light); font-size: 0.93rem; line-height: 1.8; margin-bottom: 12px; font-weight: 300; }

.legal-block ul { list-style: none; padding: 0; margin: 10px 0; }

.legal-block ul li {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.8;
    padding: 6px 0 6px 28px;
    position: relative;
    font-weight: 300;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.legal-block ul li a { color: var(--gold-dark); }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.7); }

.footer-top { padding: 70px 0 40px; }

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

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo .logo-name { color: var(--white); }

.footer-brand p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 20px; font-weight: 300; }

.footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 12px; }

.footer-section ul a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 300;
}

.footer-section ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--gold);
    width: 16px;
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-contact li span,
.footer-contact li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p { font-size: 0.82rem; opacity: 0.45; }

/* ===================== EMPTY STATE ===================== */
.empty-message { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.empty-message i { font-size: 3.5rem; color: var(--border); margin-bottom: 20px; }
.empty-message h3 { font-size: 1.5rem; margin-bottom: 10px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .features-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .why-item:nth-child(2) { border-right: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 550px; margin: 0 auto; }
    .room-detail-grid { grid-template-columns: 1fr; }
    .room-info-panel { position: static; }
    .room-card-horizontal { grid-template-columns: 1fr; }
    .room-card-horizontal .room-image { height: 260px; min-height: auto; }
    .detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-story-image img { min-height: 300px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-sidebar { order: -1; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-content .tagline { font-size: 1.2rem; }
    .nav, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .section { padding: 70px 0; }
    .section-header h2 { font-size: 2.2rem; }
    .section-header { margin-bottom: 40px; }
    .features-grid, .values-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-item { border-right: none; }
    .booking-form .form-row,
    .contact-form .form-row { grid-template-columns: 1fr; }
    .confirmation-footer .actions { flex-direction: column; }
    .page-header { padding: 120px 0 50px; }
    .page-header h1 { font-size: 2.4rem; }
    .room-header { flex-direction: column; gap: 14px; }
    .room-header .room-price { align-self: flex-start; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-social { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 2.5rem; }
    .facilities-grid { grid-template-columns: 1fr; }
    .room-filters { flex-direction: column; align-items: stretch; }
    .filter-group { flex-direction: column; align-items: stretch; }
    .filter-results { margin-left: 0; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .photo-strip { grid-template-columns: repeat(3, 1fr); }
    .photo-strip-item:nth-child(n+4) { display: none; }
    .cta-section { padding: 80px 24px; background-attachment: scroll; }
    .cta-section h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.4rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero { min-height: 600px; }
}

@media print {
    .header, .footer, .btn { display: none !important; }
    .confirmation-card { box-shadow: none; }
}
