/* ============================================================
   FRIENDS VALLEY HOME STAY — Main Stylesheet
   ============================================================ */

:root {
  --green-dark:   #1a4a2e;
  --green-mid:    #2d7a4f;
  --green-light:  #4caf7d;
  --green-pale:   #e8f5ee;
  --gold:         #c8973a;
  --gold-light:   #f5d78e;
  --cream:        #faf8f3;
  --white:        #ffffff;
  --text-dark:    #1a2a1e;
  --text-mid:     #3d5245;
  --text-light:   #6b8575;
  --border:       #d8e8df;
  --shadow-sm:    0 2px 12px rgba(30,70,45,.08);
  --shadow-md:    0 8px 32px rgba(30,70,45,.14);
  --shadow-lg:    0 20px 60px rgba(30,70,45,.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--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; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: .8rem;
}
.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,122,79,.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,79,.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  padding: .75rem 0;
  box-shadow: var(--shadow-sm);
}
/* Logo on dark background (transparent nav over hero) */
.navbar:not(.scrolled) .logo-text { color: #ffffff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.navbar:not(.scrolled) .logo-sub  { color: #c9956c; letter-spacing: .2em; font-weight: 700; }
.navbar:not(.scrolled) .logo-icon .material-symbols-outlined {
  background: linear-gradient(170deg, #4caf6e 0%, #1a6b3a 50%, #0a3d1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo on white background (scrolled) */
.navbar.scrolled .logo-text { color: #133621; }
.navbar.scrolled .logo-sub  { color: #8b6f5e; }
.navbar.scrolled .logo-icon  { color: #2a4d36; }

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--green-mid); }
.navbar.scrolled .nav-cta { background: var(--green-mid); color: var(--white) !important; }
.navbar.scrolled .nav-toggle span { background: var(--text-dark); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #133621;
  font-weight: 700;
  text-decoration: none;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a4d36;
  flex-shrink: 0;
}
.logo-icon .material-symbols-outlined {
  font-size: 2rem;
  font-variation-settings: 'FILL' 1, 'wght' 400;
  background: linear-gradient(160deg, #1a6b3a 0%, #0a3d20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
  color: #133621;
  letter-spacing: -.01em;
}
.logo-sub { display: block; font-size: .56rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: #8b6f5e; opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: width .3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--white) !important;
  color: var(--green-dark) !important;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  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-in-out;
  transform: scale(1.05);
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,15,10,.88) 0%,
    rgba(10,30,20,.70) 50%,
    rgba(5,15,10,.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  padding: 0 1.5rem;
}
.hero-tagline {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .4rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .9rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  opacity: .9;
  margin-bottom: 1.6rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  padding: .4rem 1rem;
  border-radius: 50px;
}
.hero-badges span i { color: var(--gold-light); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-dots {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  z-index: 3;
  display: flex;
  gap: .5rem;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 1.8rem 0;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  padding: .5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-item i {
  font-size: 1.6rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.stat-item strong { display: block; font-weight: 600; font-size: .95rem; }
.stat-item span { font-size: .8rem; opacity: .7; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 380px; object-fit: cover; }
.about-img-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: .8rem;
}
.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.about-award {
  position: absolute;
  top: 1.5rem; right: -1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  text-align: center;
}
.about-award i { font-size: 1.8rem; color: var(--gold); }
.about-award strong { font-weight: 700; color: var(--text-dark); }
.about-award span { color: var(--text-light); }

.about-content { }
.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.about-content p {
  color: var(--text-light);
  margin-bottom: .9rem;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin: 2rem 0;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 1rem .5rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  color: var(--green-dark);
  cursor: pointer;
  transition: background .3s ease, color .3s ease, transform .3s ease !important;
}
.feature:hover { background: var(--green-mid); color: var(--white); transform: translateY(-2px); }
.feature i { font-size: 1.3rem; color: var(--green-mid); transition: color .3s ease !important; }
.feature:hover i { color: var(--white); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 6rem 0;
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: .8rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,30,20,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
}

/* ============================================================
   DESTINATION INTRO
   ============================================================ */
.destination-intro {
  padding: 5rem 0;
  background: var(--green-dark);
  color: var(--white);
}
.dest-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dest-intro-content .section-label { background: rgba(255,255,255,.15); color: var(--gold-light); }
.dest-intro-content .section-title { color: var(--white); }
.dest-intro-content p { color: rgba(255,255,255,.8); margin-bottom: 1rem; }
.dest-highlights {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.dest-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 1.2rem .5rem;
}
.dest-highlight i { font-size: 1.4rem; color: var(--gold-light); }
.dest-highlight span { font-size: .95rem; font-weight: 600; }
.dest-highlight small { font-weight: 400; opacity: .7; font-size: .8rem; }
.dest-intro-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   ATTRACTIONS
   ============================================================ */
.attractions {
  padding: 6rem 0;
  background: var(--white);
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.attraction-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.attraction-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.attraction-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.attraction-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.attraction-card:hover .attraction-img img {
  transform: scale(1.07);
}
.attraction-dist {
  position: absolute;
  bottom: .8rem; right: .8rem;
  background: rgba(0,0,0,.45);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .65rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.attraction-body { padding: 1.4rem; }
.attraction-rating {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-bottom: .6rem;
  font-size: .8rem;
  color: var(--gold);
}
.attraction-rating span { color: var(--text-light); margin-left: .25rem; }
.attraction-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: .6rem;
  font-weight: 700;
}
.attraction-body p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.attraction-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.attraction-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: .2rem .6rem;
  border-radius: 50px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 6rem 0;
  background: var(--cream);
}
.reviews-overall {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.overall-score {
  text-align: center;
  flex-shrink: 0;
}
.score-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.score-stars { color: var(--gold); font-size: 1.1rem; margin: .5rem 0; }
.score-label { display: block; font-size: .8rem; color: var(--text-light); margin-bottom: .5rem; }
.google-logo-small { width: 60px; margin: .5rem auto 0; }
.overall-bars { flex: 1; }
.bar-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .7rem;
  font-size: .85rem;
}
.bar-row > span:first-child { width: 90px; color: var(--text-mid); font-weight: 500; flex-shrink: 0; }
.bar-row > span:last-child { color: var(--green-dark); font-weight: 700; width: 24px; }
.bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--green-mid); border-radius: 4px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: .9rem; color: var(--text-dark); }
.reviewer-info span { font-size: .75rem; color: var(--text-light); }
.review-google-icon { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; }
.review-stars { color: var(--gold); font-size: .85rem; margin-bottom: .75rem; }
.review-text { font-size: .88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: .75rem; font-style: italic; }
.review-date { font-size: .75rem; color: var(--text-light); }

/* ============================================================
   BOOKING
   ============================================================ */
.book {
  padding: 6rem 0;
  background: var(--white);
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.booking-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-dark);
}
.booking-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.booking-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1rem;
}
.booking-logo i { font-size: 1.6rem; }
.booking-logo strong { font-size: 1.1rem; font-weight: 700; }
.booking-card p { font-size: .88rem; color: var(--text-light); flex: 1; }
.booking-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--transition);
}
.mmt  { border-color: #e8f0fe; }
.mmt  .booking-logo i, .mmt  .booking-btn { color: #1a73e8; }
.mmt:hover  { border-color: #1a73e8; background: #f0f4ff; }

.airbnb { border-color: #ffe8e6; }
.airbnb .booking-logo i, .airbnb .booking-btn { color: #ff5a5f; }
.airbnb:hover { border-color: #ff5a5f; background: #fff0ef; }

.tripadvisor { border-color: #e6f5e6; }
.tripadvisor .booking-logo i, .tripadvisor .booking-btn { color: #00aa6c; }
.tripadvisor:hover { border-color: #00aa6c; background: #f0faf5; }

.direct { border-color: var(--green-pale); }
.direct .booking-logo i, .direct .booking-btn { color: var(--green-mid); }
.direct:hover { border-color: var(--green-mid); background: var(--green-pale); }

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: 6rem 0;
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: stretch;
}
/* Info cards */
.loc-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid #eef0f3;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  margin-bottom: .75rem;
  transition: var(--transition);
}
.loc-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); transform: translateY(-2px); }
.loc-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--green-pale);
  color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.loc-card strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-dark); margin-bottom: .25rem; }
.loc-card p { color: var(--text-light); font-size: .84rem; line-height: 1.55; margin: 0; }
.loc-card a { color: var(--green-mid); font-weight: 500; }
.loc-card a:hover { text-decoration: underline; }
.loc-directions-btn { width: 100%; justify-content: center; margin-top: .5rem; }
/* Map */
.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border: 4px solid var(--white);
}

/* ============================================================
   TRAVEL STORIES (homepage section)
   ============================================================ */
.travel-stories { padding: 6rem 0; background: var(--cream); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.story-img-link { display: block; overflow: hidden; }
.story-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .4s ease;
}
.story-card:hover .story-img { transform: scale(1.04); }
.story-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--green-mid);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 50px;
}
.story-body { padding: 1.6rem; }
.story-meta {
  display: flex;
  gap: 1rem;
  font-size: .76rem;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.story-meta i { color: var(--green-mid); margin-right: .25rem; }
.story-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: .7rem;
}
.story-body h3 a:hover { color: var(--green-mid); }
.story-body p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: var(--transition);
}
.story-link:hover { gap: .7rem; color: var(--green-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { color: var(--white); }
.footer-brand .logo-text { color: #ffffff; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.footer-brand .logo-sub  { color: #c9956c; letter-spacing: .2em; font-weight: 700; }
.footer-brand .logo-icon .material-symbols-outlined {
  background: linear-gradient(170deg, #4caf6e 0%, #1a6b3a 50%, #0a3d1e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  font-size: .95rem;
}
.footer-social a:hover { background: var(--green-mid); color: var(--white); }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: .95rem;
}
.footer-links ul li { margin-bottom: .6rem; }
.footer-links ul a { font-size: .88rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-links ul a:hover { color: var(--green-light); padding-left: 4px; }
.footer-contact p { font-size: .88rem; margin-bottom: .75rem; display: flex; align-items: flex-start; gap: .6rem; }
.footer-contact i { color: var(--green-light); margin-top: .2rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--green-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   CONTACT FAB
   ============================================================ */
.contact-fab-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
  pointer-events: none;
}
.contact-fab-wrapper .contact-fab { pointer-events: auto; }
.contact-fab-wrapper .contact-popup.open { pointer-events: auto; }
.contact-fab {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .9rem 1.4rem;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(45,122,79,.45);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.contact-fab:hover { background: var(--green-dark); transform: scale(1.05); }
.fab-open { display: flex; align-items: center; gap: .5rem; }
.fab-label { font-size: .88rem; }
.fab-close { display: none; }
.contact-fab.open .fab-open { display: none; }
.contact-fab.open .fab-close { display: flex; align-items: center; }

.contact-popup {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  width: 340px;
  max-height: 80vh;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .3s, transform .3s cubic-bezier(.4,0,.2,1);
}
.contact-popup.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.contact-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e5c35 100%);
  border-radius: 20px 20px 0 0;
}
.contact-popup-header h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .15rem; }
.contact-popup-header p { font-size: .75rem; color: rgba(255,255,255,.65); }
.contact-popup-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.contact-popup-close:hover { background: rgba(255,255,255,.28); }
.contact-popup-body { padding: 1.25rem 1.4rem 1.4rem; }
.contact-option {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  margin-bottom: .6rem;
  transition: var(--transition);
  border: 1.5px solid #eef0f3;
  color: var(--text-dark);
  text-decoration: none;
}
.contact-option:last-of-type { margin-bottom: 0; }
.contact-option:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.contact-option-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-option > div:not(.contact-option-icon) { flex: 1; }
.contact-option strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-dark); }
.contact-option span { font-size: .78rem; color: var(--text-light); }
.contact-option > i { color: #ccc; font-size: .75rem; }
.phone .contact-option-icon { background: #eef3ff; color: #4285f4; }
.phone:hover { border-color: #4285f4; background: #f5f8ff; }
.email .contact-option-icon { background: #fff4eb; color: #f08c00; }
.email:hover { border-color: #f08c00; background: #fffaf5; }
.contact-popup-divider {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #b0b8c1;
  text-align: center;
  margin: 1.1rem 0 .9rem;
  position: relative;
}
.contact-popup-divider::before, .contact-popup-divider::after {
  content: '';
  position: absolute;
  top: 50%; width: 28%;
  height: 1px;
  background: #e8eaed;
}
.contact-popup-divider::before { left: 0; }
.contact-popup-divider::after  { right: 0; }
.contact-form { display: flex; flex-direction: column; gap: .55rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #eef0f3;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  color: var(--text-dark);
  background: #f8f9fb;
  transition: var(--transition);
  resize: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #aab0bb; }
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,122,79,.08);
}
.contact-form-success {
  text-align: center;
  padding: 1rem;
  color: var(--green-mid);
  font-weight: 600;
  font-size: .9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-award       { right: .5rem; }
  .dest-intro-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .dest-intro-img img { height: 300px; }
  .attractions-grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid      { grid-template-columns: repeat(2, 1fr); }
  .booking-grid      { grid-template-columns: repeat(2, 1fr); }
  .location-grid     { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-container   { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
    padding: 2rem;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--text-dark); font-size: 1.05rem; }
  .nav-toggle { display: flex; z-index: 1100; }
  .navbar:not(.scrolled) .nav-toggle span { background: var(--white); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-large { grid-column: span 2; grid-row: span 1; }
  .gallery-tall  { grid-row: span 1; }
  .gallery-wide  { grid-column: span 2; }

  .attractions-grid { grid-template-columns: 1fr; }
  .reviews-grid     { grid-template-columns: 1fr; }
  .booking-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .about-features   { grid-template-columns: repeat(2, 1fr); }
  .stats-container  { grid-template-columns: repeat(2, 1fr); }
  .stat-item        { border-right: none; }
  .dest-highlights  { grid-template-columns: 1fr; }
  .reviews-overall  { flex-direction: column; align-items: flex-start; padding: 1.5rem; }
  .contact-popup    { width: calc(100vw - 3rem); }
  .contact-fab-wrapper { bottom: 1.2rem; right: 1.2rem; }
  .footer-bottom    { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; align-items: center; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; }
  .gallery-wide  { grid-column: span 1; }
  .about-img-secondary { grid-template-columns: 1fr; }
}
