/* ===================================================
   SAFIR SUIT OTEL — Premium CSS
   Mobile-First | Luxury Hotel Design
   Palette: Deep Navy #091322 | Rich Gold #d4af37 | Warm Cream #faf7f2
   =================================================== */

/* ---- CSS Variables ---- */
:root {
    --navy: #091322;
    --navy-light: #0f1e34;
    --navy-mid: #162b48;
    --gold: #d4af37;
    --gold-light: #f3df9b;
    --gold-dark: #aa8528;
    --gold-warm: #c5a059;
    --cream: #faf7f2;
    --cream-dark: #ece6da;
    --white: #ffffff;
    --text-dark: #121824;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: rgba(212, 175, 55, 0.28);
    --shadow-sm: 0 2px 8px rgba(9, 19, 34, 0.08);
    --shadow-md: 0 8px 30px rgba(9, 19, 34, 0.12);
    --shadow-lg: 0 20px 60px rgba(9, 19, 34, 0.18);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.35);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(9, 19, 34, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(9, 19, 34, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}
.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.navbar-logo {
    height: 52px;
    width: auto;
    max-width: 62px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
    transition: var(--transition);
}
.navbar-brand:hover .navbar-logo {
    transform: scale(1.06);
}
.navbar-brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.brand-sub {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    font-weight: 600;
    text-transform: uppercase;
}
.navbar-nav {
    display: none;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}
.nav-btn {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.dropdown-menu li a:hover {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
    padding-left: 22px;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    z-index: 1002;
    position: relative;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
}
.mobile-overlay.active { display: block; }

/* ===================================================
   HERO SECTION (Luxury Full Screen)
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 70px;
}
.hero-swiper { position: absolute; inset: 0; }
.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}
.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.swiper-slide-active .hero-slide-img { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.6) 0%,
        rgba(10, 22, 40, 0.4) 45%,
        rgba(10, 22, 40, 0.85) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.18);
    border: 1px solid rgba(201, 168, 76, 0.45);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 18px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    color: var(--white);
    letter-spacing: -0.01em;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 620px;
    line-height: 1.65;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================================
   LUXURY BOOKING & CONTACT STRIP
   =================================================== */
.booking-strip {
    background: linear-gradient(135deg, #0a1628 0%, #101f35 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    padding: 20px 0;
    position: relative;
    z-index: 20;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.booking-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.booking-strip-col {
    display: flex;
    align-items: center;
    gap: 14px;
}
.booking-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.booking-strip-text {
    display: flex;
    flex-direction: column;
}
.booking-strip-label {
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.booking-strip-val {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}
.booking-strip-val:hover {
    color: var(--gold-light);
}
.booking-strip-sep {
    width: 1px;
    height: 36px;
    background: rgba(201, 168, 76, 0.2);
}
.booking-strip-action .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .booking-strip-inner {
        justify-content: center;
        gap: 18px;
    }
    .booking-strip-sep {
        display: none;
    }
    .booking-strip-col {
        min-width: 240px;
    }
    .booking-strip-action {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
    .booking-strip-action .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Hero Swiper Navigation */
.hero-swiper .swiper-pagination {
    bottom: 16px !important;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(10,22,40,0.5) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(201,168,76,0.3) !important;
    backdrop-filter: blur(10px);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===================================================
   SECTION COMMON
   =================================================== */
.section { padding: 70px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ===================================================
   ROOMS SECTION
   =================================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.16);
    border-color: var(--gold);
}
.room-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--navy);
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    z-index: 2;
}
.room-card-img-meta {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    background: rgba(10, 22, 40, 0.75);
    border: 1px solid rgba(201, 168, 76, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}
.room-card-img-meta i {
    color: var(--gold);
    margin-right: 2px;
}
.room-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.room-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}
.room-card-desc {
    color: var(--text-mid);
    font-size: 0.88rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.6;
}
.room-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}
.room-feature-tag {
    background: var(--cream);
    color: var(--text-dark);
    font-size: 0.72rem;
    padding: 4px 9px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}
.room-feature-tag i { color: var(--gold-dark); font-size: 0.7rem; }
.room-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--cream-dark);
}
.room-card-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 10px 6px;
    font-size: 0.82rem;
    white-space: nowrap;
    border-radius: 8px;
}

/* ===================================================
   GALLERY SECTION
   =================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,22,40,0.5); }
.gallery-item-overlay i {
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay i { opacity: 1; transform: scale(1); }

/* ===================================================
   FEATURES / WHY US
   =================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.feature-card:hover {
    background: rgba(201,168,76,0.08);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--gold); color: var(--navy); }
.feature-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.feature-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ===================================================
   RESERVATION CTA SECTION
   =================================================== */
.reservation-cta {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.reservation-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.reservation-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--white);
    margin-bottom: 12px;
}
.reservation-cta-title span { color: var(--gold); }
.reservation-cta-subtitle {
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

/* ===================================================
   RESERVATION FORM PAGE
   =================================================== */
.reservation-page { padding-top: 90px; }
.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0;
}
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
}
.form-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-card-subtitle {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    font-family: inherit;
}
.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Reservation Info Sidebar */
.reservation-info {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    color: var(--white);
}
.reservation-info-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
}
.reservation-info-list { display: flex; flex-direction: column; gap: 14px; }
.reservation-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.reservation-info-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    color: var(--white);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 46px;
    height: 46px;
    background: rgba(201,168,76,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}
.contact-info-value a { color: rgba(255,255,255,0.9); }
.contact-info-value a:hover { color: var(--gold); }

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 350px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%);
}

/* ===================================================
   GALLERY PAGE
   =================================================== */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    justify-content: center;
}
.filter-btn {
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid var(--cream-dark);
    color: var(--text-mid);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-nav:hover { background: rgba(201,168,76,0.3); }

/* ===================================================
   PAGE HEADER (inner pages)
   =================================================== */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-label {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 12px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.6); }
.page-hero-breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-img-wrapper img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.about-img-badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.about-img-badge-text { font-size: 0.7rem; font-weight: 600; margin-top: 2px; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.about-stat {
    text-align: center;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius);
}
.about-stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}
.about-stat-label { font-size: 0.75rem; color: var(--text-mid); margin-top: 4px; }

/* ===================================================
   ROOM DETAIL PAGE
   =================================================== */
.room-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0;
}
.room-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}
.room-main-img img { width: 100%; height: 100%; object-fit: cover; }
.room-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 10px;
}
.room-thumb {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.room-thumb.active { border-color: var(--gold); }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-info { display: flex; flex-direction: column; gap: 20px; }
.room-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--navy);
    font-weight: 700;
}
.room-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.room-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-mid);
    background: var(--cream);
    padding: 8px 14px;
    border-radius: 8px;
}
.room-meta-item i { color: var(--gold); }
.room-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.room-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-mid);
}
.room-feat-item i { color: var(--gold); }

/* ===================================================
   SEO PAGES
   =================================================== */
.seo-page-content { padding: 50px 0; }
.seo-content-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-mid);
}
.seo-content-box h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin: 24px 0 12px;
    font-weight: 600;
}
.seo-content-box h2:first-child { margin-top: 0; }
.seo-content-box p { margin-bottom: 14px; }
.seo-content-box strong { color: var(--navy); }
.seo-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--text-mid);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.seo-location-badge i { color: var(--gold); }

/* ===================================================
   SUCCESS PAGE
   =================================================== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--cream);
}
.success-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--white);
}
.success-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.success-text {
    color: var(--text-mid);
    margin-bottom: 28px;
    line-height: 1.7;
}
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}
.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.wa-btn i { font-size: 1.3rem; }

/* ===================================================
   FLOATING BUTTONS
   =================================================== */
.floating-btn {
    position: fixed;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-btn {
    bottom: 90px;
    background: #25d366;
    color: var(--white);
}
.call-btn {
    bottom: 24px;
    background: var(--gold);
    color: var(--navy);
}
.floating-btn:hover { transform: scale(1.1); }
.floating-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: var(--navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.floating-btn:hover .floating-tooltip { opacity: 1; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--navy); color: var(--white); }
.footer-top { padding: 60px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
.footer-logo {
    height: 56px;
    width: auto;
    max-width: 68px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
}
.footer-hotel-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { color: var(--gold); font-size: 0.7rem; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    line-height: 1.5;
}
.footer-contact li i { color: var(--gold); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 10px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { color: rgba(255,255,255,0.3); }

/* ===================================================
   ANIMATE ON SCROLL
   =================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===================================================
   UTILITIES
   =================================================== */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.d-none { display: none; }
.alert-danger { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 0.875rem; }

/* ===================================================
   RESPONSIVE — TABLET (768px+)
   =================================================== */
@media (min-width: 768px) {
    .section { padding: 90px 0; }
    .navbar-nav { display: flex; }
    .hamburger { display: none; }

    .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid .gallery-item.wide { grid-column: span 2; }
    .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrapper { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .reservation-wrapper { grid-template-columns: 1.4fr 1fr; }
    .room-detail-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ===================================================
   RESPONSIVE — DESKTOP (1200px+)
   =================================================== */
@media (min-width: 1200px) {
    .rooms-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .gallery-page-grid { grid-template-columns: repeat(4, 1fr); }
    .features-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* ===================================================
   MOBILE MENU (max 767px)
   =================================================== */
@media (max-width: 767px) {
    .navbar-nav {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: #091322 !important;
        border-left: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.75);
        flex-direction: column;
        align-items: flex-start;
        padding: 85px 20px 40px;
        z-index: 1001;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        gap: 6px;
        overflow-y: auto;
    }
    .navbar-nav.open {
        right: 0 !important;
    }
    .has-dropdown {
        width: 100%;
    }
    .has-dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.9);
        display: flex;
        align-items: center;
    }
    .nav-link:hover, .nav-link.active {
        color: var(--gold);
        background: rgba(212, 175, 55, 0.12);
    }
    .nav-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
        padding: 12px;
        font-size: 1rem;
    }
    .dropdown-menu {
        position: static;
        transform: none;
        display: none;
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(212, 175, 55, 0.15);
        background: rgba(255,255,255,0.04);
        border-radius: 8px;
        margin-top: 4px;
        padding: 4px 0;
    }
    .has-dropdown.open .dropdown-menu {
        display: block !important;
    }
    .reservation-cta { padding: 36px 20px; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .about-img-badge { right: 10px; }
}

/* ===================================================
   SCROLL BAR
   =================================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
