/* =============================================
   HOTEL WHITE DREAMS - Main Stylesheet
   hotelwhitedreams.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --forest: #2C4A2E;
  --forest-light: #3D6B40;
  --forest-deep: #1A2E1C;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --cream: #F9F5EF;
  --warm-white: #FEFCF8;
  --charcoal: #2A2A2A;
  --mid-gray: #6B6B6B;
  --light-gray: #E8E4DE;
  --shadow-soft: 0 4px 24px rgba(44,74,46,0.10);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.12);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 20px 0 32px;
}
.text-center .divider { margin: 20px auto 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 32px;
  border: none; cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--forest);
  color: #fff;
}
.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44,74,46,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
.navbar.dark-nav {
  background: rgba(255,255,255,0.97);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 52px; width: auto; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 42px; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }

.navbar:not(.scrolled):not(.dark-nav) .nav-links a { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled):not(.dark-nav) .nav-links a:hover { color: #fff; }
.navbar:not(.scrolled):not(.dark-nav) .nav-links a::after { background: #fff; }

.nav-book {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 10px 22px;
  background: var(--gold);
  color: #fff;
  transition: var(--transition);
}
.nav-book:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 1.5px; background: var(--charcoal); transition: var(--transition); }
.navbar:not(.scrolled):not(.dark-nav) .hamburger span { background: #fff; }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 280px;
  background: var(--warm-white);
  z-index: 2000;
  padding: 80px 32px 32px;
  transition: var(--transition);
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--forest); padding-left: 8px; }
.mobile-nav .close-btn {
  position: absolute; top: 24px; right: 24px;
  font-size: 24px; cursor: pointer; color: var(--charcoal);
  background: none; border: none;
}
.overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
}
.overlay.show { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,30,15,0.35) 0%,
    rgba(15,30,15,0.5) 60%,
    rgba(15,30,15,0.7) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  padding: 0 20px;
  animation: fadeUp 1.2s ease both;
}
.hero-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::before {
  content: '';
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.4);
}

/* ── QUICK INFO BAR ── */
.info-bar {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.85);
}
.info-bar-inner {
  display: flex;
  justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.info-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  font-size: 13px; font-weight: 400;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.info-item:last-child { border-right: none; }
.info-item svg { color: var(--gold); flex-shrink: 0; }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 55%; aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--warm-white);
}
.about-stat {
  position: absolute;
  top: 32px; left: -32px;
  background: var(--forest);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300;
  line-height: 1;
}
.about-stat .label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; }

.about-features { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 32px; }
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--mid-gray);
}
.about-feature svg { color: var(--forest); }

/* ── ROOMS ── */
.rooms-bg { background: var(--cream); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.room-card {
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.room-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.room-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.05); }
.room-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--forest);
  color: #fff;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px;
}
.room-body { padding: 24px 28px 28px; }
.room-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--forest-deep);
  margin-bottom: 6px;
}
.room-occupancy {
  font-size: 12px; color: var(--mid-gray);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.room-desc {
  font-size: 14px; color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.room-amenity {
  font-size: 11px; color: var(--forest);
  background: rgba(44,74,46,0.08);
  padding: 4px 10px;
  border-radius: 2px;
}
.room-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}
.room-price .label { font-size: 11px; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.1em; }
.room-price .amount {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300;
  color: var(--forest);
}
.room-price .per { font-size: 11px; color: var(--mid-gray); }

/* ── AMENITIES ── */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.amenity-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.amenity-card:hover {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
  transform: translateY(-4px);
}
.amenity-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon { color: var(--gold-light); }
.amenity-name { font-size: 14px; font-weight: 500; }
.amenity-card:hover .amenity-name { color: #fff; }

/* ── GALLERY TEASER ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  margin-top: 48px;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(44,74,46,0);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(44,74,46,0.3); }
.gallery-item-overlay span {
  color: #fff; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay span { opacity: 1; }
.gallery-more { margin-top: 32px; text-align: center; }

/* ── DINING ── */
.dining-bg { background: var(--cream); }
.dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.dining-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dining-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.dining-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dining-img:hover img { transform: scale(1.05); }
.dining-info { }
.dining-hours {
  background: var(--forest-deep);
  color: #fff;
  padding: 24px 28px;
  margin: 28px 0;
}
.dining-hours h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.dining-hours p { font-size: 14px; opacity: 0.8; }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--forest-deep); }
.testimonials-bg .section-title { color: #fff; }
.testimonials-bg .tag { color: var(--gold-light); }
.testimonials-bg .divider { background: var(--gold); }
.testimonials-slider { position: relative; margin-top: 48px; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: calc(33.33% - 16px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  flex-shrink: 0;
}
.t-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.t-text {
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic;
  color: rgba(255,255,255,0.85); line-height: 1.8;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; background: var(--forest-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: #fff;
}
.t-name { font-size: 14px; font-weight: 500; color: #fff; }
.t-location { font-size: 12px; color: rgba(255,255,255,0.5); }
.t-nav { display: flex; gap: 12px; justify-content: center; margin-top: 36px; }
.t-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.t-btn:hover { background: var(--gold); border-color: var(--gold); }

/* ── LOCATION ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.map-wrap {
  width: 100%; height: 420px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.contact-list { margin-top: 28px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-gray);
}
.contact-item:first-child { padding-top: 0; }
.c-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(44,74,46,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
}
.c-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 4px; }
.c-value { font-size: 15px; color: var(--charcoal); font-weight: 400; }
.c-value a:hover { color: var(--forest); }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--light-gray);
  font-size: 13px; font-weight: 500; color: var(--charcoal);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--forest); background: var(--forest); color: #fff; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--forest);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.cta-banner .section-title { color: #fff; }
.cta-banner .tag { color: var(--gold-light); }
.cta-banner .section-sub { color: rgba(255,255,255,0.75); margin: 0 auto; max-width: 500px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.btn-white { background: #fff; color: var(--forest); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand img { height: 48px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 56px; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; }
.footer-bottom a { color: var(--gold-light); }

/* ── PAGE HERO ── */
.page-hero {
  height: 380px;
  background: var(--forest-deep);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .tag { color: var(--gold-light); }
.page-hero .section-title { color: #fff; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── GALLERY PAGE ── */
.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px; justify-content: center;
}
.filter-btn {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px;
  border: 1.5px solid var(--light-gray);
  background: transparent; color: var(--charcoal);
  cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--forest); border-color: var(--forest); color: #fff;
}
.gallery-masonry {
  columns: 3; column-gap: 16px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative; overflow: hidden; cursor: pointer;
  display: block;
}
.gallery-masonry-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.gallery-masonry-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 24px 16px 16px;
  color: #fff;
  transform: translateY(8px); opacity: 0;
  transition: var(--transition);
}
.gallery-masonry-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-caption-title { font-family: var(--font-display); font-size: 1rem; }
.gallery-caption-sub { font-size: 11px; opacity: 0.7; letter-spacing: 0.1em; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 32px; color: #fff; cursor: pointer;
  background: none; border: none; line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 36px; color: rgba(255,255,255,0.7);
  cursor: pointer; background: none; border: none;
  transition: var(--transition);
  padding: 16px;
}
.lightbox-nav:hover { color: var(--gold-light); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(255,255,255,0.8);
  font-family: var(--font-display); font-size: 1.1rem;
}

/* ── ROOMS PAGE ── */
.room-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 80px; }
.room-gallery-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.room-gallery-mini .main-img {
  grid-column: span 2;
  aspect-ratio: 16/9; overflow: hidden;
}
.room-gallery-mini .thumb { aspect-ratio: 16/9; overflow: hidden; }
.room-gallery-mini img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-info { padding-top: 8px; }
.room-detail-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--forest-deep); margin-bottom: 8px; }
.room-detail-sub { color: var(--mid-gray); font-size: 14px; margin-bottom: 24px; }
.pricing-table { margin: 24px 0; }
.pricing-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}
.pricing-row:first-child { background: var(--cream); font-weight: 500; }
.pricing-row .price { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); }
.amenities-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.amenity-pill {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--charcoal);
  background: var(--cream); padding: 6px 14px;
}
.amenity-pill svg { color: var(--forest); }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  padding: 36px 28px;
  border-top: 3px solid var(--forest);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.value-icon { color: var(--gold); margin-bottom: 16px; }
.value-title { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; color: var(--forest-deep); }
.value-text { font-size: 14px; color: var(--mid-gray); line-height: 1.8; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: var(--light-gray); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-dot { position: absolute; left: -32px; top: 4px; width: 16px; height: 16px; background: var(--forest); border-radius: 50%; }
.timeline-year { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.timeline-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--forest-deep); margin-bottom: 6px; }
.timeline-text { font-size: 14px; color: var(--mid-gray); }

/* ── CONTACT PAGE ── */
.contact-form { background: #fff; padding: 48px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  background: var(--cream);
  font-family: var(--font-body); font-size: 14px;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest);
  background: #fff;
}
.form-textarea { min-height: 120px; resize: vertical; }
.policies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.policy-card {
  padding: 28px;
  border: 1px solid var(--light-gray);
}
.policy-icon { color: var(--forest); margin-bottom: 12px; }
.policy-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; color: var(--forest-deep); }
.policy-text { font-size: 13px; color: var(--mid-gray); line-height: 1.8; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; z-index: 999;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .room-detail-grid { gap: 36px; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .about-grid, .dining-grid, .location-grid, .room-detail-grid, .form-row { grid-template-columns: 1fr; }
  .about-images { padding-bottom: 40px; }
  .about-img-accent { bottom: 0; right: -16px; width: 50%; }
  .about-stat { top: 16px; left: -16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gallery-item:first-child { grid-row: span 1; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-card { min-width: calc(100% - 0px); }
  .hero-btns { flex-direction: column; align-items: center; }
  .info-bar-inner { flex-direction: column; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); justify-content: center; }
  .team-grid, .values-grid, .policies-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .gallery-masonry { columns: 1; }
  .map-wrap { height: 300px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
