/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(160deg, rgba(6,69,52,0.97) 0%, rgba(13,122,85,0.92) 55%, rgba(14,165,200,0.85) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

/* Decorative orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 1;
  padding: 100px 0 80px;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 24px;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--amber); border-radius: 50%;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-heading em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.12rem;
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-search {
  max-width: 580px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  display: flex; gap: 0; overflow: hidden;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-search-input {
  flex: 1; padding: 16px 24px;
  border: none; background: transparent;
  font-size: 0.97rem; color: var(--white);
  font-family: 'DM Sans', sans-serif;
}
.hero-search-input::placeholder { color: rgba(255,255,255,0.55); }
.hero-search-input:focus { outline: none; }
.hero-search-btn {
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  padding: 14px 24px; font-size: 0.9rem;
  background: var(--amber); color: var(--white);
  box-shadow: none;
}
.hero-search-btn:hover { background: var(--amber-deep); transform: none; }

/* Hero stats strip */
.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
  animation: fadeUp 0.7s 0.5s ease both;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--amber);
  display: block; line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-content { padding: 80px 0 60px; }
  .hero-stats { gap: 24px; }
}

/* ─── Featured packages ────────────────────────────────────────────────── */
.featured-section { padding: 96px 0; }

/* ─── Destination strip ────────────────────────────────────────────────── */
.destinations-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.dest-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}
@media (max-width: 900px) { .dest-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-strip { grid-template-columns: 1fr 1fr; } }

.dest-tile {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald) 100%);
  border-radius: var(--radius-md);
  padding: 28px 20px 22px;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  color: var(--white);
  min-height: 140px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.dest-tile:nth-child(even) {
  background: linear-gradient(135deg, #0A3D62 0%, var(--sky) 100%);
}
.dest-tile:nth-child(3n) {
  background: linear-gradient(135deg, #4A1030 0%, #C0392B 100%);
}
.dest-tile:nth-child(4n) {
  background: linear-gradient(135deg, #1A3A1A 0%, #27AE60 100%);
}
.dest-tile::before {
  content: '◎';
  position: absolute; top: 10px; right: 14px;
  font-size: 3rem; opacity: 0.08; line-height: 1;
  pointer-events: none;
}
.dest-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }
.dest-tile .dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white);
  margin-bottom: 4px;
}
.dest-tile .dest-country { font-size: 0.78rem; opacity: 0.7; margin-bottom: 8px; }
.dest-tile .dest-count {
  font-size: 0.8rem; font-weight: 700;
  background: rgba(255,255,255,0.18);
  padding: 3px 10px; border-radius: var(--radius-full);
  color: var(--white);
}

/* ─── Duration section ─────────────────────────────────────────────────── */
.duration-section { padding: 80px 0; }
.duration-sub { color: var(--muted); margin-top: 10px; margin-bottom: 44px; }
.duration-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 860px; margin: 0 auto;
}
@media (max-width: 700px) { .duration-btns { grid-template-columns: 1fr 1fr; } }

.duration-btn {
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 2px solid var(--emerald-pale);
  text-align: center; text-decoration: none;
  transition: all var(--transition);
  color: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.duration-btn:hover {
  border-color: var(--emerald);
  background: var(--emerald-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  color: inherit;
}
.duration-btn--featured {
  border-color: var(--emerald);
  background: linear-gradient(135deg, var(--emerald-pale), #fff);
}
.duration-btn .dur-icon { font-size: 1.8rem; }
.duration-btn .dur-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--emerald-deep); display: block;
}
.duration-btn .dur-sub {
  font-size: 0.8rem; color: var(--muted);
  display: block;
}

/* ─── Why / Trust section ──────────────────────────────────────────────── */
.why-section {
  padding: 96px 0;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(13,122,85,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: rgba(255,255,255,0.55); }
.why-section .section-header .eyebrow {
  background: rgba(13,122,85,0.3);
  color: #4ADE80;
}

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-tile {
  text-align: center; padding: 36px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.trust-tile:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(13,122,85,0.4);
}
.trust-icon { font-size: 2.4rem; margin-bottom: 16px; }
.trust-tile h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.trust-tile p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }

/* ─── Blog preview ─────────────────────────────────────────────────────── */
.blog-preview-section { padding: 80px 0; }
.blog-card .card-body { padding: 22px; }
.blog-card .blog-cat {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--amber);
  font-weight: 700; margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card .blog-meta { font-size: 0.82rem; color: var(--muted); }
.blog-card .blog-excerpt { font-size: 0.88rem; color: var(--muted); margin-top: 10px; line-height: 1.6; }

/* ─── Reviews section ──────────────────────────────────────────────────── */
.reviews-section { padding: 80px 0; background: var(--white); }
.review-card { padding: 24px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-stars { display: flex; }
.review-meta { font-size: 0.84rem; color: var(--muted); }
.review-text { font-size: 0.93rem; line-height: 1.65; color: var(--ink-80); }

/* ─── CTA Banner ───────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald) 60%, var(--sky) 100%);
  padding: 96px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='white' stroke-width='1' opacity='0.04'/%3E%3C/svg%3E")
  center/80px 80px;
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.8rem,4vw,2.8rem); }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
