/* ============================================================
   DZONG HOLIDAYS - home.css
   Homepage Styles
   ============================================================ */

/* ---- SHARED SECTION STYLES ---- */
.home-section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: var(--color-primary-light, rgba(1,105,111,0.1));
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.section-link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  transition: gap var(--transition);
}
.section-link:hover { gap: var(--space-3); color: var(--color-primary-hover); }

/* ---- HERO ---- */
.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f2027;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: var(--space-20);
  padding-bottom: var(--space-16);
}
.hero-text { margin-bottom: var(--space-8); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: var(--space-5);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title-accent {
  color: #5ecdd3;
  display: inline;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.2rem, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  line-height: 1.7;
}

/* SEARCH BOX */
.hero-search-box {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  max-width: 900px;
  overflow: hidden;
}
.hero-search-form {
  display: flex;
  align-items: stretch;
}
.search-field-wrap {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.search-field-wrap label {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: default;
}
.search-field-wrap select {
  border: none;
  background: none;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.search-field-wrap select:focus { outline: none; }
.search-divider {
  width: 1px;
  background: var(--color-border);
  margin: var(--space-4) 0;
  flex-shrink: 0;
}
.search-btn {
  display: flex; align-items: center; gap: var(--space-2);
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}
.search-btn:hover { background: var(--color-primary-hover); transform: none; }

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ---- THEMES ---- */
.home-themes { background: var(--color-surface); }
.themes-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--space-4);
}
.theme-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-3);
  background: var(--theme-bg, var(--color-bg));
  border-radius: var(--radius-xl);
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.theme-card:hover {
  border-color: var(--theme-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.theme-icon { font-size: 2rem; line-height: 1; }
.theme-name {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.theme-arrow {
  font-size: var(--text-sm);
  color: var(--theme-accent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
.theme-card:hover .theme-arrow { opacity: 1; transform: translateY(0); }

/* ---- PACKAGE CARDS GRID ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.packages-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* PACKAGE CARD */
.pkg-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  content-visibility: auto;
}
.pkg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.pkg-card-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.pkg-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.pkg-card:hover .pkg-card-img { transform: scale(1.06); }
.pkg-card-no-img {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: var(--color-text-faint);
}
.pkg-card-badge {
  position: absolute; top: var(--space-3); left: var(--space-3);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.pkg-card-saving {
  position: absolute; top: var(--space-3); right: var(--space-3);
  background: #dc2626;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.pkg-card-dur {
  position: absolute; bottom: var(--space-3); right: var(--space-3);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.pkg-card-body {
  padding: var(--space-5) var(--space-5) var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-card-dest {
  display: flex; align-items: center; gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-2);
}
.pkg-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: var(--space-3);
}
.pkg-card-title a { color: var(--color-text); text-decoration: none; }
.pkg-card-title a:hover { color: var(--color-primary); }
.pkg-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-3);
}
.pkg-card-meta {
  display: flex; align-items: center; gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.pkg-card-meta-item {
  display: flex; align-items: center; gap: 4px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pkg-card-type {
  margin-left: auto;
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--color-primary-light, rgba(1,105,111,0.1));
  color: var(--color-primary);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  text-transform: capitalize;
}
.pkg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  gap: var(--space-3);
}
.pkg-card-price-wrap { display: flex; align-items: baseline; gap: var(--space-2); flex-wrap: wrap; }
.pkg-card-price-old {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-decoration: line-through;
}
.pkg-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.pkg-card-price-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pkg-card-btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.pkg-card-btn:hover {
  background: var(--color-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- DESTINATIONS ---- */
.home-destinations { background: var(--color-bg); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-4);
}
.dest-card {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/2;
  background: var(--color-surface-offset);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.dest-card-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; }
.dest-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-faint);
  background: var(--color-surface-offset);
}
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%);
  transition: opacity 0.3s;
}
.dest-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-5) var(--space-5);
}
.dest-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-1);
  line-height: 1.2;
}
.dest-card-featured .dest-name { font-size: 1.5rem; }
.dest-count {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ---- WHY US ---- */
.home-why { background: var(--color-surface); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.why-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 60px; height: 60px;
  background: var(--color-primary-light, rgba(1,105,111,0.1));
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.why-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- HOW IT WORKS ---- */
.home-how-it-works {
  background: linear-gradient(135deg, #01696f 0%, #0c4e54 100%);
}
.home-how-it-works .section-eyebrow {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.home-how-it-works .section-title { color: #fff; }
.steps-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: var(--space-8);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.15);
}
.step-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.step-icon {
  width: 72px; height: 72px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-3);
}
.step-card p { font-size: var(--text-sm); color: rgba(255,255,255,0.8); line-height: 1.7; }
.step-connector {
  flex: 0 0 80px;
  color: rgba(255,255,255,0.4);
  padding: 0 var(--space-4);
}
.step-connector svg { width: 100%; }

/* ---- TESTIMONIALS ---- */
.home-testimonials { background: var(--color-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: var(--space-1); margin-bottom: var(--space-4); }
.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: var(--text-base);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: var(--text-sm); color: var(--color-text); }
.testimonial-author span { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ---- BLOG ---- */
.home-blog { background: var(--color-surface); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); color: var(--color-text); }
.blog-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--color-surface-offset), var(--color-surface-dynamic));
}
.blog-body { padding: var(--space-6); flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.blog-cat {
  background: var(--color-primary-light, rgba(1,105,111,0.1));
  color: var(--color-primary);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.blog-excerpt { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; flex: 1; margin-bottom: var(--space-4); }
.blog-read-more { font-size: var(--text-sm); font-weight: 600; color: var(--color-primary); margin-top: auto; }

/* ---- CTA SECTION ---- */
.home-cta {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}
.cta-text p { font-size: var(--text-base); color: rgba(255,255,255,0.75); }
.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.cta-btn-primary { background: #fff; color: var(--color-primary); }
.cta-btn-primary:hover { background: #f0fdf4; color: var(--color-primary); transform: translateY(-2px); }
.cta-btn-whatsapp { background: #25D366; color: #fff; }
.cta-btn-whatsapp:hover { background: #128C7E; color: #fff; transform: translateY(-2px); }
.cta-btn-call {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.cta-btn-call:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .themes-grid { grid-template-columns: repeat(4, 1fr); }
  .packages-grid, .packages-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-search-form { flex-direction: column; }
  .search-divider { height: 1px; width: auto; margin: 0 var(--space-5); }
  .search-btn { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
  .steps-wrap { flex-direction: column; }
  .step-connector { transform: rotate(90deg); flex: 0 0 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 600px) {
  .hero-stats { gap: var(--space-5); }
  .hero-stat-div { height: 30px; }
  .themes-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
  .packages-grid, .packages-grid-3 { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card-featured { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}

/* ---- ANIMATE ON SCROLL ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside animated grid */
.packages-grid.is-visible .pkg-card:nth-child(2) { transition-delay: 0.08s; }
.packages-grid.is-visible .pkg-card:nth-child(3) { transition-delay: 0.16s; }
.packages-grid.is-visible .pkg-card:nth-child(4) { transition-delay: 0.08s; }
.packages-grid.is-visible .pkg-card:nth-child(5) { transition-delay: 0.16s; }
.packages-grid.is-visible .pkg-card:nth-child(6) { transition-delay: 0.24s; }
.why-grid.is-visible .why-card:nth-child(2) { transition-delay: 0.08s; }
.why-grid.is-visible .why-card:nth-child(3) { transition-delay: 0.16s; }
.why-grid.is-visible .why-card:nth-child(4) { transition-delay: 0.08s; }
.why-grid.is-visible .why-card:nth-child(5) { transition-delay: 0.16s; }
.why-grid.is-visible .why-card:nth-child(6) { transition-delay: 0.24s; }
