/* ============================================================
   MOUNT VIEW DHANAULTI DREAMZ
   DESIGNED & BUILT BY DIVYANSHU VISHWAKARMA matrixgrowth.in
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1c3a2e;
    --primary-light: #2a5444;
    --gold: #c9a84c;
    --gold-light: #e2c77a;
    --gold-dark: #a0862f;
    --cream: #f8f5ef;
    --cream-dark: #ede8db;
    --white: #ffffff;
    --dark: #1a1a1a;
    --charcoal: #2d2d2d;
    --text: #3d3d3d;
    --text-muted: #757575;
    --text-light: #b0b0b0;
    --orange: #d4520a;
    --border: #e5e0d5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.11);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

::selection {
    background: var(--gold);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ============================================================
   TOP INFO BAR 
   ============================================================ */
#topbar {
    background: var(--primary);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
}

.topbar-contact svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    flex-shrink: 0;
}

.topbar-contact a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s;
}

.topbar-contact a:hover {
    color: var(--gold);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-right a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    transition: color 0.2s;
    letter-spacing: 0.04em;
}

.topbar-right a:hover {
    color: var(--gold);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-main {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.01em;
}

.nav-logo-sub {
    font-size: 0.6rem;
    color: var(--gold-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--charcoal);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 4px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

  /* Gallery Teaser Grid */
  .gallery-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
  }

  .gt-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
  }

  .gt-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gt-item:hover img {
    transform: scale(1.1);
  }

  .gt-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gt-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
  }

  .gt-item:hover .gt-overlay {
    opacity: 1;
  }

  @media (max-width: 768px) {
    .gallery-teaser-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 180px);
    }
    .gt-large {
      grid-column: span 2;
      grid-row: span 1;
    }
  }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 32px 24px;
    flex-direction: column;
    gap: 2px;
    z-index: 999;
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    color: var(--charcoal);
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--gold-dark);
    padding-left: 6px;
}

.mobile-link:last-child {
    border-bottom: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    border-radius: 2px;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 9px 22px;
    font-size: 0.76rem;
}

.btn-arrow {
    gap: 10px;
}

.btn-arrow::after {
    content: '→';
    font-size: 1em;
    font-style: normal;
    transition: transform 0.2s;
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section {
    padding: 60px 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-over {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--primary);
    margin-bottom: 14px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 550px;
    font-size: 0.975rem;
    line-height: 1.75;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-sub {
    margin: 0 auto;
}

.divider {
    width: 56px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 0;
    border-radius: 2px;
}

.divider-left {
    margin: 16px 0 0;
}

/* ============================================================
   HERO — FULL-SCREEN SLIDER 
   ============================================================ */
#hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=90');
}

.hero-slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=85');
}

.hero-slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1920&q=85');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 22, 16, 0.78) 0%, rgba(10, 22, 16, 0.45) 55%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 48px 100px 220px;
    height: 100%;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--gold-light);
    font-style: italic;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    max-width: 460px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Slider nav arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Stats strip */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    background: rgba(28, 58, 46, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    border-top-left-radius: 16px;
}

.hero-stat {
    padding: 20px 32px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat:first-child {
    border-left: none;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ============================================================
   ABOUT SECTION 
   ============================================================ */
#about {
    background: var(--white);
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 20px;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.about-btn-row {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-small {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 190px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-rating-badge {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--gold);
    color: var(--primary);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    font-weight: 700;
}

.about-rating-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
}

.about-rating-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ============================================================
   ROOMS SECTION — FULL-WIDTH CAROUSEL
   ============================================================ */
.rooms-carousel-section {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}

.rooms-carousel-bg {
    position: absolute;
    inset: 0;
    background-image: url('uploads/hero/rooms_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.rooms-carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 16, 0.70);
    z-index: 1;
}

.rooms-carousel-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.rooms-carousel-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.rooms-carousel-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.75;
}

.rooms-carousel-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

.rooms-car-track-outer {
    overflow: hidden;
    flex: 1;
}

.rooms-car-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.rooms-car-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.rooms-car-img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.rooms-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rooms-car-slide:hover .rooms-car-img img {
    transform: scale(1.06);
}

.rooms-car-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rooms-car-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.rooms-car-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.rooms-car-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
    text-decoration: none;
}

.rooms-car-link:hover {
    color: var(--primary);
}

.rooms-car-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin: 0 10px;
}

.rooms-car-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
    .rooms-car-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 580px) {
    .rooms-car-slide {
        flex: 0 0 100%;
    }
}


.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    padding: 0 32px;
    max-width: 1240px;
    margin: -40px auto 0;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.room-card-img img,
.room-card-img>div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-card-img img {
    transform: scale(1.05);
}

.room-status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-available {
    background: #d1fae5;
    color: #065f46;
}

.badge-booked {
    background: #fef3c7;
    color: #92400e;
}

.badge-sold_out {
    background: #fee2e2;
    color: #991b1b;
}

.room-card-body {
    padding: 24px 24px 16px;
    flex: 1;
}

.room-card-body h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.room-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.room-amenities {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.room-amenity {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
}

.room-capacity {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.room-card-footer {
    padding: 14px 24px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--cream-dark);
    flex-wrap: wrap;
    gap: 10px;
}

.room-price {
    display: flex;
    flex-direction: column;
}

.room-price-val {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.room-price-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* View Details link style  */
.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.btn-view-details::after {
    content: '→';
    transition: transform 0.2s;
}

.btn-view-details:hover {
    color: var(--gold-dark);
    border-bottom-color: var(--gold-dark);
}

.btn-view-details:hover::after {
    transform: translateX(4px);
}

.rooms-view-all {
    text-align: center;
    margin-top: 48px;
}

/* ============================================================
   RESORT FACILITIES GRID (NEW)
   ============================================================ */
#resort-facilities {
    padding: 100px 0;
    background: #fbfbfc;
    text-align: center;
}

.resort-facilities-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 15px;
}

.resort-facilities-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    padding: 0 15px;
}

.resort-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.rf-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
}

.rf-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rf-card:hover .rf-card-img {
    transform: scale(1.08);
}

.rf-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    text-align: left;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.rf-card:hover .rf-card-overlay {
    background: rgba(100, 15, 15, 0.88);
    /* Deep Maroon */
}

.rf-card-title {
    font-size: 1.45rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0;
    transition: transform 0.4s ease;
}

.rf-card:hover .rf-card-title {
    transform: translateY(-8px);
}

.rf-card-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    font-size: 0.93rem;
    line-height: 1.6;
}

.rf-card:hover .rf-card-content {
    opacity: 1;
    max-height: 200px;
    margin-top: 5px;
}

.rf-card-link {
    display: inline-block;
    color: #4db8ff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

.rf-card-link:hover {
    color: var(--white);
}

@media (max-width: 992px) {
    .resort-facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .resort-facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   TRAVEL DESK SECTION
   ============================================================ */
#travel-desk {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.travel-desk-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 60px;
}

.td-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.td-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.td-card-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    margin-bottom: 24px;
}

.td-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.td-card:hover .td-card-img {
    transform: scale(1.05);
}

.td-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.td-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.td-card-link {
    display: inline-flex;
    align-items: center;
    color: #f26522;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.td-card-link:hover {
    color: #d15016;
}

.td-card-link::before {
    content: '→';
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.td-card:hover .td-card-link::before {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .td-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .td-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ACTIVITIES SECTION 
   ============================================================ */
#activities {
    background: var(--primary);
}

#activities .section-title {
    color: var(--white);
}

#activities .section-over {
    color: var(--gold-light);
}

#activities .section-sub {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto;
}

#activities .divider {
    background: var(--gold);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.activity-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.activity-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-card-bg {
    transform: scale(1.06);
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 16, 0.85) 40%, transparent 100%);
}

.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 18px;
    z-index: 2;
}

.activity-tag {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--primary);
    padding: 2px 9px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 6px;
}

.activity-icon {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.activity-content h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.activity-excerpt {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.78rem;
    line-height: 1.5;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
    background: var(--cream);
}

#gallery .section-title {
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 10px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 3 / 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 58, 46, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-size: 1.8rem;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    transform: scale(1.2);
}

/* ============================================================
   TESTIMONIALS SECTION (dark theme)
   ============================================================ */
#testimonials {
    background: var(--primary);
}

#testimonials .section-title {
    color: var(--white);
}

#testimonials .section-over {
    color: var(--gold-light);
}

#testimonials .section-sub {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto;
}

/* Testimonials Grid Update */
#testimonials {
    background: #f4f6fa;
    padding: 100px 0 120px;
}

.tz-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.tz-header {
    text-align: center;
    margin-bottom: 60px;
}

.tz-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.tz-subtitle {
    font-size: 0.95rem;
    color: #666;
}

.tz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tz-card {
    padding: 40px 30px 60px;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Bottom to top fill animation */
.tz-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #4cc7a4;
    transition: height 0.5s ease;
    z-index: -1;
}

/* Hover effects */
.tz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tz-card:hover::before {
    height: 100%;
}

.tz-quote {
    font-size: 4rem;
    color: #e57368;
    line-height: 1;
    margin-bottom: 10px;
    font-family: serif;
    transition: color 0.5s ease;
}

.tz-card:hover .tz-quote {
    color: #fff;
}

.tz-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
    color: #333;
    transition: color 0.5s ease;
}

.tz-card:hover .tz-text {
    color: #fff;
}

.tz-stars {
    color: #ffb800;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.tz-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.tz-name {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 700;
    color: #e57368;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .tz-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
    background: var(--white);
}

#contact .section-title {
    color: var(--primary);
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-info>p {
    color: var(--text-muted);
    margin: 16px 0 32px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 0.82rem;
    color: var(--primary);
    margin-bottom: 3px;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-detail-text a:hover {
    color: var(--gold-dark);
}

.contact-map {
    margin-top: 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid var(--border);
}

.contact-form-wrap h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-wrap>p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 14px;
}

.form-group label {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    transition: var(--transition);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    margin-top: 6px;
    justify-content: center;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 100px 32px 64px;
    text-align: center;
}

.booking-hero .section-over {
    color: var(--gold-light);
}

.booking-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.booking-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.booking-layout {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 32px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.booking-rooms-section h2 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.booking-rooms-grid {
    display: grid;
    gap: 14px;
}

.booking-room-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.booking-room-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.booking-room-card.selected {
    border-color: var(--gold);
    background: #fffdf5;
}

.booking-room-card.sold-out {
    opacity: 0.55;
    cursor: not-allowed;
}

.booking-room-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-room-img {
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
    min-height: 110px;
}

.booking-room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-room-info {
    padding: 18px;
    flex: 1;
}

.booking-room-info h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.booking-room-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

.booking-room-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.booking-room-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.booking-room-price small {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 400;
}

.booking-form-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 92px;
    border: 1px solid var(--border);
}

.booking-form-panel h2 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.booking-form-panel>p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.calendar-wrap {
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.calendar-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
}

.cal-nav-btn {
    background: var(--cream);
    border: 1px solid var(--border);
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--primary);
}

.cal-nav-btn:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}

.cal-day-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 5px 0;
}

.cal-day {
    padding: 6px 2px;
    font-size: 0.78rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.cal-day:hover:not(.booked):not(.past):not(.empty) {
    background: var(--gold);
    color: var(--primary);
    font-weight: 600;
}

.cal-day.today {
    border: 2px solid var(--gold);
    font-weight: 700;
}

.cal-day.booked {
    background: #fee2e2;
    color: #991b1b;
    cursor: not-allowed;
    font-size: 0.7rem;
}

.cal-day.admin-blocked {
    background: #fef3c7;
    color: #92400e;
    cursor: not-allowed;
    font-size: 0.7rem;
    border: 1px solid #fbbf24;
}

.cal-day:hover:not(.booked):not(.admin-blocked):not(.past):not(.empty) {
    background: var(--gold);
    color: var(--primary);
    font-weight: 600;
}

.cal-day.selected-in {
    background: var(--gold) !important;
    color: var(--primary) !important;
    font-weight: 700;
}

.cal-day.selected-out {
    background: var(--primary) !important;
    color: var(--white) !important;
    font-weight: 700;
}

.cal-day.in-range {
    background: rgba(201, 168, 76, 0.15);
}

.cal-day.past {
    color: var(--text-light);
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

.cal-legend {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 3px;
}

.legend-gold {
    background: var(--gold);
}

.legend-red {
    background: #fee2e2;
    border: 1px solid #fca5a5;
}

.legend-primary {
    background: var(--primary);
}

.booking-form .form-group label {
    color: var(--text-muted);
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
    font-size: 0.8rem;
}

.booking-success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: var(--radius);
    padding: 18px 24px;
    margin: 0 auto 28px;
    max-width: 1240px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #065f46;
    font-weight: 500;
    font-size: 0.9rem;
}

/* ============================================================
   ROOMS PAGE
   ============================================================ */
.rooms-page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 140px 32px 80px;
    text-align: center;
}

.rooms-page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.rooms-page-hero p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

#rooms-page {
    padding: 80px 0;
    background: var(--cream);
}

#rooms-page .rooms-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    margin-top: 0;
}

/* ============================================================
   FOOTER (dark green like primary)
   ============================================================ */
#footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--gold-light);
}

.footer-brand p {
    font-size: 0.86rem;
    line-height: 1.75;
    max-width: 270px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.footer-social {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.78rem;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* Blog */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 140px 32px 80px;
    text-align: center;
}

.blog-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

.blog-section {
    padding: 80px 0;
    background: var(--cream);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left {
    transform: translateX(-36px);
}

.reveal-right {
    transform: translateX(36px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Facility Cards */
.facility-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover img {
    transform: scale(1.05);
}

/* Facility Collage (Spanning Layout) */
.facility-collage {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
}

.facility-collage .img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.facility-collage .img-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* Alternate Collage layout */
.facility-collage.collage-alt .img-main {
    left: 0;
    right: auto;
}

.facility-collage.collage-alt .img-sub {
    right: 0;
    left: auto;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: #25D366;
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7);
    }
}

/* Admin */
.admin-status-available {
    color: #065f46;
    background: #d1fae5;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.admin-status-booked {
    color: #92400e;
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.admin-status-sold_out {
    color: #991b1b;
    background: #fee2e2;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.admin-status-pending {
    color: #92400e;
    background: #fef3c7;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.admin-status-confirmed {
    color: #065f46;
    background: #d1fae5;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.admin-status-cancelled {
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-main {
        height: 360px;
    }

    .about-image-small {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Facility Collage Adjustments */
    .facility-collage {
        height: 400px;
    }

    .facility-collage .img-main {
        width: 80%;
        height: 320px;
    }

    .facility-collage .img-sub {
        width: 60%;
        height: 240px;
    }

    .facility-card:first-child {
        grid-column: 1;
        grid-row: 1;
        height: 280px;
        min-height: unset;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item:nth-child(4) {
        grid-column: auto;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-form-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    section {
        padding: 64px 0;
    }

    #topbar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 0 24px 80px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-stats-bar {
        display: none;
    }

    .hero-stat {
        flex: 1;
        padding: 14px 16px;
    }

    .rooms-grid {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }

    /* Facility Collage Mobile Adjustments */
    .facility-collage {
        height: 320px;
        margin-top: 32px;
    }

    .facility-collage .img-main {
        width: 85%;
        height: 250px;
    }

    .facility-collage .img-sub {
        width: 70%;
        height: 180px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-inner {
        padding: 32px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-layout {
        padding: 40px 20px;
    }

    .booking-hero {
        padding: 90px 20px 48px;
    }

    .container {
        padding: 0 20px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .mobile-menu {
        top: 76px;
    }
}

@media (max-width: 480px) {
    #hero {
        height: 450px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 0 16px 60px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .topbar-contacts {
        flex-direction: column;
        gap: 6px;
    }
}

/* ============================================================
   PHOTO GALLERY SECTION (homepage teaser)
   ============================================================ */
.photo-gallery-section {
    position: relative;
    padding: 70px 0 60px;
    overflow: hidden;
}

.photo-gallery-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://www.mountviewdhanaultidreamz.com/wp-content/uploads/2020/02/DJI_0156-1.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(0.85);
    transform: scale(1.04);
    z-index: 0;
}

.photo-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(240, 234, 220, 0.78);
    z-index: 1;
}

.photo-gallery-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.photo-gallery-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin-bottom: 36px;
}

.photo-gallery-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.photo-gallery-strip::-webkit-scrollbar {
    display: none;
}

.photo-gallery-item {
    flex: 0 0 calc(16.666% - 10px);
    min-width: 160px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    display: block;
}

.photo-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .photo-gallery-item {
        flex: 0 0 44%;
        min-width: 140px;
    }
}

/* ==========================================================================
   STICKY SIDE BUTTONS (Book Now, Call, WhatsApp)
   ========================================================================== */
.sticky-side-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    padding: 6px 14px 6px 6px;
    /* Slightly reduced padding */
    border-radius: 50px 0 0 50px;
    box-shadow: -2px 4px 10px rgba(0, 0, 0, 0.12);
    /* Slightly softer shadow for smaller buttons */
    font-weight: 550;
    font-size: 0.80rem;
    /* Smaller text */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
    transform: translateX(calc(100% - 54px));
    /* Adjusted transform for smaller icon size */
    /* Hide text initially, show only icon area */
    border: 2px solid transparent;
}

.sticky-btn:hover {
    transform: translateX(-10px);
    /* Slide out fully on hover */
    text-decoration: none;
}

.sticky-btn .sticky-icon {
    width: 29px;
    /* Reduced from 45px */
    height: 29px;
    /* Reduced from 45px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: white;
}

/* Specific Button Styles */
.sticky-call {
    border-color: #ffcc00;
    /* Yellow border hint */
}

.sticky-call:hover {
    background: #fdfdfd;
}

.sticky-call .sticky-icon {
    background: #FF0000;
    /* Red circle */
}

.sticky-whatsapp {
    border-color: #ffcc00;
}

.sticky-whatsapp:hover {
    background: #fdfdfd;
}

.sticky-whatsapp .sticky-icon {
    background: #25D366;
    /* WhatsApp Green */
}

.sticky-whatsapp .sticky-icon svg {
    width: 20px;
    /* Reduced SVG inside WhatsApp icon */
    height: 20px;
    fill: white;
}

.sticky-book {
    border-color: var(--gold);
    background: var(--gold);
    color: white;
}

.sticky-book:hover {
    background: #c29d2b;
    color: white;
}

.sticky-book .sticky-icon {
    background: rgba(255, 255, 255, 0.2);
}

.sticky-btn-text {
    white-space: nowrap;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .sticky-side-buttons {
        transform: translateY(-30%);
        /* Adjust position for mobile if needed */
        gap: 10px;
    }

    .sticky-btn {
        padding: 6px 12px 6px 6px;
        transform: translateX(calc(100% - 52px));
    }

    .sticky-btn .sticky-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .sticky-whatsapp .sticky-icon svg {
        width: 24px;
        height: 24px;
    }
}
/* ===================== NAV DROPDOWN FIX ===================== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.15);
    z-index: 9999;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    /* Removed margin-top to avoid gap */
    border: 1px solid rgba(0,0,0,0.08);
}

/* Hover bridge to prevent premature closing */
.dropdown-content::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
    z-index: -1;
}

.dropdown-content::before {
    content: " \;
 position: absolute;
 top: -10px;
 left: 20px;
 border-width: 0 10px 10px 10px;
 border-style: solid;
 border-color: transparent transparent #ffffff transparent;
}

.dropdown-content a {
 color: #333 !important;
 padding: 12px 20px !important;
 text-decoration: none;
 display: block !important;
 font-size: 0.85rem !important;
 font-family: \Inter\, sans-serif;
 transition: all 0.3s ease;
 text-align: left;
 border: none !important;
}

.dropdown-content a:hover {
 background-color: #f8f5f0 !important;
 color: #c9a84c !important;
 padding-left: 25px !important;
}

.nav-dropdown:hover .dropdown-content {
 display: block !important;
 animation: fadeInDown 0.3s ease forwards;
}

@keyframes fadeInDown {
 from { opacity: 0; transform: translateY(-10px); }
 to { opacity: 1; transform: translateY(0); }
}

