/* ═══════════════════════════════════════════════════════
   GOLDEN HILL VIEW RESORT — resort.css
   Theme: Deep Forest Green + Warm Gold + Ivory
   Font: Playfair Display (display) + Raleway (body)
═══════════════════════════════════════════════════════ */

:root {
    --forest-dark:   #0d2218;
    --forest-deep:   #1a3a2a;
    --forest-mid:    #2d5a3d;
    --forest-light:  #4a8c5c;
    --gold-rich:     #c9973a;
    --gold-light:    #e8c068;
    --gold-pale:     #f5e6c4;
    --ivory:         #fdf9f1;
    --white:         #ffffff;
    --text-dark:     #1a1a1a;
    --text-mid:      #444444;
    --text-light:    #777777;
    --shadow-soft:   0 8px 32px rgba(0,0,0,0.12);
    --shadow-deep:   0 16px 64px rgba(0,0,0,0.22);
    --radius-card:   16px;
    --radius-btn:    50px;
    --transition:    all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--ivory);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--forest-deep);
}

.text-gold { color: var(--gold-rich); }
.bg-forest { background: var(--forest-deep); }

/* ─────────────────────────────────────────────────────
   ANNOUNCEMENT BAR
───────────────────────────────────────────────────── */
.announcement-bar {
    background: linear-gradient(90deg, var(--forest-deep), var(--forest-mid), var(--forest-deep));
    color: var(--gold-pale);
    font-size: 0.8rem;
    padding: 12px 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--gold-rich);
}
.announcement-bar i { color: var(--gold-rich); }

/* ─────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────── */
.resort-navbar {
    background: rgba(13, 34, 24, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--gold-rich);
    padding: 12px 0;
    transition: var(--transition);
}

.resort-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Brand */
.resort-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--forest-dark);
    transition: var(--transition);
}
.resort-brand:hover .brand-icon { transform: rotate(-8deg) scale(1.08); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.3px;
}
.brand-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--gold-rich);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav links */
.resort-navbar .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}
.resort-navbar .nav-link::after {
    content: '';
    position: absolute; bottom: 4px; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold-rich);
    transition: var(--transition);
    border-radius: 2px;
}
.resort-navbar .nav-link:hover::after,
.resort-navbar .nav-link.active::after { left: 14%; right: 14%; }
.resort-navbar .nav-link:hover,
.resort-navbar .nav-link.active { color: var(--gold-light) !important; }

.btn-book-now {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light)) !important;
    color: var(--forest-dark) !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-btn) !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(201,151,58,0.45);
    transition: var(--transition) !important;
}
.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,151,58,0.6) !important;
}
.btn-book-now::after { display: none !important; }

.navbar-toggler { border-color: var(--gold-rich); }
.navbar-toggler-icon { filter: invert(1); }

/* ─────────────────────────────────────────────────────
   HERO SLIDER (Home Page)
───────────────────────────────────────────────────── */
.hero-slider {
    position: relative;
    height: 95vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s ease;
    transform: scale(1.06);
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(13,34,24,0.72) 0%,
        rgba(13,34,24,0.35) 50%,
        rgba(0,0,0,0.25) 100%
    );
}

.hero-content {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    padding: 0 5%;
}
.hero-text-box { max-width: 680px; }

.hero-eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-title span { color: var(--gold-light); }
.hero-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 24px rgba(201,151,58,0.5);
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201,151,58,0.65);
    color: var(--forest-dark);
}
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.7);
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
}

/* Slider dots */
.slider-dots {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%; cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}
.slider-dot.active {
    background: var(--gold-rich);
    transform: scale(1.3);
    width: 28px;
    border-radius: 6px;
}

/* Slider arrows */
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    width: 52px; height: 52px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--gold-rich); border-color: var(--gold-rich); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ─────────────────────────────────────────────────────
   SECTION COMMON STYLES
───────────────────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-rich);
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--forest-deep);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title span { color: var(--gold-rich); }
.section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold-rich), var(--gold-light));
    border-radius: 2px;
    margin: 0 auto 20px;
}
.section-divider.left { margin-left: 0; }
.section-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 560px;
}
.section-subtitle.center { margin: 0 auto; text-align: center; }

/* ─────────────────────────────────────────────────────
   WELCOME / INTRO SECTION
───────────────────────────────────────────────────── */
.welcome-section { background: var(--white); }
.welcome-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
    border-radius: var(--radius-card);
    overflow: hidden;
}
.wi-main {
    grid-column: 1;
    grid-row: 1 / 3;
}
.welcome-image-grid img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.welcome-image-grid div:hover img { transform: scale(1.05); }
.welcome-image-grid div { overflow: hidden; }

.welcome-features { margin-top: 28px; }
.welcome-feature-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px;
}
.wf-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--forest-dark);
}
.wf-text h6 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 3px; }
.wf-text p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

/* ─────────────────────────────────────────────────────
   NATURE HIGHLIGHTS (image grid on home)
───────────────────────────────────────────────────── */
.nature-section {
    background: linear-gradient(180deg, var(--forest-dark) 0%, var(--forest-deep) 100%);
    position: relative;
    overflow: hidden;
}
.nature-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.nature-section .section-title { color: var(--white); }
.nature-section .section-subtitle { color: rgba(255,255,255,0.75); }

.nature-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-deep);
    transition: var(--transition);
}
.nature-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.nature-card img {
    width: 100%; height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.nature-card:hover img { transform: scale(1.08); }
.nature-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(13,34,24,0.92) 0%, transparent 100%);
    padding: 24px 20px 20px;
}
.nature-card-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-light);
    display: block; margin-bottom: 4px;
}
.nature-card h5 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

/* ─────────────────────────────────────────────────────
   ROOMS CARDS
───────────────────────────────────────────────────── */
.room-card {
    border: none;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    background: var(--white);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.room-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.room-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.07); }
.room-badge {
    position: absolute; top: 14px; left: 14px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    font-size: 0.72rem; font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.room-card-body { padding: 22px; }
.room-card-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; margin-bottom: 8px;
}
.room-amenities {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 12px 0;
}
.amenity-tag {
    background: var(--gold-pale);
    color: var(--forest-mid);
    font-size: 0.72rem; font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.room-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-rich);
    font-weight: 700;
}
.room-price small {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}
.btn-room-book {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    border: none;
    transition: var(--transition);
    display: inline-block;
}
.btn-room-book:hover {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
}

/* ─────────────────────────────────────────────────────
   TARIFF TABLE
───────────────────────────────────────────────────── */
.tariff-table {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.tariff-table thead {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    color: var(--white);
}
.tariff-table thead th {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 20px;
    border: none;
    color: var(--gold-light);
}
.tariff-table tbody td {
    padding: 14px 20px;
    border-color: var(--gold-pale);
    font-size: 0.9rem;
    vertical-align: middle;
}
.tariff-table tbody tr:hover { background: var(--gold-pale); }
.price-cell {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--forest-mid);
}
.price-cell.peak { color: var(--gold-rich); }

/* ─────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────── */
.gallery-grid {
    columns: 4 200px;
    column-gap: 12px;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(13,34,24,0.6);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
    transform: scale(0.7);
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Lightbox */
.lightbox-modal .modal-content {
    background: var(--forest-dark);
    border: none;
}
.lightbox-modal .modal-body { padding: 0; }
.lightbox-modal img { width: 100%; border-radius: 8px; }

/* ─────────────────────────────────────────────────────
   FACILITIES
───────────────────────────────────────────────────── */
.facility-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    height: 100%;
}
.facility-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-bottom-color: var(--gold-rich);
}
.facility-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--gold-pale), #f0d9a4);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-rich);
    transition: var(--transition);
}
.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    transform: rotate(-5deg) scale(1.1);
}
.facility-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; margin-bottom: 10px;
}
.facility-card p { font-size: 0.87rem; color: var(--text-mid); }

/* ─────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────── */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}
.form-control, .form-select {
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--ivory);
}
.form-control:focus, .form-select:focus {
    border-color: var(--forest-mid);
    box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
    background: var(--white);
}
.form-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--forest-deep);
    margin-bottom: 6px;
}
.btn-submit-form {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 36px;
    border-radius: var(--radius-btn);
    border: none;
    width: 100%;
    transition: var(--transition);
    letter-spacing: 0.5px;
}
.btn-submit-form:hover {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    transform: translateY(-2px);
}
.contact-info-card {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    border-radius: var(--radius-card);
    padding: 36px 30px;
    color: var(--white);
    height: 100%;
}
.contact-info-card h4 { color: var(--gold-light); margin-bottom: 24px; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 20px;
}
.contact-info-item .ci-icon {
    width: 42px; height: 42px; min-width: 42px;
    background: rgba(201,151,58,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--gold-light);
}
.contact-info-item .ci-text { font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.contact-info-item .ci-text strong { color: var(--gold-light); display: block; margin-bottom: 2px; }

/* ─────────────────────────────────────────────────────
   STATS COUNTER SECTION
───────────────────────────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--forest-dark), var(--forest-deep));
    border-top: 2px solid var(--gold-rich);
    border-bottom: 2px solid var(--gold-rich);
}
.stat-item { text-align: center; padding: 40px 20px; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.stat-divider {
    width: 1px;
    background: rgba(201,151,58,0.3);
    margin: 0 auto;
}

/* ─────────────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────────────── */
.testimonials-section { background: var(--gold-pale); }
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold-pale);
    position: absolute;
    top: -10px; left: 20px;
    line-height: 1;
}
.stars { color: var(--gold-rich); font-size: 0.85rem; margin-bottom: 12px; }
.testimonial-text {
    font-style: italic;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.92rem;
}
.testimonial-author {
    display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--forest-mid), var(--forest-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
}
.testimonial-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    margin-bottom: 1px;
}
.testimonial-author-loc { font-size: 0.78rem; color: var(--text-light); }

/* ─────────────────────────────────────────────────────
   PAGE HERO (Inner pages)
───────────────────────────────────────────────────── */
.page-hero {
    height: 380px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    transition: transform 6s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-content {
    position: relative; z-index: 2;
    text-align: center; width: 100%;
}
.page-hero-eyebrow {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}
.breadcrumb-resort {
    display: flex; justify-content: center;
    gap: 6px; align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}
.breadcrumb-resort a { color: var(--gold-light); text-decoration: none; }
.breadcrumb-resort span { color: var(--gold-rich); }

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.resort-footer { background: var(--forest-dark); }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; display: block; }
.footer-main { padding: 60px 0 40px; }
.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-light);
    font-size: 1.3rem;
    margin: 12px 0 8px;
}
.footer-logo-icon {
    font-size: 2rem;
    color: var(--gold-rich);
}
.footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; }
.footer-social {
    display: flex; gap: 10px; margin-top: 18px;
}
.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);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover {
    background: var(--gold-rich);
    color: var(--forest-dark);
    border-color: var(--gold-rich);
    transform: translateY(-3px);
}
.footer-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold-rich);
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li, .footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-list {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-contact-list li {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact-list i { margin-top: 3px; min-width: 14px; }
.btn-footer-book {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 11px 24px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
}
.btn-footer-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,151,58,0.5);
    color: var(--forest-dark);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}
.footer-bottom strong { color: var(--gold-rich); }
.footer-bottom p { margin: 0; }

/* ─────────────────────────────────────────────────────
   BACK TO TOP
───────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 123px; right: 28px;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    border: none; border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(201,151,58,0.5);
    display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); }

/* ─────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.float-anim { animation: float 3.5s ease-in-out infinite; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-slider { height: 70vh; }
    .gallery-grid { columns: 2 160px; }
    .welcome-image-grid { grid-template-rows: 160px 160px; }
}
@media (max-width: 767px) {
    .section-pad { padding: 60px 0; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 0.95rem; }
    .btn-hero-primary, .btn-hero-outline { padding: 12px 22px; font-size: 0.88rem; }
    .gallery-grid { columns: 2 120px; }
    .slider-arrow { width: 40px; height: 40px; font-size: 0.95rem; }
    .contact-form-box { padding: 24px; }
    .stat-number { font-size: 2rem; }
}

/* ─────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────── */
.about-story-img {
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    position: relative;
}
.about-story-img img { width: 100%; display: block; }
.about-badge {
    position: absolute;
    bottom: -20px; right: 20px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.about-badge .big-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge small { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════════════
   WILDLIFE & NATURE SECTION — Animated Cards
═══════════════════════════════════════════════════════ */

/* ── Base Wildlife Card ── */
.wildlife-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}
.wildlife-card:hover {
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}

/* Heights */
.wildlife-tall { height: 480px; }
.wildlife-wide { height: 220px; }
.wildlife-sq   { height: 245px; }

/* Background pan animation */
.wc-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
    transform: scale(1.08);
}
.wildlife-card:hover .wc-bg { transform: scale(1.18); }

/* Gradient overlay */
.wc-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        0deg,
        rgba(10,25,16,0.88) 0%,
        rgba(10,25,16,0.22) 55%,
        rgba(0,0,0,0.08) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px 20px 20px;
    transition: background 0.4s ease;
}
.wildlife-card:hover .wc-overlay {
    background: linear-gradient(
        0deg,
        rgba(10,25,16,0.96) 0%,
        rgba(10,25,16,0.35) 60%,
        rgba(0,0,0,0.1) 100%
    );
}

.wc-badge {
    position: absolute;
    top: 16px; right: 16px;
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--forest-dark);
    box-shadow: 0 4px 16px rgba(201,151,58,0.5);
    z-index: 3;
    transition: transform 0.3s ease;
}
.wildlife-card:hover .wc-badge { transform: rotate(-8deg) scale(1.15); }

.wc-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    display: block;
    margin-bottom: 4px;
}
.wc-text h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}
.wildlife-card:hover .wc-text h4 { color: var(--gold-light); }
.wc-text p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.78);
    margin: 0;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
    opacity: 0;
}
.wildlife-card:hover .wc-text p { max-height: 80px; opacity: 1; }

/* ── Elephant Walking SVG Animation ── */
.wc-particle-layer {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 2;
    display: flex; align-items: flex-end;
}
.animal-walk-svg {
    position: absolute;
    bottom: 80px;
    width: 200px;
    animation: elephantWalk 12s linear infinite;
    opacity: 0.55;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}
@keyframes elephantWalk {
    0%   { left: -220px; }
    100% { left: 110%; }
}

/* Leg bob animation */
.leg-fl { animation: legBob 0.7s ease-in-out infinite alternate; }
.leg-fr { animation: legBob 0.7s ease-in-out 0.175s infinite alternate; }
.leg-rl { animation: legBob 0.7s ease-in-out 0.35s infinite alternate; }
.leg-rr { animation: legBob 0.7s ease-in-out 0.525s infinite alternate; }
@keyframes legBob {
    from { transform: scaleY(1) translateY(0); }
    to   { transform: scaleY(0.88) translateY(2px); }
}

/* ── Birds Flying SVG Animation ── */
.birds-container {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.bird-svg {
    position: absolute;
    opacity: 0;
    animation: birdFly linear infinite;
}
.b1 { width: 55px; top: 22%; animation-duration: 8s;  animation-delay: 0s;   }
.b2 { width: 35px; top: 38%; animation-duration: 11s; animation-delay: 2s;   }
.b3 { width: 26px; top: 18%; animation-duration: 9s;  animation-delay: 4s;   }
.b4 { width: 44px; top: 52%; animation-duration: 13s; animation-delay: 1.5s; }
.b5 { width: 22px; top: 30%; animation-duration: 7s;  animation-delay: 3.5s; }

@keyframes birdFly {
    0%   { left: -80px; opacity: 0; transform: translateY(0px) rotate(0deg); }
    5%   { opacity: 1; }
    45%  { transform: translateY(-12px) rotate(-2deg); }
    55%  { transform: translateY(8px) rotate(1deg); }
    95%  { opacity: 1; }
    100% { left: 110%; opacity: 0; transform: translateY(-6px) rotate(-1deg); }
}

/* ── Mist Rising Particles (Forest card) ── */
.mist-layer {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.mist-particle {
    position: absolute;
    bottom: 0;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
    animation: mistRise 6s ease-in-out infinite;
    filter: blur(12px);
}
.mp1 { left: 10%;  animation-delay: 0s;   animation-duration: 7s;  width: 100px; height: 100px; }
.mp2 { left: 40%;  animation-delay: 2.5s; animation-duration: 9s;  width: 140px; height: 140px; }
.mp3 { left: 70%;  animation-delay: 1.2s; animation-duration: 6s;  width: 90px;  height: 90px;  }
@keyframes mistRise {
    0%   { transform: translateY(0) scale(0.8); opacity: 0; }
    30%  { opacity: 0.7; }
    100% { transform: translateY(-200px) scale(1.6); opacity: 0; }
}

/* ── Water Ripple Rings (River card) ── */
.ripple-layer {
    position: absolute;
    bottom: 30%; left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}
.ripple-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 60px; height: 24px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(0);
    animation: rippleExpand 3.5s ease-out infinite;
}
.rr1 { animation-delay: 0s; }
.rr2 { animation-delay: 1.15s; }
.rr3 { animation-delay: 2.3s; }
@keyframes rippleExpand {
    0%   { transform: translate(-50%,-50%) scale(0); opacity: 0.9; }
    100% { transform: translate(-50%,-50%) scale(4.5); opacity: 0; }
}

/* ── Wildlife Strip (5 animals row) ── */
.wildlife-strip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,151,58,0.2);
    border-radius: 18px;
    padding: 22px 24px;
    backdrop-filter: blur(8px);
}
.ws-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}
.ws-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-rich) transparent;
}
.ws-cards::-webkit-scrollbar { height: 4px; }
.ws-cards::-webkit-scrollbar-thumb { background: var(--gold-rich); border-radius: 4px; }

.ws-card {
    flex: 0 0 170px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}
.ws-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.ws-img-wrap {
    position: relative;
    height: 120px;
    overflow: hidden;
}
.ws-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ws-card:hover .ws-img-wrap img { transform: scale(1.12); }

/* Pulsing "live" ring on each animal card */
.ws-pulse-ring {
    position: absolute;
    top: 8px; left: 8px;
    width: 12px; height: 12px;
}
.ws-pulse-ring::before,
.ws-pulse-ring::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold-rich);
    transform: translate(-50%,-50%);
}
.ws-pulse-ring::before {
    animation: pulseLive 2s ease-out infinite;
    opacity: 0.6;
}
.ws-pulse-ring::after {
    width: 6px; height: 6px;
    background: var(--gold-light);
}
@keyframes pulseLive {
    0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}

.ws-info {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ws-dot {
    font-size: 0.5rem;
    color: var(--gold-rich);
    animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.35; }
}
.ws-name {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
}
.ws-seen {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    font-family: 'Raleway', sans-serif;
}

/* ── Nature Panorama Horizontal Scroll ── */
.nature-panorama {
    position: relative;
}
.np-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}
.np-scroll-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.np-scroll-track::-webkit-scrollbar { display: none; }

.np-item {
    flex: 0 0 220px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.np-item:hover { transform: scale(1.04); }
.np-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.np-item:hover img { transform: scale(1.1); }
.np-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    padding: 12px 10px 8px;
    letter-spacing: 0.5px;
}
.np-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.25s;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.np-btn:hover { background: var(--gold-rich); border-color: var(--gold-rich); }
.np-prev { left: -18px; }
.np-next { right: -18px; }

@media (max-width: 767px) {
    .wildlife-tall { height: 300px; }
    .wildlife-wide { height: 180px; }
    .wildlife-sq   { height: 190px; }
    .ws-card { flex: 0 0 140px; }
    .np-item { flex: 0 0 160px; height: 120px; }
    .np-prev { left: 4px; }
    .np-next { right: 4px; }
}


.btn-footer-login {
    background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
    color: var(--forest-dark);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    margin-left: 10px;
}


/* ═══ LUXURY FOREST & GOLD DROPDOWN MENU ═══ */

/* Dropdown Menu Container */
.resort-dropdown-menu {
    background-color: #0b1f17 !important; /* Deep Forest Green matching reference image */
    border: 1px solid rgba(217, 167, 74, 0.2) !important; /* Subtle Gold border */
    border-radius: 12px !important;
    padding: 10px 8px !important;
    min-width: 200px;
    margin-top: 10px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Individual Dropdown Items */
.resort-dropdown-item {
    color: #f2efea !important; /* Soft ivory/white text */
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.25s ease-in-out;
}

    /* Gold Icons */
    .resort-dropdown-item .nav-icon {
        color: #e0a948 !important; /* Warm Gold color */
        font-size: 1.1rem;
        margin-right: 12px;
        width: 20px;
        text-align: center;
        transition: transform 0.25s ease, color 0.25s ease;
    }

    /* Hover & Active States */
    .resort-dropdown-item:hover,
    .resort-dropdown-item:focus,
    .resort-dropdown-item.active {
        background-color: rgba(224, 169, 72, 0.15) !important; /* Subtle Gold tint */
        color: #ffffff !important;
        padding-left: 20px !important; /* Slight shift to right on hover */
    }

        .resort-dropdown-item:hover .nav-icon,
        .resort-dropdown-item.active .nav-icon {
            color: #f5c768 !important; /* Brighter gold highlight */
            transform: scale(1.15); /* Subtle icon zoom */
        }



/* ════════════════════════════════════════════════════════════
   RESPONSIVE & MOBILE-FRIENDLY OVERRIDES
   ════════════════════════════════════════════════════════════ */

/* --- Hero & Padding --- */
@media (max-width: 767.98px) {
    .page-hero {
        padding: 60px 0 40px !important;
        min-height: auto !important;
    }

        .page-hero h1 {
            font-size: 1.8rem !important;
        }

    .section-pad {
        padding: 40px 0 !important;
    }

    .section-pad-sm {
        padding: 30px 0 !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }
}

/* --- Contact Page (Map Container) --- */
.resortMapWrapper {
    position: relative;
    width: 100%;
    padding-bottom: 65%; /* Responsive 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

    .resortMapWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        border: 0;
    }

/* --- Gallery Grid (Responsive Masonry) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

@media (max-width: 575.98px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
}

/* --- Facilities Grid Fix for Extra-Small Screens --- */
@media (max-width: 575.98px) {
    .facility-card {
        padding: 15px 10px !important;
    }

    .facility-icon {
        font-size: 1.5rem !important;
        margin-bottom: 8px !important;
    }

    .facility-card h5 {
        font-size: 0.95rem !important;
    }

    .facility-card p {
        font-size: 0.8rem !important;
    }
}

/* --- Tariff Table Responsiveness --- */
.tariff-table table {
    min-width: 600px; /* Ensures horizontal scroll trigger on small devices without breaking structure */
}

@media (max-width: 767.98px) {
    .tariff-table {
        border-radius: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* --- Image Grids & Cards Touch Tweaks --- */
.nature-card img,
.room-card-img img {
    width: 100%;
    height: auto;
}

/* ═══ MOBILE TARIFF CARD STACK ═══ */
@media (max-width: 767.98px) {
    .tariff-table table,
    .tariff-table thead,
    .tariff-table tbody,
    .tariff-table th,
    .tariff-table td,
    .tariff-table tr {
        display: block;
    }

        /* Hide the traditional table header on mobile */
        .tariff-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        .tariff-table tbody tr {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 16px;
            padding: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

    .tariff-table td {
        border: none !important;
        position: relative;
        padding: 8px 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
    }

        /* Target specific cells for custom styling in card view */
        .tariff-table td:first-child {
            display: block;
            border-bottom: 1px solid #eee !important;
            padding-bottom: 12px !important;
            margin-bottom: 8px;
        }

        .tariff-table td:last-child {
            margin-top: 10px;
            padding-top: 12px !important;
            border-top: 1px dashed #eee !important;
        }

        /* Add custom labels before price data on mobile */
        .tariff-table td:nth-child(2)::before {
            content: "Weekday (Mon–Thu):";
            font-weight: 600;
            color: #666;
        }

        .tariff-table td:nth-child(3)::before {
            content: "Weekend (Fri–Sun):";
            font-weight: 600;
            color: #666;
        }

        .tariff-table td:nth-child(4)::before {
            content: "Peak Season:";
            font-weight: 600;
            color: #666;
        }

        .tariff-table td:nth-child(5)::before {
            content: "Meals Included:";
            font-weight: 600;
            color: #666;
        }

        .tariff-table td:last-child .btn-room-book {
            width: 100%;
            text-align: center;
            padding: 10px !important;
            font-size: 0.9rem !important;
        }
}