/* ================================================
   DELTA THREE STARS HOTEL v2 — style.css
   Google Fonts: Playfair Display + DM Sans
   ================================================ */

/* ---------- FONT FACE FALLBACK (prevents shrink) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold:       #C9952A;
  --gold-light: #E8B84B;
  --green:      #1B3A2D;
  --green-mid:  #2D5A3D;
  --cream:      #FAF7F0;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #888888;

  /* Font stacks — always fallback to serif/sans */
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; }
ul   { list-style: none; }

/* ---------- Utilities ---------- */
section    { padding: 90px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  padding: 15px 42px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,42,0.4);
}
.btn-outline {
  display: inline-block;
  padding: 15px 42px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible       { opacity: 1; transform: translateY(0); }
.reveal-delay-1       { transition-delay: 0.12s; }
.reveal-delay-2       { transition-delay: 0.22s; }
.reveal-delay-3       { transition-delay: 0.34s; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(27, 58, 45, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
.nav-logo-text  { display: flex; flex-direction: column; }
.hotel-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.hotel-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover              { color: var(--gold-light); }
.nav-links a:hover::after       { transform: scaleX(1); }
.nav-book-btn {
  padding: 10px 26px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 3px;
}
.nav-book-btn::after            { display: none !important; }
.nav-book-btn:hover             { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: white; transition: 0.3s; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--green);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ================================================
   HERO — SLIDESHOW
   ================================================ */
.hero {
  height: 100vh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease;
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
  z-index: 1;
}
.hero-slide:nth-child(1) { background-image: url('../images/hero1.jpg'); }
.hero-slide:nth-child(2) { background-image: url('../images/hero2.jpg'); }
.hero-slide:nth-child(3) { background-image: url('../images/hero3.jpg'); }
.hero-slide:nth-child(4) { background-image: url('../images/hero4.jpg'); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(27,58,45,0.78) 0%,
    rgba(0,0,0,0.52) 50%,
    rgba(201,149,42,0.18) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
  animation: fadeInUp 1.2s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 22px;
  border: 1px solid rgba(201,149,42,0.65);
  border-radius: 40px;
  margin-bottom: 26px;
  animation: fadeInUp 1s 0.2s both;
}
.hero-badge span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-stars { display: flex; gap: 4px; }
.hero-stars i { color: var(--gold); font-size: 0.75rem; font-style: normal; }

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  animation: fadeInUp 1s 0.3s both;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
  animation: fadeInUp 1s 0.4s both;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  margin-bottom: 44px;
  animation: fadeInUp 1s 0.5s both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.7s both;
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 4;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 4;
  animation: fadeInUp 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ================================================
   ABOUT
   ================================================ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-images { position: relative; height: 540px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 74%; height: 84%;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.17);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%; height: 50%;
  object-fit: cover;
  border-radius: 5px;
  border: 6px solid var(--white);
  box-shadow: 0 14px 38px rgba(0,0,0,0.14);
}
.about-badge-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: white;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 28px rgba(201,149,42,0.5);
  z-index: 3;
}
.about-badge-circle .num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-circle .lbl {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 2px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,149,42,0.22);
}
.stat-item  { text-align: center; }
.stat-num   {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}

/* ================================================
   ROOMS
   ================================================ */
.rooms { background: var(--cream); }
.rooms-header { text-align: center; margin-bottom: 55px; }
.rooms-header .section-label         { justify-content: center; }
.rooms-header .section-label::before { display: none; }
.rooms-header .section-desc          { margin: 0 auto; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.room-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}
.room-card:hover       { transform: translateY(-8px); box-shadow: 0 20px 55px rgba(0,0,0,0.13); }
.room-card.featured    { border: 2px solid var(--gold); }
.room-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: white;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  z-index: 2;
}
.room-img-wrap { overflow: hidden; }
.room-img      { width: 100%; height: 220px; object-fit: cover; transition: transform 0.6s ease; }
.room-card:hover .room-img { transform: scale(1.06); }
.room-info     { padding: 26px; }
.room-type     {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.room-name     {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 13px;
  line-height: 1.2;
}
.room-features { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.room-feat-tag {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 900;
  padding: 4px 10px;
  background: var(--cream);
  border-radius: 20px;
  color: var(--text-mid);
}
.room-footer   { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06); }
.price-amount  {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.price-label   {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
}
.room-book-btn {
  padding: 10px 20px;
  background: var(--green);
  color: white;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.room-book-btn:hover { background: var(--green-mid); }

/* ================================================
   AMENITIES
   ================================================ */
.amenities { background: var(--green); }
.amenities-header { text-align: center; margin-bottom: 55px; }
.amenities-header .section-label          { justify-content: center; color: var(--gold-light); }
.amenities-header .section-label::before  { background: var(--gold-light); display: none; }
.amenities-header .section-title          { color: var(--white); }
.amenities-header .section-desc           { color: rgba(255,255,255,0.62); margin: 0 auto; }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.amenity-card {
  background: rgba(255,255,255,0.04);
  padding: 44px 26px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.amenity-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.amenity-card:hover              { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.amenity-card:hover::after       { transform: scaleX(1); }
.amenity-icon  { font-size: 2.1rem; margin-bottom: 16px; display: block; }
.amenity-name  {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.amenity-desc  {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 46px; }
.gallery-header .section-label         { justify-content: center; }
.gallery-header .section-label::before { display: none; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item          { overflow: hidden; border-radius: 5px; cursor: pointer; position: relative; }
.gallery-item img      { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall     { grid-row: span 2; }
.gallery-item.wide     { grid-column: span 2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(27,58,45,0);
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(27,58,45,0.42); }
.gallery-overlay-icon {
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
}
.gallery-item:hover .gallery-overlay-icon { opacity: 1; transform: scale(1); }

/* ================================================
   LIGHTBOX GALLERY MODAL
   ================================================ */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27,58,45, 0.95);
  backdrop-filter: blur(8px);
}
.lightbox.show { display: flex; align-items: center; justify-content: center; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  box-sizing: border-box;
}
.nav-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.nav-btn:hover { opacity: 1; background: rgba(255,255,255,0.3); transform: scale(1.1); }
.prev { left: 20px; }
.next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 12px 24px;
  border-radius: 25px;
  font-family: var(--font-body);
  font-size: 1rem;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

/* ================================================
   BOOKING
   ================================================ */
.booking       { background: var(--cream); }
.booking-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }

.booking-form-wrap {
  background: var(--white);
  padding: 46px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 44px rgba(0,0,0,0.1);
  border-top: 4px solid var(--gold);
}
.booking-form-title {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 26px;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); background: white; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.booking-perks  { margin-top: 36px; }
.perk-item      { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.perk-icon      {
  width: 42px; height: 42px;
  background: rgba(201,149,42,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.perk-title     { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--green); margin-bottom: 2px; }
.perk-sub       { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; color: var(--text-light); }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials { background: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 55px; }
.testimonials-header .section-label         { justify-content: center; }
.testimonials-header .section-label::before { display: none; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  padding: 34px;
  background: var(--cream);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(0,0,0,0.1); }
.testi-quote  {
  font-family: var(--font-head);
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.5;
}
.testi-text   {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-stars  { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: var(--gold); font-size: 0.9rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  flex-shrink: 0;
}
.author-name   { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: var(--green); }
.author-origin { font-family: var(--font-body); font-size: 0.72rem; color: var(--text-light); }

/* ================================================
   CONTACT
   ================================================ */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info-items { margin-top: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}
.contact-val {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}
.map-wrap { border-radius: 8px; overflow: hidden; box-shadow: 0 10px 38px rgba(0,0,0,0.11); }
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--green); padding: 65px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img   { height: 55px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p     { font-family: var(--font-body); font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.78; margin-bottom: 20px; }
.footer-socials     { }
.social-btn         { width: 35px; height: 35px;   display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.82rem; transition: all 0.3s; }
.social-btn:hover   { border-color: var(--gold); color: var(--gold); background: rgba(201,149,42,0.1); }
.footer-col h4      { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-links       { }
.footer-links li    { margin-bottom: 9px; }
.footer-links a     { font-family: var(--font-body); font-size: 0.84rem; font-weight: 400; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.wa-tooltip     { background: white; padding: 7px 15px; border-radius: 20px; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; color: var(--green); box-shadow: 0 4px 18px rgba(0,0,0,0.14); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: all 0.3s; pointer-events: none; }
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn         { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 22px rgba(37,211,102,0.45); transition: transform 0.3s; animation: waPulse 3s ease-in-out infinite; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 38px rgba(37,211,102,0.7); }
}
.wa-btn:hover   { transform: scale(1.1); }

/* ================================================
   TOAST
   ================================================ */
.toast {
  position: fixed;
  top: 90px; right: -400px;
  z-index: 9999;
  background: var(--green);
  color: white;
  padding: 16px 26px;
  border-radius: 7px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 10px 38px rgba(0,0,0,0.28);
  transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 330px;
}
.toast.show    { right: 28px; }
.toast-title   { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.toast-msg     { font-family: var(--font-body); font-size: 0.78rem; opacity: 0.8; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid     { gap: 40px; }
}

@media (max-width: 768px) {
  .navbar,
  .navbar.scrolled { padding: 14px 22px; }
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .container  { padding: 0 20px; }
  section     { padding: 65px 0; }

  .about-grid        { grid-template-columns: 1fr; }
  .about-images      { height: 340px; }
  .rooms-grid        { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .booking-inner     { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid      { grid-template-columns: 1fr; }
  .testi-grid        { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .form-row          { grid-template-columns: 1fr; }
  .amenities-grid    { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll       { display: none; }
}
