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

body.loading { visibility: hidden; }

:root {
  /* Brand Colors */
  --green:      #2A3929;
  --green-mid:  #4a6b4c;
  --gold:       #DCC98A;
  --amber:      #C08B45;
  --cream:      #E7E2D8;
  --cream-light:#F7F6F2;
  --white:      #FFFFFF;

  /* Text Colors */
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #6B6B6B;

  /* Border & UI */
  --border:     #ddd9d0;

  /* State Colors */
  --error:      #e63946;
  --success:    #2a9d8f;

  /* Shadows */
  --shadow-sm:  0 2px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 80px rgba(0,0,0,0.18);

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body:    'Montserrat', sans-serif;

  /* Type Scale */
  --fs-xs:   11px;   /* overlines, labels */
  --fs-sm:   12px;   /* meta, captions */
  --fs-base: 13px;   /* card body, small content */
  --fs-md:   14px;   /* default body */
  --fs-lg:   15px;   /* intro paragraphs */
  --fs-h4:   16px;   /* subheadings */
  --fs-h3:   22px;   /* section sub-titles */
  --fs-h2:   36px;   /* section titles */
  --fs-hero: 54px;   /* hero display */
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

/* Typography line-heights */
h1, h2, h3, h4, h5, h6,
.hero-title, .section-title, .tour-listing-title,
.contact-form-heading, .contact-info-heading,
.bk-heading, .bk-confirm-title, .bp-step,
.stat-number, .tour-modal-title, .tour-tag,
.team-name, .stat-label, .footer-col h5 {
  line-height: 1.2;
}

p, li, .hero-subtitle, .tour-card-desc,
.tour-listing-desc, .contact-form-subheading,
.contact-info-subheading, .value-card p,
.team-bio, .testimonial-text, .bp-step,
.bk-confirm-sub, .bk-next-steps li,
.itinerary-content .itinerary-activity {
  line-height: 1.65;
}

small, caption, .form-label, .tour-tag,
.tour-card-meta, .tour-listing-meta,
.tour-listing-price span, .bp-num, .bp-step,
.stat-label, .footer-slogan, .tour-modal-meta span {
  line-height: 1.5;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 56px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.25s;
  position: relative;
}

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

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.btn-book-now {
  background: #DCC98A;
  color: var(--green);
  padding: 8px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(220,201,138,0.35);
}

.btn-book-now:hover {
  background: #cbb970;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220,201,138,0.5);
}

/* Navbar right-side action group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== HERO WRAPPER (contains navbar + hero) ===== */
.hero-wrapper {
  position: relative;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--short {
  min-height: 340px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

/* Gradient: solid green on left, fades to transparent at center */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #304331 0%,
    #304331 30%,
    rgba(48, 67, 49, 0.82) 45%,
    rgba(48, 67, 49, 0.4) 60%,
    transparent 75%
  );
  z-index: 1;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 56px 72px 56px;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  word-spacing: 10px;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 14px;
}

/* Primary Button (Gold - High Impact) */
.btn-primary {
  background: var(--gold);
  color: var(--green);
  padding: 15px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #cbb970;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary Button (Outlined - Lower Prominence) */
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ===== SECTION SHARED ===== */
.section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

/* ===== POPULAR TOURS ===== */
.tours-section {
  padding: 72px 56px;
  background: var(--white);
}

.tours-grid {
  display: flex;
  gap: 24px;
  position: relative;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tour-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* Featured Card for Handpicked Tours */
.tour-card.featured {
  position: relative;
  z-index: 10;
  transform: translateY(-4px);
}

.tour-card.featured .tour-card-img {
  box-shadow: var(--shadow-md);
}

.tour-card.featured .tour-card-link::after {
  content: 'Featured';
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tour-card:hover .tour-card-img {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tour-card-title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.tour-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.tour-card-meta .price {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14px;
}

.tour-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 10px;
  line-height: 1.5;
}

.tour-card-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tour-card-link:hover { text-decoration: underline; }

.tours-nav-arrow {
  position: absolute;
  right: -18px;
  top: 95px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 14px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}

.tours-nav-arrow:hover { background: var(--green-mid); }
.tours-nav-arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ===== WHY CHOOSE ===== */
.why-section {
  padding: 72px 56px;
  background: var(--cream-light);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: flex;
}

.why-card {
  text-align: center;
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid rgba(0,0,0,0.12);
}

.why-card:first-child { padding-left: 0; }
.why-card:last-child  { padding-right: 0; border-right: none; }

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  box-shadow: var(--shadow-sm), var(--shadow-sm);
}

.why-card h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery-section {
  display: flex;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 16px 48px rgba(0,0,0,0.10);
}

.gallery-left {
  flex: 0 0 30%;
  background: var(--green);
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.gallery-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 18px;
}

.gallery-desc {
  font-size: 14px;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 32px;
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.25s;
  width: fit-content;
  letter-spacing: 0.3px;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green);
}

.gallery-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--white);
}

.gallery-cell {
  overflow: hidden;
}

.gallery-cell--large {
  grid-row: 1 / 3;
  border-left: 2px solid var(--white);
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-cell img:hover {
  transform: scale(1.05);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 72px 56px;
  background: var(--cream-light);
}

.testimonials-section .section-title {
  margin-bottom: 6px;
}

.testimonials-section .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 36px;
}

.testimonials-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 72px;
}

.testimonial-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.25s;
}

.testimonial-arrow:hover {
  background: var(--green-mid);
  transform: scale(1.08);
}
.testimonial-arrow:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  flex: 1;
}

.testimonial-card {
  border-radius: 10px;
  padding: 24px;
  background: var(--white);
}

.testimonial-body {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-quote-icon {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  flex-shrink: 0;
  margin-top: 2px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}

.testimonial-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ===== CTA ===== */
.cta-section {
  background: var(--green);
  padding: 72px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cta-icon {
  width: 56px;
  height: 56px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  flex-shrink: 0;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  margin-top: 2px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
}

.btn-cta-primary {
  background: #DCC98A;
  color: var(--green);
  padding: 16px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(220,201,138,0.3);
}

.btn-cta-primary:hover {
  background: #d4973e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(220,201,138,0.45);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ===== PARTNERS ===== */
.partners-section {
  padding: 80px 56px;
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}

.partners-section .section-title {
  margin-bottom: 6px;
}

.partners-section .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
}

.partners-subtitle {
  font-size: var(--fs-md);
  color: var(--text-light);
  max-width: 520px;
  margin: 20px auto 52px;
}

.partners-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  min-width: 200px;
  flex: 1 1 200px;
  max-width: 260px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  text-decoration: none;
  color: inherit;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(42,57,41,0.12);
  border-color: var(--gold);
}

.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}


.partner-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ===== FOOTER ===== */
.footer {
  padding: 72px 56px 36px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 495px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.footer-brand-left {
  display: flex;
  flex-direction: column;
}

.footer-brand-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.footer-slogan {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 5px;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: var(--text-mid);
  font-size: 16px;
  transition: color 0.25s;
}

.footer-socials a:hover { color: var(--green); }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  line-height: 1.6;
}

.footer-col a {
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--green); }

.footer-contact p {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact i {
  color: var(--green);
  width: 14px;
}

.footer-payment {
  text-align: right;
}

.footer-payment-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.footer-payment-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 8px;
}

.payment-icon {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-mid);
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
  flex-shrink: 0;
  order: 1;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.2); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav auth links — hidden on desktop */
.nav-mobile-auth { display: none; }
.nav-mobile-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
}
.nav-mobile-book {
  display: inline-block;
  margin-top: 4px;
  background: var(--gold);
  color: var(--green) !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .navbar { padding: 12px 32px; }
  .logo img { height: 80px; }
  .nav-links { gap: 24px; }
  .hero-content { padding: 100px 32px 72px; }
  .hero-title { font-size: 42px; }
  .tours-section { padding: 56px 28px; }
  .tours-grid { flex-wrap: wrap; }
  .tour-card { flex: 0 0 calc(50% - 12px); }
  .why-section { padding: 56px 28px; }
  .why-grid { flex-wrap: wrap; }
  .why-card { flex: 0 0 calc(50% - 32px); border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding-bottom: 24px; margin-bottom: 8px; }
  .why-card:nth-child(odd) { border-right: 1px solid rgba(0,0,0,0.12); }
  .why-card:nth-last-child(-n+2) { border-bottom: none; }
  .gallery-section { flex-direction: column; }
  .gallery-left { flex: unset; padding: 52px 36px; }
  .gallery-right { grid-template-columns: 2fr 1fr; min-height: 320px; }
  .gallery-cell--large { grid-row: 1 / 3; }
  .testimonials-section { padding: 56px 28px; }
  .testimonials-wrapper { padding: 0 28px; }
  .partners-section { padding: 56px 28px; }
  .partners-grid { gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-section { flex-direction: column; text-align: center; gap: 32px; padding: 56px 28px; }
  .footer { padding: 56px 28px 36px; }
  .footer-top { flex-wrap: wrap; }
}

@media (max-width: 900px) {
  /* Navbar — activate hamburger */
  .navbar { padding: 10px 20px; }
  .logo img { height: 60px; }
  .nav-hamburger { display: flex; }

  /* Hide topbar action links — shown inside mobile menu instead */
  .nav-actions > a { display: none; }

  /* Mobile full-screen nav */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a2e1a;
    padding: 80px 32px 48px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.38s;
    z-index: 90;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a:not(.nav-mobile-book):not(.nav-mobile-cta),
  .nav-destinations-btn {
    color: rgba(255,255,255,0.85) !important;
    font-size: 20px !important;
    font-weight: 600;
    display: block;
    padding: 12px 0;
    letter-spacing: 0.02em;
  }
  .nav-links a:not(.nav-mobile-book):not(.nav-mobile-cta):hover,
  .nav-destinations-btn:hover { color: #DCC98A !important; }
  .nav-links a.active { color: #DCC98A !important; }
  .nav-mobile-auth { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 16px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); width: 100%; }
  .nav-mobile-book { display: inline-block; padding: 12px 40px; font-size: 15px !important; }
  .nav-mobile-cta { display: inline-block; padding: 10px 0; font-size: 15px !important; }
}

@media (max-width: 640px) {
  /* Navbar — tighter on small phones */
  .navbar { padding: 10px 16px; }
  .logo img { height: 52px; }

  /* Hero */
  .hero-content { padding: 88px 20px 52px; }
  .hero-title { font-size: 28px; line-height: 1.25; }
  .hero-subtitle { font-size: 13px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary { width: 100%; max-width: 280px; text-align: center; justify-content: center; }

  /* Tour cards */
  .tour-card { flex: 0 0 100%; }

  /* Why grid */
  .why-grid { flex-direction: column; }
  .why-card { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.12); padding: 0 0 20px; }
  .why-card:last-child { border-bottom: none; }

  /* Gallery */
  .gallery-section { height: auto !important; min-height: unset; }
  .gallery-left { padding: 36px 20px; }
  .gallery-right { grid-template-columns: 1fr 1fr; min-height: 220px; }
  .gallery-cell--large { grid-row: unset; }
  .gallery-cell { height: 140px; }

  /* Testimonials */
  .testimonials-wrapper { padding: 0; }
  .testimonial-arrow { width: 44px; height: 44px; }

  /* Partners */
  .partners-grid .partner-card { min-width: 140px; }

  /* CTA */
  .cta-section { padding: 48px 20px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; text-align: center; justify-content: center; }

  /* Footer */
  .footer { padding: 48px 20px 28px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { flex-direction: column; gap: 12px; }
  .footer-logo-img { height: 72px; }
  .footer-brand-left { align-items: center; text-align: center; }
  .footer-slogan { text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-col { align-items: center; text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-contact { align-items: center; text-align: center; }
  .footer-contact p { justify-content: center; }
  .footer-payment { align-items: center; text-align: center; }
  .footer-payment-logos { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }

  /* Filter bar */
  .filter-bar { gap: 8px; }
  .filter-btn { padding: 10px 16px; font-size: 12px; }

  /* Tours listing */
  .page-main { padding: 40px 16px; }

  /* Section titles */
  .section-title { font-size: 28px; }
}

/* ===== PAGE SECTIONS (inner pages) ===== */
.page-main {
  padding: 72px 56px;
  background: var(--white);
}

.page-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.page-intro .section-title { margin-bottom: 12px; }

.page-intro p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ===== TOURS PAGE ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: all 0.22s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.tours-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Tour Listing Card */
.tour-listing-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s, box-shadow 0.28s;
}

.tour-listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tour-listing-card.hidden { display: none; }

/* Focus States for Accessibility */
.tour-listing-card:focus-within,
.filter-btn:focus-visible,
.testimonial-arrow:focus-visible,
.tours-nav-arrow:focus-visible,
.btn-book-tour:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-outline:focus-visible,
.btn-whatsapp:focus-visible,
.btn-submit:focus-visible,
.btn-book-now:focus-visible,
.nav-links a:focus-visible,
.gallery-masonry-item:focus-visible,
.lightbox-nav:focus-visible,
.lightbox-close:focus-visible,
.tour-modal-close:focus-visible,
#tour-modal:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}


.tour-listing-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.tour-listing-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 30px;
}

.tour-listing-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.3;
}

.tour-listing-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tour-listing-meta span { display: flex; align-items: center; gap: 5px; }

.tour-listing-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.tour-listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.tour-listing-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}

.tour-listing-price span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  display: block;
}

.btn-book-tour {
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.22s, transform 0.15s;
}

.btn-book-tour:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* ===== GALLERY PAGE ===== */
.gallery-page-section {
  padding: 72px 56px;
  background: var(--cream-light);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Click hint for gallery items */
.gallery-masonry-item::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

/* Show hint on hover/focus */
.gallery-masonry-item:hover::after,
.gallery-masonry-item:focus-within::after {
  background: rgba(42,57,41,0.45);
  color: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 0.6; }
}

.gallery-masonry-item::after {
  content: '\f065';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(42,57,41,0);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s;
}

.gallery-masonry-item:hover::after {
  background: rgba(42,57,41,0.35);
  color: var(--white);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 4px;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 32px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: var(--white);
}

.about-story-text .section-label { text-align: left; }
.about-story-text .section-title { text-align: left; margin-bottom: 20px; }

.about-story-text p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-story-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 12px;
}

.stats-section {
  background: var(--green);
  padding: 72px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.values-section {
  padding: 72px 56px;
  background: var(--cream-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.value-card h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.team-section {
  padding: 72px 56px;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.team-card {
  text-align: center;
}

.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--border);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 72px 56px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-form-subheading {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.22s, box-shadow 0.22s;
  outline: none;
}

.form-control:focus,
.form-control:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42,57,41,0.08);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.form-control::placeholder { color: var(--text-light); }

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control { cursor: pointer; }

/* Form control error states */
.form-control.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.12);
}

.form-control.error:focus,
.form-control.error:focus-visible {
  outline-color: var(--error);
}

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

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

.contact-info-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-subheading {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 13px;
  color: var(--text-mid);
}

.contact-hours {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-top: 32px;
}

.contact-hours h4 {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--text-dark); }

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  transition: background 0.22s, transform 0.15s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE: INNER PAGES ===== */
@media (max-width: 1024px) {
  .tours-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story { grid-template-columns: 1fr; gap: 36px; padding: 56px 28px; }
  .about-story-img { height: 300px; }
  .stats-section { grid-template-columns: repeat(2, 1fr); padding: 56px 28px; gap: 28px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 28px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 48px; padding: 56px 28px; }
  .gallery-masonry { columns: 2; }
  .gallery-page-section { padding: 56px 28px; }
  .page-main { padding: 56px 28px; }
}

@media (max-width: 640px) {
  .tours-listing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .stats-section { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}

/* ===== MORE DETAILS BUTTON (shared across pages) ===== */
.btn-more-details {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}

.btn-more-details:hover { color: var(--amber); }
.btn-more-details:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ===== TOUR MODAL (shared across pages) ===== */
.tour-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    backdrop-filter: blur(3px);
}
.tour-modal-overlay.open { display: flex; }
.tour-modal-inner {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}
.tour-modal-header {
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
    border-radius: 16px 16px 0 0;
}
.tour-modal-header-left { flex: 1; }
.tour-modal-type-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.tour-modal-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--green); line-height: 1.3; margin-bottom: 6px; }
.tour-modal-meta { font-size: 13px; color: var(--text-light); display: flex; gap: 16px; }
.tour-modal-meta span { display: flex; align-items: center; gap: 5px; }
.tour-modal-close {
    background: var(--cream-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    line-height: 1;
}
.tour-modal-close:hover { background: var(--cream); }
.tour-modal-body { padding: 28px 32px; display: flex; flex-direction: column; gap: 28px; }
.tour-modal-desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.tour-modal-section h4 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); display: inline-block; }
.tour-itinerary { display: flex; flex-direction: column; gap: 0; }
.itinerary-item { display: flex; gap: 16px; position: relative; padding-bottom: 16px; }
.itinerary-item:last-child { padding-bottom: 0; }
.itinerary-time-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 80px; }
.itinerary-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 3px; }
.itinerary-line { width: 2px; flex: 1; background: var(--border); margin-top: 4px; min-height: 24px; }
.itinerary-item:last-child .itinerary-line { display: none; }
.itinerary-time { font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: 0.04em; text-align: right; line-height: 1.2; padding-right: 12px; margin-top: 0; white-space: nowrap; }
.itinerary-content { flex: 1; padding-bottom: 4px; }
.itinerary-activity { font-size: 13px; color: var(--text-dark); font-weight: 500; line-height: 1.5; }
.itinerary-note { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.tour-modal-incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 540px) { .tour-modal-incl-grid { grid-template-columns: 1fr; } }
.tour-incl-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tour-incl-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.tour-incl-list li .incl-icon { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; margin-top: 1px; }
.incl-icon.yes { background: #e8f5e9; color: #2e7d32; }
.incl-icon.no  { background: #fdecea; color: #c62828; }
.tour-modal-footer-bar { padding: 20px 32px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--cream-light); border-radius: 0 0 16px 16px; }
.tour-modal-price { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--green); font-weight: 700; }
.tour-modal-price span { font-family: 'Montserrat', sans-serif; font-size: 12px; color: var(--text-light); font-weight: 400; display: block; line-height: 1.2; }

/* ===== ENHANCED ABOUT PAGE STYLES ===== */
/* Vision section - bold, impactful single card */
.values-section[data-variant="vision"] {
    background: linear-gradient(135deg, #f9f7f2 0%, #e7e2d8 50%, #f9f7f2 100%);
    position: relative;
}
.values-section[data-variant="vision"]::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--amber) 100%);
}
.values-section[data-variant="vision"] .page-intro { max-width: 640px; }
.values-section[data-variant="vision"] .section-label {
    color: var(--amber);
    letter-spacing: 4px;
    font-weight: 700;
}
.values-section[data-variant="vision"] .value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7f6f2 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}
.values-section[data-variant="vision"] .value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 8px; height: 8px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
}
.values-section[data-variant="vision"] .value-card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 8px; height: 8px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
}
.values-section[data-variant="vision"] .value-icon {
    width: 72px; height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    color: var(--white);
    font-size: 32px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.values-section[data-variant="vision"] h4 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700;
    color: var(--green);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.values-section[data-variant="vision"] p {
    font-size: 15px; color: var(--text-mid); line-height: 1.85;
}

/* Who We Are section - enhanced container */
.page-main[data-variant="who-we-are"] {
    background: linear-gradient(180deg, transparent 0%, #f9f7f2 10px, #f9f7f2 calc(100% - 10px), transparent 100%);
    padding-top: 80px; padding-bottom: 80px;
}
.page-main[data-variant="who-we-are"] .value-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9f7f2 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 64px 48px;
    position: relative;
    border-radius: 16px;
}
.page-main[data-variant="who-we-are"] .value-card::before {
    content: '';
    position: absolute; top: 24px; left: 24px; right: 24px; bottom: 24px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    opacity: 0.15;
    pointer-events: none;
}
.page-main[data-variant="who-we-are"] .section-title {
    text-align: center; margin-bottom: 16px;
}
.page-main[data-variant="who-we-are"] .section-title span {
    color: var(--amber); display: block; font-weight: 500; margin-top: 12px;
}

/* Team section - enhanced with gold accents */
.team-section .team-card {
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.team-section .team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.team-section .team-card::before {
    content: '';
    position: absolute;
    top: 50%; left: -16px; right: -16px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.team-section .team-card:hover::before { opacity: 1; }
.team-section .team-img {
    width: 120px; height: 120px; border-radius: 50%;
    object-fit: cover; margin: 0 auto 20px; display: block;
    border: 4px solid var(--cream);
    transition: transform 0.3s, border-color 0.3s;
}
.team-section .team-card:hover .team-img {
    border-color: var(--gold);
    transform: scale(1.05);
}
.team-section .team-img-placeholder {
    width: 120px; height: 120px; border-radius: 50%;
    background: linear-gradient(135deg, #f9f7f2 0%, #e7e2d8 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--amber);
    font-family: 'Playfair Display', serif;
    font-size: 42px; font-weight: 700;
    margin: 0 auto 20px; box-shadow: var(--shadow-sm);
    border: 3px solid var(--gold);
    transition: transform 0.3s;
}
.team-section .team-card:hover .team-img-placeholder {
    transform: scale(1.05);
}
.team-section .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; margin-bottom: 4px;
    color: var(--text-dark);
}
.team-section .team-role {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--amber); margin-bottom: 14px;
}
.team-section .team-bio {
    font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px;
}
.team-section .team-card::after {
    content: '';
    display: block; width: 32px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold) 50%, transparent);
    margin: 16px auto 0; border-radius: 2px;
}
.team-section .team-no-guides {
    grid-column: 1/-1; text-align: center; padding: 56px 24px;
}
.team-section .team-no-guides .icon-container {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--cream-light); margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.team-section .team-no-guides i {
    font-size: 32px; color: var(--text-light); opacity: 0.4;
}
