/* LUXURY BEIGE SAND & GOLD DESIGN SYSTEM */
:root {
    --bg-darker: #f2eee4;       /* Rich Luxury Warm Sand */
    --bg-dark: #e7e1d3;         /* Elegant Sand-Beige */
    --bg-card: #ffffff;          /* Solid Pure White for panels */
    --gold-primary: #cda252;     /* Warm Luxury Gold */
    --gold-dark: #a87e35;        /* Deep Gold Accent */
    --gold-light: #f3dfb6;       /* Bright Champagne Accent */
    --gold-gradient: linear-gradient(135deg, #cda252 0%, #a87e35 100%);
    --gold-glow: 0px 4px 20px rgba(205, 162, 82, 0.15);
    
    --text-light: #2c2924;       /* Deep Charcoal/Bronze text */
    --text-muted: #6b665c;       /* Muted Soft Bronze-Grey */
    --text-dark: #ffffff;        /* Pure White (used on buttons) */
    
    --border-glass: rgba(205, 162, 82, 0.25);  /* Gold tinted borders */
    --bg-glass: rgba(255, 255, 255, 0.9);
    --blur-glass: blur(12px);
    --shadow-premium: 0 15px 35px rgba(44, 41, 36, 0.06);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden !important;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* CUSTOM GOLD SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hidden {
    display: none !important;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0px 6px 25px rgba(205, 162, 82, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(205, 162, 82, 0.05);
    border-color: var(--gold-primary);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-text-gold {
    background: none;
    border: none;
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-text-gold:hover {
    color: var(--gold-dark);
}

/* GLASS PANEL */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

/* HEADER / NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(205, 162, 82, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-glass);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--text-light);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-top: 0.15rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold-primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    opacity: 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

/* HERO SECTION (CLEAN FLOATING TEXT REFED) */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-media-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.hero-media-container video, .hero-media-container img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-media-container .active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.4));
}

.hero-content {
    max-width: 700px;
    padding-left: 12%;
    z-index: 10;
    background: none;
    border: none;
    backdrop-filter: none;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--gold-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff; /* pure white text to pop on image */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title .highlight {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f0ebe0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* QUICK BOOKING BAR (PREMIUM DESIGN) */
.booking-bar-wrapper {
    position: relative;
    margin: 2rem auto 4rem auto; /* Sits perfectly below the hero photo */
    width: 95%;
    max-width: 1100px;
    z-index: 20;
}

.booking-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 60px; /* Luxury Pill Shape */
    padding: 0.6rem 0.6rem 0.6rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.booking-bar .input-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    position: relative;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-bar .input-group:nth-child(4) {
    border-right: none;
    padding-right: 1.5rem;
}

.booking-bar label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
}

.booking-bar label i {
    width: 14px;
    height: 14px;
    color: var(--gold-primary);
}

.booking-bar input[type="date"],
.booking-bar select {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    width: 100%;
    padding: 0;
    font-family: var(--font-body);
    box-shadow: none;
    appearance: none; /* Hide default dropdown arrow if possible */
}

/* Custom dropdown arrow for selects */
.booking-bar select {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23cda252" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: center;
    padding-right: 1.5rem;
}

.booking-bar input:focus, .booking-bar select:focus {
    color: var(--gold-dark);
}

.booking-bar .booking-submit {
    height: 54px;
    border-radius: 50px;
    padding: 0 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 1rem;
    box-shadow: 0 8px 20px rgba(205, 162, 82, 0.25);
    flex-shrink: 0;
    align-self: center;
}

/* HIGHLIGHT STATS SECTION (ARCH DESIGN) */
.highlights-section {
    padding: 2rem 0 5rem 0;
    background: var(--bg-darker);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 1rem;
}

.highlight-item {
    text-align: center;
    background: transparent;
    border: 1px solid rgba(205, 162, 82, 0.2);
    padding: 3.5rem 1rem 2rem 1rem;
    border-radius: 120px 120px 20px 20px; /* Stunning Arch Shape */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(205, 162, 82, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    border-color: rgba(205, 162, 82, 0.5);
    box-shadow: 0 20px 40px rgba(205, 162, 82, 0.08);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.highlight-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-dark);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

/* ROOMS GRID */
.rooms-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

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

.room-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-glass);
    background: #ffffff;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 41, 36, 0.05);
    border-color: var(--gold-primary);
}

/* INLINE CARD CAROUSEL SLIDER */
.room-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.card-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 10;
}

.room-card:hover .card-carousel-btn {
    opacity: 1;
    pointer-events: auto;
}

.card-carousel-btn:hover {
    background: #ffffff;
    color: var(--gold-dark);
}

.card-carousel-btn.prev {
    left: 10px;
}

.card-carousel-btn.next {
    right: 10px;
}

.room-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-glass);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    z-index: 5;
}

.room-price-badge .price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 800;
}

.room-price-badge .unit {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.room-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.room-card-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-weight: 400;
}

.room-details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.room-details-list li {
    font-size: 0.75rem;
    background: rgba(205, 162, 82, 0.06);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(205, 162, 82, 0.12);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.room-details-list li i {
    width: 12px;
    height: 12px;
    color: var(--gold-primary);
}

.btn-card-row {
    display: flex;
    gap: 1rem;
}

/* EXPERIENCES / FACILITIES SHOWCASE */
.experiences-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.experience-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.exp-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.exp-card.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.exp-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 15px 30px rgba(44, 41, 36, 0.04);
    border: 1px solid var(--border-glass);
}

.exp-img-wrapper img, .exp-img-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exp-content {
    display: flex;
    flex-direction: column;
}

.exp-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.exp-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

.exp-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* PROMOTIONS GRID */
.promotions-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.promo-card {
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    border: 1px solid var(--border-glass);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(205, 162, 82, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.promo-badge {
    align-self: flex-start;
    background: rgba(205, 162, 82, 0.08);
    border: 1px solid rgba(205, 162, 82, 0.22);
    color: var(--gold-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.promo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.promo-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.promo-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.promo-code-pill {
    font-family: monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--gold-dark);
    background: rgba(205, 162, 82, 0.05);
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    border: 1px dashed var(--border-glass);
}

/* FOOTER & LOCK LINK */
.resort-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 0 0;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-light);
    opacity: 0.9;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.4s ease;
    opacity: 0.9;
    padding: 0.5rem 0.8rem;
    gap: 0.5rem;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--border-glass);
}

.social-icons a .social-text {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.social-icons a svg {
    width: 30px;
    height: 30px;
    stroke-width: 2.2px;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-4px) scale(1.15);
    color: var(--gold-primary);
}

.social-icons a:hover svg {
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.4));
}

.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: var(--gold-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after, .footer-contact h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold-dark);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--gold-primary);
    font-size: 1.1em;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover {
    color: var(--gold-dark);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact p i {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
}

.footer-newsletter p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    flex-grow: 1;
}

.newsletter-form button {
    background: var(--gold-gradient);
    border: none;
    color: var(--text-dark);
    padding: 0 1.25rem;
    cursor: pointer;
    transition: filter 0.3s;
}

.newsletter-form button:hover {
    filter: brightness(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(205, 162, 82, 0.12);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

#secret-admin-trigger {
    cursor: pointer;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: auto;
    position: relative;
    z-index: 50;
}
#secret-admin-trigger:hover {
    opacity: 1;
    transform: scale(1.1);
}
#secret-admin-trigger i {
    width: 12px;
    height: 12px;
    color: var(--gold-primary);
}

/* WIZARD MODAL CONTAINER */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 41, 36, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 90%;
    max-width: 1100px;
    max-height: 90vh;
    background: var(--bg-darker);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(44, 41, 36, 0.12);
    overflow-y: auto;
    position: relative;
    padding: 3rem;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: var(--text-light);
}

/* WIZARD PROGRESS */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(205, 162, 82, 0.15);
    z-index: 1;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.wizard-step .step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(205, 162, 82, 0.25);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.wizard-step .step-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.wizard-step.active .step-num {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(205, 162, 82, 0.25);
}

.wizard-step.active .step-label {
    color: var(--text-light);
}

.wizard-step.completed .step-num {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    color: var(--text-dark);
}

/* WIZARD CONTENT STEPS */
.wizard-content-step {
    display: none;
}

.wizard-content-step.active-step {
    display: block;
}

.wizard-content-step h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.step-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.booking-date-summary-banner {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.booking-date-summary-banner .banner-item {
    display: flex;
    flex-direction: column;
}

.booking-date-summary-banner .banner-item .label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.booking-date-summary-banner .banner-item .val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
}

.wizard-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wizard-room-row {
    display: flex;
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s;
}

.wizard-room-row:hover {
    box-shadow: 0 8px 25px rgba(44, 41, 36, 0.04);
    border-color: var(--gold-primary);
}

.wizard-room-img {
    width: 250px;
    height: 180px;
    object-fit: cover;
}

.wizard-room-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.wizard-room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.wizard-room-header h4 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.wizard-room-header .occupancy {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.wizard-room-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 600px;
}

.wizard-room-amenities {
    display: flex;
    gap: 0.5rem;
}

.wizard-room-amenities span {
    font-size: 0.65rem;
    background: rgba(205, 162, 82, 0.06);
    border: 1px solid rgba(205, 162, 82, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    color: var(--text-muted);
}

.wizard-room-action {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-left: 1px solid rgba(205, 162, 82, 0.15);
    min-width: 180px;
}

.wizard-room-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.wizard-room-price-total {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ADDONS */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.addon-card {
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 2rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s;
}

.addon-card:hover {
    border-color: var(--gold-primary);
}

.addon-card.selected {
    background: rgba(205, 162, 82, 0.03);
    border-color: var(--gold-dark);
}

.addon-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(205, 162, 82, 0.08);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.addon-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.addon-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.addon-price {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.wizard-footer-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid rgba(205, 162, 82, 0.15);
    padding-top: 2rem;
}

/* CHECKOUT STEP */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
}

.checkout-inputs-panel {
    display: flex;
    flex-direction: column;
}

.checkout-inputs-panel h4 {
    color: var(--gold-dark);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.form-separator {
    border: none;
    border-top: 1px solid rgba(205, 162, 82, 0.15);
    margin: 2.5rem 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.form-group-triple {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea, .form-group select {
    background: #ffffff;
    border: 1px solid rgba(205, 162, 82, 0.25);
    color: var(--text-light);
    padding: 0.85rem 1rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(205, 162, 82, 0.15);
}

.payment-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* AMENITIES CHECKBOX GRID */
.amenities-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(205, 162, 82, 0.25);
    padding: 1rem;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.chk-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500 !important;
    color: var(--text-light) !important;
    text-transform: none !important;
    cursor: pointer;
}

.chk-label input {
    cursor: pointer;
    accent-color: var(--gold-primary);
}

/* CARD SIMULATOR */
.card-simulator-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.flip-card {
    background-color: transparent;
    width: 320px;
    height: 190px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.glass-card {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid rgba(205, 162, 82, 0.35);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(243, 223, 182, 0.2) 100%);
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(44, 41, 36, 0.08);
}

.flip-card-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.flip-card-back {
    transform: rotateY(180deg);
    padding: 1.5rem 0;
}

.card-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold-dark);
    text-align: right;
    letter-spacing: 1px;
}

.card-chip {
    width: 36px;
    height: 28px;
    background: var(--gold-gradient);
    border-radius: 4px;
}

.card-number-display {
    font-family: monospace;
    font-size: 1.15rem;
    letter-spacing: 2.5px;
    color: var(--text-light);
    margin: 1rem 0;
}

.card-details-row {
    display: flex;
    justify-content: space-between;
}

.card-details-row .lbl {
    display: block;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.card-details-row .val {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
}

.magnetic-strip {
    width: 100%;
    height: 38px;
    background: #2c2924;
}

.signature-bar {
    width: 80%;
    height: 30px;
    background: rgba(205, 162, 82, 0.15);
    margin-left: 1rem;
    border-radius: 2px;
}

.cvv-display-block {
    text-align: right;
    padding-right: 2rem;
}

.cvv-display-block .lbl {
    display: block;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.cvv-display-block .val {
    font-family: monospace;
    font-size: 0.85rem;
    background: var(--text-light);
    color: var(--text-dark);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
}

/* BILL SUMMARY PANEL */
.checkout-summary-panel {
    background: #ffffff;
    color: var(--text-light);
    border: 1px solid rgba(205, 162, 82, 0.4);
    border-radius: 12px;
    padding: 2.5rem;
    align-self: flex-start;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 5px 15px rgba(205, 162, 82, 0.05);
    position: relative;
    overflow: hidden;
}

.checkout-summary-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(205, 162, 82, 0.08), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.checkout-summary-panel > * {
    position: relative;
    z-index: 1;
}

.checkout-summary-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(205, 162, 82, 0.2);
    padding-bottom: 1rem;
}

.selected-room-bill-preview {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.selected-room-bill-preview h4 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-family: var(--font-heading);
}

.bill-room-dates {
    font-size: 0.95rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.bill-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.bill-row, .checkout-line-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    align-items: center;
}

.bill-row .label, .checkout-line-item span:first-child {
    color: var(--text-light);
    font-weight: 600;
}

.bill-row .val, .checkout-line-item span:last-child {
    font-weight: 800;
    color: var(--text-light);
    font-family: monospace;
    font-size: 1.15rem;
}

.bill-divider {
    border: none;
    border-top: 1px solid rgba(205, 162, 82, 0.3);
    margin: 1.5rem 0;
}

.bill-row.total-row {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(205, 162, 82, 0.4);
}

.bill-row.total-row .label {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bill-row.total-row .val {
    color: var(--text-light);
    font-weight: 800;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.promo-code-section {
    border-top: 1px solid rgba(205, 162, 82, 0.15);
    padding-top: 1.5rem;
}

.promo-code-section label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
}

.promo-input-group input {
    background: #ffffff;
    border: 1px solid rgba(205, 162, 82, 0.25);
    color: var(--text-light);
    padding: 0.65rem 0.85rem;
    border-radius: 4px;
    font-family: monospace;
    outline: none;
    width: 60%;
}

.promo-input-group input:focus {
    border-color: var(--gold-primary);
}

.promo-status-msg {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

.promo-status-msg.success {
    color: #2b8a3e;
}

.promo-status-msg.error {
    color: #c92a2a;
}

/* SUCCESS SCREEN */
.success-screen {
    text-align: center;
    padding: 2rem 0;
}

.success-check-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(43, 138, 62, 0.1);
    color: #2b8a3e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.success-check-icon i {
    width: 42px;
    height: 42px;
}

.success-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0.5rem auto 2.5rem auto;
}

.receipt-box {
    max-width: 550px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    border-radius: 6px;
    text-align: left;
    background: #ffffff;
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(205, 162, 82, 0.15);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.receipt-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
}

.receipt-tag {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.receipt-id .lbl {
    display: block;
    font-size: 0.55rem;
    color: var(--text-muted);
}

.receipt-id .val {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--gold-dark);
}

.receipt-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.receipt-details .r-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.receipt-details .lbl {
    color: var(--text-muted);
}

.receipt-details .val {
    font-weight: 600;
}

/* VIEW SWITCHING CLASSES */
.view-active {
    display: block;
}
.view-hidden {
    display: none !important;
}

/* ADMIN PANEL PAGE */
.admin-login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-darker);
}

.admin-login-box {
    width: 100%;
    max-width: 420px;
    padding: 3rem;
    position: relative;
    background: #ffffff;
}

.btn-back-to-home {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.3s;
}

.btn-back-to-home:hover {
    color: var(--gold-primary);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-shield-icon {
    width: 48px;
    height: 48px;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.login-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.input-with-icon input {
    padding-left: 2.5rem !important;
    width: 100%;
}

.error-msg-box {
    background: rgba(201, 42, 42, 0.1);
    border: 1px solid rgba(201, 42, 42, 0.3);
    color: #c92a2a;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ADMIN DASHBOARD PANELS */
.admin-dashboard-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    height: 100vh;
    background-color: var(--bg-darker);
}

.admin-sidebar {
    background: #ffffff;
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 0;
}

.sidebar-brand {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.sidebar-tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 0.85rem 1.5rem;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.sidebar-tab-btn i {
    width: 18px;
    height: 18px;
}

.sidebar-tab-btn:hover, .sidebar-tab-btn.active {
    color: var(--gold-primary);
    background: rgba(205, 162, 82, 0.04);
    border-left-color: var(--gold-primary);
}

.sidebar-footer {
    padding: 0 1.5rem;
}

.admin-content-area {
    padding: 3rem;
    overflow-y: auto;
}

.admin-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(205, 162, 82, 0.15);
    padding-bottom: 1.5rem;
}

.admin-content-header h2 {
    font-size: 1.8rem;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

/* METRICS PANEL */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.metric-card {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #ffffff;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(205, 162, 82, 0.08);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    width: 24px;
    height: 24px;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.metric-value {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 600;
}

.dashboard-block {
    padding: 2rem;
    background: #ffffff;
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.block-header h3 {
    font-size: 1.15rem;
}

/* TABLES FOR ADMIN */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(205, 162, 82, 0.15);
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 1.25rem 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(205, 162, 82, 0.12);
}

.admin-table tr:hover td {
    background: rgba(205, 162, 82, 0.02);
}

.suite-meta-col {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.suite-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--border-glass);
}

.suite-name-details {
    display: flex;
    flex-direction: column;
}

.suite-name-details span {
    font-weight: 600;
}

.suite-name-details small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.rate-adjuster-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rate-adjuster-input input {
    background: #ffffff;
    border: 1px solid rgba(205, 162, 82, 0.25);
    color: var(--text-light);
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    width: 90px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    text-align: right;
}

.rate-adjuster-input input:focus {
    border-color: var(--gold-primary);
}

.btn-icon-save {
    background: var(--gold-gradient);
    border: none;
    color: var(--text-dark);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.btn-icon-save:hover {
    opacity: 1;
}

.admin-action-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.btn-action.view { color: #3b82f6; border-color: rgba(59, 130, 246, 0.3); background: #f0f7ff; }
.btn-action.view:hover { background: #dbeafe; }

.btn-action.edit { color: #d97706; border-color: rgba(217, 119, 6, 0.3); background: #fffbeb; }
.btn-action.edit:hover { background: #fef3c7; }

.btn-action.delete { color: #dc2626; border-color: rgba(220, 38, 38, 0.3); background: #fef2f2; }
.btn-action.delete:hover { background: #fee2e2; }

/* TOGGLE TABS */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 41, 36, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: #ffffff;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--gold-primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.status-badge {
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.confirmed {
    background: rgba(43, 138, 62, 0.1);
    color: #2b8a3e;
}

.status-badge.active {
    background: rgba(205, 162, 82, 0.1);
    color: var(--gold-dark);
}

.status-badge.disabled {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
}

/* ADMIN LAYOUT COLUMNS */
.admin-layout-columns {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: flex-start;
}

.sidebar-form {
    padding: 2rem;
    background: #ffffff;
}

.sidebar-form h3 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--gold-dark);
}

.photo-upload-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upload-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.upload-item label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

.upload-item input {
    font-size: 0.75rem;
    border: 1px solid rgba(205, 162, 82, 0.25);
    padding: 0.25rem;
    border-radius: 4px;
    width: 100%;
}

/* ROOM GALLERY LIGHTBOX MODAL */
.gallery-modal-container {
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(44, 41, 36, 0.15);
    position: relative;
    text-align: center;
}

.gallery-main-view {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000000;
    border-radius: 6px;
    overflow: hidden;
    margin: 1.5rem 0 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-view img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: #ffffff;
    color: var(--gold-dark);
    box-shadow: 0 0 10px rgba(205, 162, 82, 0.2);
}

.gallery-nav-btn.prev {
    left: 15px;
}

.gallery-nav-btn.next {
    right: 15px;
}

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.gallery-thumb {
    width: 80px;
    height: 55px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s;
}

.gallery-thumb:hover, .gallery-thumb.active {
    opacity: 1;
    border-color: var(--gold-primary);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight-item:nth-child(2) {
        border-right: none;
    }
    .booking-bar {
        grid-template-columns: 1fr 1fr;
    }
    .booking-bar .booking-submit {
        grid-column: span 2;
    }
    .exp-card, .exp-card.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .exp-card.reverse .exp-content {
        order: 2;
    }
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .admin-layout-columns {
        grid-template-columns: 1fr;
    }
    .admin-dashboard-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
        height: auto;
    }
    .sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .sidebar-tab-btn {
        padding: 0.85rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        flex: 0 0 auto;
    }
    .sidebar-tab-btn:hover, .sidebar-tab-btn.active {
        border-left-color: transparent;
        border-bottom-color: var(--gold-primary);
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .admin-table {
        min-width: 600px; /* Forces scroll instead of squishing on mobile */
    }
    .admin-action-group {
        flex-direction: column;
    }
    .admin-action-group .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-links.active-mobile {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-glass);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 200;
    }
    #nav-link-inquire {
        display: block !important;
    }
    #btn-header-inquire {
        display: none !important;
    }
    
    #btn-header-book {
        display: none !important;
    }
    
    #btn-mobile-menu-book {
        display: block !important;
    }
    
    .mobile-inquiry-banner {
        display: block !important;
        margin-top: 1rem;
    }
    
    body {
        padding-bottom: 0;
    }
    
    /* Reduce modal padding on mobile to prevent squishing */
    .modal-container {
        padding: 1.5rem !important;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-content {
        padding: 0 1.5rem;
    }
    .booking-bar-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        padding: 0 1.5rem;
        margin-top: 1rem;
    }
    .booking-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    .booking-bar .booking-submit {
        grid-column: 1;
        margin-top: 1rem;
    }
    .rooms-section {
        padding-top: 3rem;
    }
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .highlight-item {
        border-right: none;
        border-bottom: 1px solid rgba(205, 162, 82, 0.15);
    }
    .highlight-item:last-child {
        border-bottom: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .wizard-progress {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
        justify-content: flex-start;
    }
    .wizard-room-row {
        flex-direction: column;
    }
    .wizard-room-img {
        width: 100%;
        height: 220px;
    }
    .wizard-room-action {
        border-left: none;
        border-top: 1px solid rgba(205, 162, 82, 0.15);
        align-items: center;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .wizard-room-price-total {
        margin-bottom: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .booking-date-summary-banner {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .booking-date-summary-banner .banner-item {
        flex: 1 1 40%;
    }
    
    /* Global Flex Overrides for Mobile */
    .form-group[style*="display: flex"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .form-group[style*="display: flex"] > div {
        width: 100% !important;
        flex: none !important;
    }
    
    .glass-panel[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .block-header[style*="display: flex"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .wizard-footer-nav[style*="display: flex"] {
        flex-direction: column-reverse !important;
        gap: 1rem !important;
    }
    
    .wizard-footer-nav button {
        width: 100% !important;
    }
    
    #category-select-container[style*="display: flex"],
    div[style*="display: flex; gap: 0.5rem; align-items: center;"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    #gallery-media-container[style*="display: flex"] {
        padding: 1rem !important;
    }
}

/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--text-muted);
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
input:checked + .slider {
  background-color: var(--gold-primary);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--gold-primary);
}
input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}

/* Print Styles for Admin Reports */
@media print {
    body * {
        visibility: hidden;
    }
    
    #tab-bookings.active, 
    #tab-bookings.active *,
    #admin-bookings-panel,
    #admin-bookings-panel * {
        visibility: visible;
    }
    
    #admin-bookings-panel {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        background: white;
        box-shadow: none;
        border: none;
    }

    /* Hide filters and print button during printing */
    .booking-filters,
    #admin-bookings-panel .btn-secondary {
        display: none !important;
    }

    .admin-table {
        width: 100%;
        border-collapse: collapse;
    }

    .admin-table th, .admin-table td {
        border: 1px solid #ddd;
        padding: 8px;
        font-size: 10pt;
    }

    .status-badge {
        border: 1px solid currentColor;
        background: transparent !important;
    }
}

/* QUICK TOGGLE SWITCHES */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--gold-primary);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--gold-primary);
}

input:checked + .slider:before {
    transform: translateX(22px);
}

@media print {
    body * {
        visibility: hidden;
    }
    .receipt-box, .receipt-box * {
        visibility: visible !important;
    }
    .receipt-box {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        margin: 0;
        box-shadow: none;
        border: 1px solid #000000 !important;
        background: #ffffff !important;
        color: #000000 !important;
        padding: 2rem !important;
    }
    #receipt-hotel-name, .receipt-brand {
        color: #000000 !important;
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        display: block !important;
    }
    #receipt-hotel-details, .receipt-hotel-details {
        color: #333333 !important;
        font-size: 0.9rem !important;
        display: block !important;
    }
    .receipt-tag {
        color: #666666 !important;
    }
    .receipt-id .lbl {
        color: #666666 !important;
    }
    .receipt-id .val {
        color: #000000 !important;
        font-weight: bold !important;
    }
    .r-row .lbl {
        color: #444444 !important;
    }
    .r-row .val {
        color: #000000 !important;
        font-weight: 600 !important;
    }
    .r-row .val.text-gold {
        color: #000000 !important;
    }
    .receipt-terms {
        display: block !important;
        color: #444444 !important;
        border-top: 1px solid #000000 !important;
    }
}
