/* ============================================================
   PRESTIGE GOLF TOURS — MAIN STYLESHEET
   ============================================================ */

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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green-dark:   #1a4731;
  --green-mid:    #2a6246;
  --green-light:  #3d8b65;
  --gold:         #c8a84b;
  --gold-light:   #e8d5a3;
  --gold-dim:     rgba(200,168,75,0.15);
  --cream:        #faf8f5;
  --grey-light:   #f0ede8;
  --grey-mid:     #9a9390;
  --charcoal:     #1c1c1c;
  --text-body:    #2d2d2d;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --sp:        80px;    /* section padding */
  --radius:    10px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.11);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --ease:      0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4vw,  2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw,  1.75rem); }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--gold); }
.text-green  { color: var(--green-dark); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-muted  { color: var(--grey-mid); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section    { padding: var(--sp) 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 108px 0; }

/* ============================================================
   ANNOUNCEMENT STRIP
   ============================================================ */
.announcement {
  background: var(--gold);
  color: var(--charcoal);
  text-align: center;
  padding: 10px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announcement a { text-decoration: underline; color: var(--green-dark); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,34,24,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,168,75,0.18);
  transition: all var(--ease);
}
.nav.has-announcement { top: 40px; }
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo img { height: 50px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold-light); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-nav:hover { background: #b8942f; transform: translateY(-1px); }

/* Hide duplicate Enquire Now button inside nav-links on desktop (nav-right has it) */
.nav-links .btn-nav { display: none; }
@media (max-width: 768px) {
  .nav-links.open .btn-nav {
    display: inline-flex;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: #b8942f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,168,75,0.4);
}

.btn-green {
  background: var(--green-dark);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,71,49,0.3);
}

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

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

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1a12;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5,20,12,0.82) 0%,
    rgba(5,20,12,0.52) 55%,
    rgba(5,20,12,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  max-width: 820px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.5);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  color: rgba(255,255,255,0.86);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 620px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
}
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 0;
  border-bottom: 3px solid var(--gold);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { color: var(--gold); }
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  margin-top: 3px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: 56px; }
.section-header.center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: var(--grey-mid);
  font-size: 1.02rem;
  line-height: 1.75;
}
.divider {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 14px;
}
.divider.center { margin: 14px auto 0; }

/* ============================================================
   TOUR CARDS
   ============================================================ */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  position: relative;
}
.tour-card:hover,
.tour-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-dark);
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}
.tour-card:hover .tour-card-body h3 {
  color: var(--green-dark);
}
.tour-card:hover .btn-green {
  background: var(--gold);
  color: var(--charcoal);
}
.tour-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }

.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-avail   { background: var(--green-dark);  color: var(--white); }
.badge-limited { background: #c26010;             color: var(--white); }
.badge-sold    { background: #5a5a5a;             color: var(--white); }
.badge-soon    { background: var(--gold);         color: var(--charcoal); }

.tour-dest {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.tour-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--grey-mid);
  font-size: 0.82rem;
}
.tour-meta-item svg { color: var(--gold); }
.tour-card-body h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.tour-card-body p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.tour-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.inc-tag {
  background: var(--grey-light);
  color: var(--text-body);
  padding: 4px 11px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
}
.tour-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--grey-light);
}
.price-from  { font-size: 0.76rem; color: var(--grey-mid); }
.price-amt   { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.price-pp    { font-size: 0.76rem; color: var(--grey-mid); }

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.features-section { background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-icon svg { color: var(--white); }
.feature-card h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 10px; }
.feature-card p  { font-size: 0.93rem; color: #666; line-height: 1.7; margin: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--green-dark); }
.how-section .section-header h2,
.how-section .section-label { color: var(--white); }
.how-section .section-header p { color: rgba(255,255,255,0.68); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(200,168,75,0.25);
}
.step-item { text-align: center; padding: 8px 16px; }
.step-num {
  width: 70px; height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(200,168,75,0.08);
  position: relative;
  z-index: 1;
}
.step-item h4 { color: var(--white); margin-bottom: 8px; }
.step-item p  { color: rgba(255,255,255,0.62); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 560px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.dest-card:first-child { grid-row: 1 / 3; }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,20,12,0.85) 0%, rgba(5,20,12,0.08) 60%);
}
.dest-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--white);
}
.dest-country {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.dest-content h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.dest-content p  { color: rgba(255,255,255,0.76); font-size: 0.84rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star  { color: var(--gold); font-size: 1rem; }
.testi-card blockquote {
  font-style: italic;
  color: #555;
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 22px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.author-name   { font-weight: 700; font-size: 0.93rem; color: var(--charcoal); }
.author-detail { font-size: 0.8rem; color: var(--grey-mid); margin-top: 1px; }

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 260px;
  overflow: hidden;
}
.photo-strip-item { overflow: hidden; }
.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.photo-strip-item:hover img { transform: scale(1.1); }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  aspect-ratio: 4/3;
}
.about-img-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  width: 114px; height: 114px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.about-badge-label { font-size: 0.67rem; font-weight: 700; color: #333; line-height: 1.25; margin-top: 4px; max-width: 72px; }

.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 18px; }
.about-text p  { color: #555; line-height: 1.8; }
.checklist {
  margin: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-body);
}
.check-circle {
  width: 22px; height: 22px;
  background: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-circle svg { color: var(--white); }

/* ============================================================
   ENQUIRY SECTION
   ============================================================ */
.enquiry-section {
  background: linear-gradient(135deg, var(--green-dark), #0c2118);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -8%;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: rgba(200,168,75,0.05);
  pointer-events: none;
}
.enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.enquiry-text h2   { color: var(--white); margin-bottom: 14px; }
.enquiry-text p    { color: rgba(255,255,255,0.72); line-height: 1.78; margin-bottom: 36px; }
.contact-list      { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.96rem;
}
.contact-item svg  { color: var(--gold); flex-shrink: 0; }
.contact-item a    { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }

.enquiry-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 14px;
  padding: 38px;
  backdrop-filter: blur(6px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.form-group select option { background: #1a4731; color: var(--white); }
.form-group textarea       { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.native-enquiry-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: wait;
}
.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #09160e;
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand img  { height: 50px; margin-bottom: 16px; }
.footer-brand p    { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.55); max-width: 270px; margin-bottom: 22px; }
.footer-social     { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: all var(--ease);
}
.social-btn:hover { background: var(--gold); color: var(--charcoal); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul   { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.56);
  transition: color var(--ease);
}
.footer-col li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a   { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--ease);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero {
  background: var(--green-dark);
  padding: 128px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1      { color: var(--white); margin-bottom: 12px; }
.page-hero p       { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 580px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a   { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb sep { color: rgba(255,255,255,0.35); }

/* ============================================================
   TOUR DETAIL
   ============================================================ */
.tour-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 44px;
  align-items: start;
}
.tour-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 44px;
}
.tg-item { overflow: hidden; }
.tg-item:first-child { grid-row: 1 / 3; }
.tg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tg-item:hover img { transform: scale(1.05); }

.tour-detail-body h2 {
  margin: 40px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-light);
}
.tour-detail-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.tour-detail-body p { color: #555; font-size: 0.98rem; line-height: 1.8; }

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.inc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-body);
}
.inc-icon     { color: var(--green-dark); flex-shrink: 0; margin-top: 2px; }
.exc-icon     { color: #aaa; flex-shrink: 0; margin-top: 2px; }
.exc-list     { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.exc-item     { display: flex; align-items: flex-start; gap: 10px; font-size: 0.94rem; color: #666; }

/* BOOKING SIDEBAR */
.booking-sidebar { position: sticky; top: 108px; }
@media (min-width: 769px) {
  .booking-sidebar:not(.smart-sticky) {
    max-height: calc(100vh - 128px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.12) transparent;
  }
  .booking-sidebar:not(.smart-sticky)::-webkit-scrollbar { width: 5px; }
  .booking-sidebar:not(.smart-sticky)::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 10px; }
}

/* FLOATING CTA BAR */
.tour-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.tour-cta-bar.visible { transform: translateY(0); }
.tour-cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
}
.tour-cta-bar-from {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tour-cta-bar-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.tour-cta-bar .btn {
  white-space: nowrap;
  padding: 11px 28px;
}
.booking-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
}
.booking-head {
  background: var(--green-dark);
  padding: 24px 28px;
  color: var(--white);
}
.booking-head .from   { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.booking-head .price  { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.booking-head .pp     { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.booking-body         { padding: 24px 28px; }
.booking-inc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 0.9rem;
  color: var(--text-body);
}
.booking-inc-item:last-child { border-bottom: none; }
.booking-inc-item svg { color: var(--green-dark); flex-shrink: 0; }
.booking-foot {
  padding: 24px 28px;
  background: var(--cream);
  border-top: 1px solid var(--grey-light);
}
.booking-note { font-size: 0.8rem; color: var(--grey-mid); text-align: center; margin-top: 12px; }

/* Scarcity */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3e0;
  border: 1px solid #f59500;
  color: #a05800;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.scarcity-dot {
  width: 8px; height: 8px;
  background: #f59500;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ============================================================
   FILTER BAR (tours page)
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid #ddd;
  background: var(--white);
  color: var(--text-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3   { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-weight: 600; font-size: 0.88rem; margin-bottom: 10px; }
.team-card p    { font-size: 0.9rem; color: #666; margin: 0; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  width: 54px; height: 54px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { color: var(--gold); }
.value-item h4  { margin-bottom: 6px; color: var(--green-dark); }
.value-item p   { font-size: 0.91rem; color: #666; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--grey-light);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  transition: color var(--ease);
}
.faq-question:hover { color: var(--green-dark); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
}
.faq-item.open .faq-icon { background: var(--green-dark); transform: rotate(45deg); }
.faq-icon svg { color: var(--green-dark); transition: color var(--ease); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: #666;
  font-size: 0.96rem;
  line-height: 1.78;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-cream  { background: var(--cream); }
.bg-green  { background: var(--green-dark); }
.bg-white  { background: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* Fade-in on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sp: 64px; }
  .tours-grid         { grid-template-columns: repeat(2, 1fr); }
  .features-grid      { grid-template-columns: repeat(2, 1fr); }
  .steps-grid         { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .steps-grid::before { display: none; }
  .destinations-grid  { grid-template-columns: 1fr 1fr; height: auto; gap: 12px; }
  .dest-card:first-child { grid-column: 1/3; grid-row: auto; min-height: 300px; }
  .dest-card          { min-height: 220px; }
  .testimonials-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > *:last-child { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .about-inner        { gap: 48px; }
  .enquiry-inner      { gap: 44px; }
  .tour-detail-wrap   { grid-template-columns: 1fr 340px; }
  .stats-inner        { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  :root { --sp: 52px; }
  html { font-size: 17px; }
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone  { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--green-dark);
    padding: 90px 32px 40px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open a {
    padding: 16px 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-close-btn {
    display: flex;
    position: absolute;
    top: 18px; right: 18px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 1.3rem;
  }

  .hero { min-height: 100svh; }
  .hero-content { padding-top: 110px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { gap: 16px; }

  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .tours-grid   { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; height: auto; }
  .dest-card:first-child { grid-column: auto; }
  .dest-card    { min-height: 240px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > *:nth-child(n+2) { display: none; }
  .photo-strip  { grid-template-columns: repeat(3, 1fr); height: 180px; }
  .photo-strip-item:nth-child(n+4) { display: none; }
  .about-inner  { grid-template-columns: 1fr; gap: 48px; }
  .about-badge  { bottom: -18px; right: -10px; }
  .enquiry-inner { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .tour-detail-wrap { grid-template-columns: 1fr; }
  .booking-sidebar  { position: static; }
  .tour-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .tg-item:first-child { grid-column: 1/3; grid-row: auto; }
  .form-row     { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .values-grid  { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 12px 16px; }
  .container { padding: 0 16px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child { border-bottom: none; }
  .booking-head .price { font-size: 2rem; }
  .tour-cta-bar-inner { padding: 10px 16px; }
  .tour-cta-bar-price { font-size: 1.25rem; }
  .tour-cta-bar .btn { padding: 10px 18px; font-size: 0.85rem; }
}
