/* ============================================================
   COME VACATION AFRICA — Luxury Tanzania Tour Operator
   Shared Stylesheet
   ============================================================ */

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

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5edd6;
  --dark:        #0e0c09;
  --dark-brown:  #1c1209;
  --mid-brown:   #2e1f0e;
  --text-dark:   #1a1208;
  --text-body:   #3d2e1e;
  --text-muted:  #7a6a55;
  --cream:       #faf6ee;
  --cream-dark:  #f0e8d8;
  --white:       #ffffff;
  --overlay:     rgba(14, 10, 5, 0.58);
  --overlay-deep:rgba(14, 10, 5, 0.72);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-elegant:'Cormorant Garamond', serif;
  --font-body:   'Lato', sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 4px 24px rgba(14,10,5,0.12);
  --shadow-hover:0 8px 40px rgba(14,10,5,0.22);
  --transition:  0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  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; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* ── Utility Classes ────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.38);
}

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

.btn-white {
  background: var(--white);
  color: var(--text-dark);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ── Top Bar ────────────────────────────────────────────── */
.topbar {
  background: var(--dark-brown);
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.topbar a { color: var(--gold-light); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar-item svg { width: 13px; height: 13px; fill: var(--gold); flex-shrink: 0; }

/* ── Navigation ─────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(14,12,9,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo .logo-main span { color: var(--gold); }
.nav-logo .logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 1px;
  background: var(--gold);
  transition: transform var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-cta {
  font-size: 0.75rem !important;
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deep);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Page Hero (sub-pages) ──────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deep);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
}
.page-hero-content .hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero-content .hero-desc  { margin: 0 auto 0; max-width: 620px; }

/* ── Section Spacing ────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-brown {
  background: var(--dark-brown);
}
.section-cream { background: var(--cream-dark); }
.section-head  { margin-bottom: 3.5rem; }

/* ── Gold Divider ───────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  margin: 1.2rem 0 1.6rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ── Category Cards (Home) ──────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  position: relative;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,10,5,0.88) 0%, rgba(14,10,5,0.15) 60%);
}
.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 2rem 1.8rem;
  color: var(--white);
}
.cat-card-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
}
.cat-card-icon svg { width: 22px; height: 22px; fill: var(--dark); }
.cat-card-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cat-card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.cat-card-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.cat-card:hover .cat-card-link { gap: 0.8rem; }

/* ── Tour Package Cards ─────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.pkg-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.pkg-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-card-image img { transform: scale(1.07); }

.pkg-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}
.pkg-badge.popular { background: #e05a2b; color: var(--white); }

.pkg-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.pkg-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.pkg-meta {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pkg-meta-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.pkg-highlights {
  margin-bottom: 1.2rem;
  flex: 1;
}
.pkg-highlights li {
  font-size: 0.83rem;
  color: var(--text-body);
  padding: 0.25rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.pkg-highlights li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.38rem;
}

.pkg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}
.pkg-price { line-height: 1.2; }
.pkg-price-from {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pkg-price-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.pkg-price-per {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Features / Why Us ──────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-item {
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  transition: background var(--transition), border-color var(--transition);
}
.feature-item:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.4);
}
.feature-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}
.feature-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-brown);
  margin-top: 0.3rem;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.testimonial-origin {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-deep);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.cta-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Route Cards (Kilimanjaro) ──────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.route-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}
.route-difficulty {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.diff-moderate  { background: #fff3cd; color: #856404; }
.diff-hard      { background: #fde8e8; color: #c0392b; }
.diff-easy      { background: #d4edda; color: #155724; }
.route-details  { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.route-detail   {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.route-detail svg { width: 13px; height: 13px; fill: var(--gold); }
.route-desc     { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; }

/* ── Zanzibar Gallery Grid ──────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall img { height: 534px; }

/* ── Info Box ───────────────────────────────────────────── */
.info-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.info-box-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}
.info-box p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; }

/* ── Contact Section ────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.contact-info-desc {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.contact-detail-value a { color: rgba(255,255,255,0.82); transition: color var(--transition); }
.contact-detail-value a:hover { color: var(--gold-light); }

.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.form-group select option { background: var(--dark-brown); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { font-family: var(--font-serif); font-size: 1.2rem; color: var(--white); }
.footer-brand .logo-main span { color: var(--gold); }
.footer-tagline {
  font-size: 0.83rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }
.social-btn:hover svg { fill: var(--dark); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 0.3rem; }
.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.83rem;
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold); }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  position: absolute;
  bottom: 2rem;
  left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall img { height: 260px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }
  .hero { background-attachment: scroll; min-height: 100svh; }
  .cta-banner { background-attachment: scroll; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .page-hero    { min-height: 45vh; }
  .topbar       { display: none; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 2.4rem; }
  .section     { padding: 4rem 0; }
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .routes-grid   { grid-template-columns: 1fr; }
}
