/* ============================================================
   WORLD HORIZONS — Main Stylesheet
   Pure HTML & CSS — No frameworks used
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --teal:        #1A7A6E;
  --teal-dark:   #124f47;
  --teal-light:  #e6f4f2;
  --accent:      #e8622a;
  --accent-light:#fff0ea;
  --gold:        #c9a84c;
  --dark:        #1c1c1c;
  --mid:         #4a4a4a;
  --soft:        #7a7a7a;
  --bg:          #faf9f7;
  --white:       #ffffff;
  --border:      #e2ddd8;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
  --radius:      8px;
  --radius-lg:   16px;
  --ff-head:     'Playfair Display', Georgia, serif;
  --ff-body:     'Raleway', sans-serif;
  --transition:  0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--bg); color: var(--dark); line-height: 1.7; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--ff-head); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Helpers ── */
.container    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 80px 0; }
.section--alt { background: var(--teal-light); }
.section--dark{ background: var(--dark); }
.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--soft); font-size: 1.05rem; max-width: 620px; margin: 0 auto 48px; }

/* ── Divider ── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider--left { margin: 16px 0 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary   { background: var(--teal); color: var(--white); }
.btn--primary:hover { background: var(--teal-dark); }
.btn--accent    { background: var(--accent); color: var(--white); }
.btn--accent:hover { background: #c94f1a; }
.btn--outline   { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--teal); }
.btn--outline-dark { background: transparent; border-color: var(--teal); color: var(--teal); }
.btn--outline-dark:hover { background: var(--teal); color: var(--white); }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; font-weight: 900; font-family: var(--ff-head);
}
.nav-logo-text {
  font-family: var(--ff-head); font-size: 1.25rem; font-weight: 700; color: var(--dark);
}
.nav-logo-text span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--mid); padding: 8px 14px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.nav-links a.nav-cta {
  background: var(--teal); color: var(--white); margin-left: 8px;
}
.nav-links a.nav-cta:hover { background: var(--teal-dark); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d4a42 0%, #1a7a6e 40%, #2a6e5a 70%, #1c3a2a 100%);
}
/* Decorative pattern overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232,98,42,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.05) 0%, transparent 35%);
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&q=80') center/cover no-repeat;
  opacity: 0.25;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 24px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero-title { color: var(--white); margin-bottom: 24px; font-weight: 900; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle { color: rgba(255,255,255,0.80); font-size: 1.15rem; max-width: 560px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar { background: var(--teal-dark); padding: 28px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-num {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.70); font-size: 0.82rem; letter-spacing: 0.06em; margin-top: 4px; }

/* ══════════════════════════════════════
   DESTINATION CARDS
══════════════════════════════════════ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dest-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.dest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover .dest-card-img img { transform: scale(1.06); }
.dest-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: white;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.dest-card-body { padding: 20px 22px 24px; }
.dest-card-region { font-size: 0.75rem; font-weight: 700; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; }
.dest-card-title { font-family: var(--ff-head); font-size: 1.25rem; margin: 6px 0 10px; }
.dest-card-desc { font-size: 0.9rem; color: var(--soft); }
.dest-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; border-top: 1px solid var(--border);
  font-size: 0.85rem;
}
.dest-card-rating { display: flex; align-items: center; gap: 4px; color: var(--gold); font-weight: 600; }
.dest-card-link { color: var(--teal); font-weight: 700; font-size: 0.85rem; transition: color var(--transition); }
.dest-card-link:hover { color: var(--accent); }

/* ══════════════════════════════════════
   FEATURE / SPLIT SECTION
══════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.split-img img { width: 100%; height: 420px; object-fit: cover; }
.split-img-badge {
  position: absolute; bottom: 24px; right: -16px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  text-align: center; min-width: 130px;
}
.split-img-badge .num { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--teal); }
.split-img-badge .lbl { font-size: 0.78rem; color: var(--soft); }
.split-text .section-label { margin-top: 0; }
.split-text p { font-size: 1rem; }
.feature-list { margin: 24px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--mid);
}
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* ══════════════════════════════════════
   TRAVEL GUIDES / BLOG CARDS
══════════════════════════════════════ */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.guide-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.guide-card-img { height: 190px; overflow: hidden; }
.guide-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.guide-card:hover .guide-card-img img { transform: scale(1.05); }
.guide-card-body { padding: 20px; }
.guide-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.guide-card-title { font-family: var(--ff-head); font-size: 1.12rem; margin-bottom: 10px; line-height: 1.3; }
.guide-card-meta { font-size: 0.82rem; color: var(--soft); margin-top: 12px; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow);
  border-top: 3px solid var(--teal);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--mid); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-light); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; color: var(--teal); font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-loc  { font-size: 0.78rem; color: var(--soft); }

/* ══════════════════════════════════════
   NEWSLETTER BANNER
══════════════════════════════════════ */
.newsletter-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 64px 0; text-align: center;
}
.newsletter-banner h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-banner p  { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 32px; }
.newsletter-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; max-width: 500px; margin: 0 auto; }
.newsletter-input {
  flex: 1; min-width: 240px;
  padding: 14px 18px; border: none; border-radius: var(--radius);
  font-family: var(--ff-body); font-size: 0.95rem;
  background: rgba(255,255,255,0.15); color: white;
  outline: none; border: 1.5px solid rgba(255,255,255,0.3);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer { background: #111; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand-desc { font-size: 0.9rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-heading { font-family: var(--ff-head); color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }
.attribution { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: right; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 120px 0 64px; text-align: center; margin-top: 68px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 75% 25%, rgba(232,98,42,0.10) 0%, transparent 40%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

/* ══════════════════════════════════════
   DESTINATIONS PAGE
══════════════════════════════════════ */
.filter-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 24px;
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--ff-body); font-size: 0.85rem; font-weight: 600;
  color: var(--mid); cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--teal); background: var(--teal); color: var(--white); }
.dest-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Featured destination */
.dest-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 48px;
}
.dest-featured-img { height: 380px; overflow: hidden; }
.dest-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.dest-featured-text { padding: 40px 40px 40px 8px; }
.dest-featured-text .section-label { font-size: 0.7rem; }
.dest-featured-text h2 { font-size: 2rem; margin: 8px 0 16px; }
.dest-details { display: flex; gap: 24px; margin: 20px 0; }
.dest-detail { font-size: 0.85rem; color: var(--soft); }
.dest-detail strong { display: block; color: var(--dark); font-weight: 700; }

/* ══════════════════════════════════════
   GUIDES PAGE
══════════════════════════════════════ */
.guide-hero-card {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); margin-bottom: 48px; background: var(--white);
}
.guide-hero-img { min-height: 340px; overflow: hidden; }
.guide-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.guide-hero-text { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.guide-hero-text .guide-cat { font-size: 0.75rem; }
.guide-hero-text h2 { font-size: 1.8rem; margin: 8px 0 16px; }
.guide-hero-text p { font-size: 0.95rem; }
.guide-meta { font-size: 0.82rem; color: var(--soft); margin-top: 16px; }
.guide-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ══════════════════════════════════════
   PLAN PAGE
══════════════════════════════════════ */
.planner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.planner-steps { margin-top: 32px; }
.step {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 6px; font-size: 1rem; }
.step-content p  { font-size: 0.9rem; color: var(--soft); }

.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.tip-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border-left: 4px solid var(--teal); box-shadow: var(--shadow);
}
.tip-icon { font-size: 1.6rem; margin-bottom: 10px; }
.tip-card h4 { margin-bottom: 8px; }
.tip-card p  { font-size: 0.88rem; color: var(--soft); }

/* ══════════════════════════════════════
   CONTACT / FORM PAGE
══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-items { margin-top: 32px; }
.contact-info-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soft); }
.contact-info-value { font-size: 0.95rem; color: var(--dark); margin-top: 2px; }

/* The Form */
.enquiry-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.enquiry-form h3 { margin-bottom: 8px; }
.enquiry-form > p { font-size: 0.9rem; color: var(--soft); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--ff-body); font-size: 0.95rem;
  color: var(--dark); background: var(--bg); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,122,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.form-radio {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--mid); cursor: pointer;
}
.form-radio input[type="radio"] { accent-color: var(--teal); width: 16px; height: 16px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-checkbox input[type="checkbox"] { accent-color: var(--teal); width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }
.form-checkbox label { font-size: 0.85rem; color: var(--mid); font-weight: 400; letter-spacing: 0; text-transform: none; }
.form-checkbox label a { color: var(--teal); text-decoration: underline; }
.form-submit { margin-top: 12px; }
.form-note { font-size: 0.78rem; color: var(--soft); margin-top: 14px; }

/* FAQs */
.faq-list { margin-top: 12px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-q { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 8px; }
.faq-a { font-size: 0.9rem; color: var(--soft); }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-mission {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-img-stack { position: relative; height: 460px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 75%; height: 380px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-inset {
  position: absolute; bottom: 0; right: 0; width: 50%; height: 230px;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--bg);
}
.about-img-inset img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow); text-align: center;
  border-bottom: 3px solid var(--teal);
}
.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: var(--soft); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--teal-light); margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--teal);
  border: 3px solid var(--teal);
}
.team-name { font-weight: 700; font-size: 0.95rem; }
.team-role { font-size: 0.82rem; color: var(--teal); }
.team-bio  { font-size: 0.83rem; color: var(--soft); margin-top: 8px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .dest-grid, .dest-full-grid, .guide-grid, .guide-full-grid,
  .testimonial-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .planner-grid, .contact-grid, .about-mission, .dest-featured { grid-template-columns: 1fr; }
  .dest-featured-img { height: 260px; }
  .dest-featured-text { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-hero-card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .dest-grid, .dest-full-grid, .guide-grid, .guide-full-grid,
  .testimonial-grid, .values-grid, .tips-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .split-img-badge { right: 16px; }
}
