/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(45,155,111,0.35) 0%, transparent 70%),
    linear-gradient(160deg, #062218 0%, #0D3B2A 45%, #0a3025 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 5% 80px;
  position: relative; overflow: hidden;
}

/* Subtle grid pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Bottom wave divider */
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 860px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.35);
  color: var(--accent);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px; margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: #fff; line-height: 1.1; margin-bottom: 24px;
  font-weight: 700; letter-spacing: -0.01em;
}
.hero-heading em { font-style: italic; color: var(--accent); }

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  margin-bottom: 40px;
  max-width: 560px; margin-left: auto; margin-right: auto;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }

/* Search bar */
.hero-search {
  max-width: 600px; margin: 0 auto 56px;
  display: flex;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.hero-search:focus-within {
  border-color: rgba(232,160,32,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 3px rgba(232,160,32,0.12);
}
.hero-search-input {
  flex: 1; padding: 16px 26px; border: none; background: transparent;
  font-size: 0.95rem; color: #fff; font-family: 'DM Sans', sans-serif;
}
.hero-search-input::placeholder { color: rgba(255,255,255,0.45); }
.hero-search-input:focus { outline: none; }
.hero-search-btn {
  padding: 12px 26px; border: none;
  background: var(--accent); color: #1a0f00;
  font-weight: 700; font-size: 0.9rem; cursor: pointer;
  border-radius: 0 50px 50px 0;
  font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.hero-search-btn:hover { background: #fff; color: var(--primary); }

/* Stats row */
.hero-stats {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.hero-stat {
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--accent);
  display: block; line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .hero { min-height: auto; padding: 110px 5% 80px; }
  .hero-stat { padding: 12px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:last-child { border-bottom: none; }
  .hero-stats { flex-direction: row; gap: 0; }
  .hero-stat { flex: 1 1 50%; border-right: 1px solid rgba(255,255,255,0.12); }
  .hero-stat:nth-child(2n) { border-right: none; }
}

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

/* Package card overrides for homepage */
.featured-section .card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,59,42,0.15);
}

.featured-section .card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.featured-section .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-section .card:hover .card-img img {
  transform: scale(1.06);
}

/* ─── Destinations ─────────────────────────────────────────────────────── */
.destinations-section { padding: 88px 0; background: var(--bg-alt); }
.dest-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .dest-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-strip { grid-template-columns: 1fr 1fr; gap: 12px; } }

.dest-tile {
  position: relative; overflow: hidden;
  border-radius: 16px;
  padding: 0;
  text-decoration: none;
  color: #fff;
  min-height: 160px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  color: #fff;
}

/* Destination colour backgrounds (Kerala palette) */
.dest-tile:nth-child(1) { background: linear-gradient(145deg, #0f5c3a, #1a8a5a); }
.dest-tile:nth-child(2) { background: linear-gradient(145deg, #1a4060, #2563aa); }
.dest-tile:nth-child(3) { background: linear-gradient(145deg, #5c2d0f, #a05020); }
.dest-tile:nth-child(4) { background: linear-gradient(145deg, #3d1a5c, #7c3aaa); }
.dest-tile:nth-child(5) { background: linear-gradient(145deg, #1a5c4a, #2a9b7a); }
.dest-tile:nth-child(6) { background: linear-gradient(145deg, #5c1a2a, #aa2a4a); }
.dest-tile:nth-child(7) { background: linear-gradient(145deg, #2a3a5c, #3a60aa); }
.dest-tile:nth-child(8) { background: linear-gradient(145deg, #3a5c1a, #5a9b2a); }

/* Pattern overlay */
.dest-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-11-9-20-20-20v40c11 0 20-9 20-20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Bottom gradient for text legibility */
.dest-tile::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 70%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
}

.dest-tile-body {
  position: relative; z-index: 1;
  padding: 20px 18px 18px;
}
.dest-tile .dest-name {
  font-size: 1.15rem; font-weight: 700; color: #fff;
  margin-bottom: 2px; display: block;
}
.dest-tile .dest-country {
  font-size: 0.77rem; color: rgba(255,255,255,0.7);
  margin-bottom: 10px; display: block;
}
.dest-tile .dest-count {
  font-size: 0.76rem; font-weight: 700;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 3px 12px; border-radius: 50px;
  display: inline-block;
}

/* ─── Duration section ─────────────────────────────────────────────────── */
.duration-section { padding: 88px 0; }
.duration-sub { color: var(--text-light); margin-top: 8px; margin-bottom: 52px; }
.duration-btns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 960px; margin: 0 auto;
}
@media (max-width: 700px) { .duration-btns { grid-template-columns: 1fr 1fr; } }

.duration-btn {
  padding: 32px 20px 28px;
  border-radius: 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  text-align: center; text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.duration-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.duration-btn:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,59,42,0.18);
  color: #fff;
}
.duration-btn:hover::before { opacity: 1; }
.duration-btn:hover .dur-icon,
.duration-btn:hover .dur-label,
.duration-btn:hover .dur-sub { color: #fff !important; }

.duration-btn--featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(13,59,42,0.2);
  color: #fff;
}
.duration-btn--featured .dur-label { color: var(--accent) !important; }
.duration-btn--featured .dur-sub,
.duration-btn--featured .dur-icon { color: rgba(255,255,255,0.8) !important; }
.duration-btn--featured::before { display: none; }

.dur-icon {
  font-size: 2rem;
  position: relative; z-index: 1;
  display: block;
  line-height: 1;
}
.dur-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--primary);
  position: relative; z-index: 1;
  display: block; line-height: 1;
}
.duration-btn--featured .dur-num { color: var(--accent); }
.dur-label {
  font-size: 1.05rem; font-weight: 700; color: var(--primary);
  position: relative; z-index: 1;
  display: block; margin-top: 2px;
}
.dur-sub {
  font-size: 0.8rem; color: var(--text-light);
  position: relative; z-index: 1;
  display: block; line-height: 1.4;
}

/* ─── Why / Trust section ──────────────────────────────────────────────── */
.why-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #0a2d1e 0%, var(--primary) 50%, #0a2d1e 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45,155,111,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(232,160,32,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.why-section .section-header h2 { color: #fff; }
.why-section .section-header p { color: rgba(255,255,255,0.6); }
.why-section .section-header .eyebrow {
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--accent);
}

.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: 40px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.trust-tile::before {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.trust-tile:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,160,32,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.trust-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(232,160,32,0.12);
  border: 1px solid rgba(232,160,32,0.25);
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.trust-icon { font-size: 1.8rem; display: block; }
.trust-tile h3 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; font-weight: 600; }
.trust-tile p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.65; }

/* ─── Blog preview ─────────────────────────────────────────────────────── */
.blog-preview-section { padding: 88px 0; background: var(--bg-alt); }
.blog-card {
  text-decoration: none; color: inherit; display: block;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  color: inherit;
}
.blog-card .card-body { padding: 24px; }
.blog-cat {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--primary-mid);
  font-weight: 700; margin-bottom: 10px; display: block;
}
.blog-card h3 {
  font-size: 1.05rem; margin-bottom: 10px;
  line-height: 1.45; color: var(--text);
  font-weight: 600;
}
.blog-card h3:hover { color: var(--primary-mid); }
.blog-card .blog-meta { font-size: 0.78rem; color: var(--text-light); }
.blog-card .blog-excerpt {
  font-size: 0.87rem; color: var(--text-light);
  margin-top: 10px; line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* ─── Reviews ──────────────────────────────────────────────────────────── */
.reviews-section { padding: 88px 0; }

.review-card {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,59,42,0.1);
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem; line-height: 1; color: var(--border);
  font-weight: 700;
}

.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-stars { display: flex; gap: 2px; }
.star { font-size: 0.9rem; color: #ccc; }
.star--on { color: var(--accent); }
.review-meta { font-size: 0.82rem; color: var(--text-light); }
.review-text {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--text); font-style: italic;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}
.review-author strong { font-weight: 600; color: var(--text); font-size: 0.9rem; display: block; }
.review-dest { color: var(--text-light); font-size: 0.8rem; }

/* ─── CTA Banner ───────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0D3B2A 0%, #1A6B4A 100%);
  padding: 100px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(232,160,32,0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(45,155,111,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin-bottom: 14px; font-weight: 700;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px; font-size: 1.05rem;
  max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Floating WhatsApp button ─────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px;
  background: var(--wa-green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  text-decoration: none; color: #fff;
  font-size: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-bounce 3s ease-in-out 2s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  color: #fff;
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 480px) {
  .wa-float { width: 52px; height: 52px; font-size: 1.35rem; bottom: 20px; right: 20px; }
}

/* ─── Trip Matcher homepage band ─────────────────────────────────────── */
.matcher-home-band {
  background: linear-gradient(135deg, #0D3B2A 0%, #1A6B4A 100%);
  padding: 64px 0; color: #fff;
}
.matcher-home-band-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.matcher-home-band-text h2 { color: #fff; margin: 8px 0 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.matcher-home-band-text p  { color: rgba(255,255,255,0.82); max-width: 520px; margin-bottom: 16px; }
.matcher-home-band-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.matcher-home-band-list li { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.matcher-home-band-cta { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.matcher-home-band-btn { white-space: nowrap; font-size: 1rem; padding: 14px 28px; }
.matcher-home-band-note { color: rgba(255,255,255,0.6); font-size: 0.8rem; margin: 0; }
@media (max-width: 700px) {
  .matcher-home-band-inner { grid-template-columns: 1fr; text-align: center; }
  .matcher-home-band-text p { max-width: 100%; }
  .matcher-home-band-list { justify-content: center; }
  .matcher-home-band-cta { width: 100%; }
  .matcher-home-band-btn { width: 100%; text-align: center; }
}

/* ─── Quick tools bar ────────────────────────────────────────────────────── */
.tools-bar {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.tools-bar-btn {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1.5px solid #E0E8E4; border-radius: 12px;
  padding: 14px 16px; cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
}
.tools-bar-btn:hover { border-color: #1A6B4A; box-shadow: 0 4px 16px rgba(13,59,42,0.1); transform: translateY(-2px); }
.tools-bar-btn > span:first-child { font-size: 1.5rem; flex-shrink: 0; }
.tools-bar-btn strong { display: block; font-size: 0.88rem; color: #0D3B2A; font-weight: 600; }
.tools-bar-btn small  { display: block; font-size: 0.75rem; color: #5A6472; margin-top: 1px; }
@media (max-width: 900px) { .tools-bar { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .tools-bar { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .tools-bar { grid-template-columns: 1fr; } }

/* ─── Planning Tools Section ────────────────────────────────────────────── */
.tools-section {
  padding: 80px 0 72px;
  background: var(--bg-alt);
}
.tools-section-header {
  text-align: center;
  margin-bottom: 44px;
}
.tools-section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
}
.tools-section-header p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .tools-grid { grid-template-columns: 1fr; gap: 12px; } }

.tool-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 22px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  opacity: 0;
  transition: opacity 0.2s;
}
.tool-card:hover {
  border-color: var(--primary-mid);
  box-shadow: 0 8px 28px rgba(13,59,42,0.14);
  transform: translateY(-3px);
}
.tool-card:hover::before { opacity: 0.04; }

.tool-card--primary {
  background: linear-gradient(135deg, #0D3B2A, #1A6B4A);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(13,59,42,0.3);
}
.tool-card--primary::before { display: none; }
.tool-card--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13,59,42,0.4);
  border-color: transparent;
}
.tool-card--primary .tool-card-body strong { color: #fff; }
.tool-card--primary .tool-card-body span   { color: rgba(255,255,255,0.75); }
.tool-card--primary .tool-card-arrow       { color: var(--accent); }

.tool-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
  line-height: 1;
}
.tool-card-body {
  flex: 1;
  position: relative; z-index: 1;
}
.tool-card-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.tool-card-body span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}
.tool-card-arrow {
  font-size: 1.1rem;
  color: var(--text-light);
  position: relative; z-index: 1;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.tool-card:hover .tool-card-arrow { transform: translateX(4px); }

/* ─── Package destination tabs ──────────────────────────────────────────── */
.pkg-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.pkg-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.18s;
}
.pkg-tab:hover {
  border-color: var(--primary-mid);
  color: var(--primary);
}
.pkg-tab--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}
.pkg-tab--active:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  color: #fff;
}

/* ─── Section footer row (centered "View all" link) ────────────────────── */
.section-footer {
  text-align: center;
  margin-top: 48px;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(13,59,42,0.04);
}

/* ─── Trust bar (horizontal stats strip) ───────────────────────────────── */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
}
.trust-bar-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.trust-bar-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
  white-space: nowrap;
}
.trust-bar-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .trust-bar-item { padding: 8px 20px; }
  .trust-bar-divider { display: none; }
  .trust-bar-inner { gap: 4px 0; }
  .trust-bar-item { flex: 1 1 40%; }
}

/* ─── Consultation CTA section ──────────────────────────────────────────── */
.consult-cta-section {
  background: linear-gradient(135deg, #062218 0%, #0D3B2A 50%, #062218 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.consult-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(232,160,32,0.1) 0%, transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(45,155,111,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.consult-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 860px) {
  .consult-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .consult-cta-list { padding-left: 0; list-style: none; }
}
.consult-cta-text .eyebrow {
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.consult-cta-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.consult-cta-text p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 20px;
}
.consult-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.consult-cta-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.consult-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}
.consult-cta-btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 15px 28px;
}
.consult-cta-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin: 0;
}
@media (max-width: 860px) {
  .consult-cta-actions { width: 100%; max-width: 320px; margin: 0 auto; }
  .consult-cta-text p  { max-width: 100%; margin-left: auto; margin-right: auto; }
}

/* ─── Google Rating Badge (hero) ──────────────────────────────────────────── */
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 7px 16px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px; text-decoration: none; color: #fff;
  font-size: 0.82rem; backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.google-rating-badge:hover { background: rgba(255,255,255,0.18); }
.grb-stars { color: #FBBC05; letter-spacing: 1px; font-size: 0.8rem; }
.grb-num { font-weight: 700; }
.grb-sep { opacity: 0.5; }
.grb-count { opacity: 0.8; }

/* ─── Trust bar Google item ───────────────────────────────────────────────── */
.trust-bar-item--google {
  display: flex; align-items: center; gap: 5px;
}
.trust-bar-item--google .trust-bar-num { display: flex; align-items: center; gap: 4px; }
