/* =============================================
   AARRAAMS FARMS AND RESORTS
   style.css — Main Stylesheet
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --forest-green: #0B3D2E;
  --rich-green:   #0F6B3E;
  --mid-green:    #1A8A50;
  --cream:        #F7F1E5;
  --beige:        #E8D8B8;
  --gold:         #C9A646;
  --gold-dark:    #A8882E;
  --dark:         #1F2933;
  --text:         #3D4C55;
  --white:        #FFFFFF;
  --wa-green:     #25D366;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --shadow-sm:  0 2px 12px rgba(11,61,46,0.08);
  --shadow-md:  0 6px 30px rgba(11,61,46,0.13);
  --shadow-lg:  0 16px 60px rgba(11,61,46,0.18);

  --transition: 0.3s ease;

  --header-h:  96px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--forest-green);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-green);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,166,70,0.4);
}

.btn-green {
  background: var(--rich-green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--forest-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--rich-green);
  border: 2px solid var(--rich-green);
}
.btn-outline-green:hover {
  background: var(--rich-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.btn-full { width: 100%; justify-content: center; }

/* ---- Section Shared ---- */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest-green);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

.bg-cream { background: var(--cream); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled: clean white header — logo white bg blends in seamlessly */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

/* Nav links white on hero, dark on white header */
.site-header.scrolled .nav-link       { color: var(--forest-green); }
.site-header.scrolled .nav-link:hover { color: var(--rich-green); }

/* Hamburger dark on white header */
.site-header.scrolled .hamburger span { background: var(--forest-green); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo — no background needed; SVG filter strips the white from the PNG */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 86px;
  width: auto;
  display: block;
  /* Removes white pixels from logo PNG mathematically:
     white → transparent, green/red brand colours remain fully visible */
  filter: url(#remove-white-bg);
}

/* Fallback text when logo.png is missing */
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

/* Nav */
.main-nav { display: flex; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Header CTA */
.header-cta { display: flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav-overlay.visible {
  display: block;
  opacity: 1;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
  /* Fallback gradient if image is missing */
  background-color: var(--forest-green);
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,61,46,0.55) 0%,
    rgba(11,61,46,0.65) 60%,
    rgba(11,61,46,0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: calc(var(--header-h) + 40px) 24px 80px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--beige);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--beige);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  transition: color var(--transition);
}

.hero-scroll-cue:hover { color: var(--white); }
.scroll-label { font-weight: 500; }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--forest-green);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.badge-num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.badge-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-content { padding-right: 8px; }

.about-text {
  font-size: 1.03rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.highlight-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--beige);
  color: var(--forest-green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

.highlight-chip svg { color: var(--rich-green); flex-shrink: 0; }

/* =============================================
   EXPERIENCES
   ============================================= */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.exp-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,61,46,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.exp-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--forest-green), var(--rich-green));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.exp-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}

.exp-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 10px;
}

.exp-desc {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.7;
}

/* =============================================
   STAY
   ============================================= */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stay-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,61,46,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.stay-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.stay-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: var(--beige);
}

.stay-card:hover .stay-img-wrap img { transform: scale(1.06); }

.stay-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--forest-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.stay-body { padding: 22px 20px 24px; }

.stay-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 8px;
}

.stay-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--beige);
}

.gallery-item--tall  { grid-row: span 2; }
.gallery-item--wide  { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,61,46,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}

.why-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 6px;
}

.why-content p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.6;
}

/* =============================================
   LOCATION
   ============================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.location-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon {
  width: 44px;
  height: 44px;
  background: var(--forest-green);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-detail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest-green);
  margin-bottom: 4px;
}

.location-detail p,
.location-detail a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.loc-link {
  color: var(--rich-green);
  font-weight: 500;
  transition: color var(--transition);
}

.loc-link:hover { color: var(--forest-green); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.map-wrap iframe { display: block; }

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--forest-green);
}

.section-header--light .section-eyebrow { color: var(--gold); }

.eyebrow--gold { color: var(--gold) !important; }

.title--white { color: var(--white) !important; }

.desc--light { color: rgba(255,255,255,0.75) !important; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.enquiry-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--forest-green);
  text-transform: uppercase;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rich-green);
  box-shadow: 0 0 0 3px rgba(15,107,62,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab0b8; }

.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B3D2E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.8rem;
  color: var(--text);
  text-align: center;
  margin-top: -8px;
}

/* Contact Aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  backdrop-filter: blur(4px);
}

.cc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-icon--green { background: var(--rich-green); color: var(--white); }
.cc-icon--wa    { background: var(--wa-green);   color: var(--white); }
.cc-icon--gold  { background: var(--gold);        color: var(--forest-green); }

.cc-body strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3px;
}

.cc-link {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  transition: color var(--transition);
}

.cc-link:hover { color: var(--gold); }

.contact-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #071f17;
  padding: 72px 0 0;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer logo — filter removes white; logo floats clean on dark footer */
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-wrap .logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: url(#remove-white-bg);
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
  background: var(--gold);
  color: var(--forest-green);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; opacity: 0.7; }

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}

.footer-sub { font-style: italic; }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--forest-green);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--forest-green);
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }

  .about-grid     { gap: 48px; }
  .about-img      { height: 460px; }

  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .stay-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }

  .location-grid  { grid-template-columns: 1fr; }
  .map-wrap iframe { height: 320px; }

  .contact-grid   { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }

  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  :root { --header-h: 82px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 44px; }

  /* Header mobile */
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--forest-green);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

  /* Mobile nav links — white text on dark green slide-down panel */
  .main-nav .nav-link {
    color: rgba(255, 255, 255, 0.92);
  }

  .main-nav .nav-link:hover {
    color: var(--gold);
  }

  /* Smaller logo on mobile */
  .logo-img { height: 58px; }

  .main-nav.open {
    max-height: 600px;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 24px;
  }

  .nav-link {
    display: block;
    padding: 13px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }

  .nav-link::after { display: none; }

  .header-cta { display: none; }
  .hamburger  { display: flex; }

  /* Hero */
  .hero-title    { font-size: 2.8rem; }
  .hero-actions  { flex-direction: column; align-items: center; }

  /* About */
  .about-grid      { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { order: -1; }
  .about-img       { height: 320px; }
  .about-badge     { bottom: -16px; right: -8px; width: 90px; height: 90px; }
  .about-content   { padding-right: 0; }

  /* Experiences */
  .experiences-grid { grid-template-columns: 1fr; }

  /* Stay */
  .stay-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item--wide  { grid-column: span 2; }
  .gallery-item--tall  { grid-row: span 1; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Location */
  .location-info { gap: 20px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .hero-title  { font-size: 2.2rem; }
  .hero-sub    { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--wide { grid-column: span 1; }
}
