/* ============================================================
   GOOD LIFE — HOME PAGE STYLES
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg);
  padding-top: 80px;
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
}
.hero-particles { position: absolute; inset: 0; z-index: 0; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1220px; margin: 0 auto;
  padding: var(--s24) var(--s6);
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: var(--s16); align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s2) var(--s4); border-radius: var(--r-full);
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.25);
  color: var(--indigo); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--s6);
}
.hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--indigo); animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem); line-height: 1.08;
  margin-bottom: var(--s6); letter-spacing: -.02em;
}
.hero-desc {
  font-size: 1.1rem; color: var(--text-3); line-height: 1.8;
  max-width: 520px; margin-bottom: var(--s8);
}
.hero-actions {
  display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap;
  margin-bottom: var(--s10);
}
.hero-stats {
  display: flex; align-items: center; gap: var(--s8); flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-display); font-weight: 900; font-size: 2rem;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label { font-size: .78rem; color: var(--text-3); font-weight: 500; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  animation: orbFloat 7s ease-in-out infinite;
}
.hero-orb-1 { width: 520px; height: 520px; }
.hero-orb-2 { width: 380px; height: 380px; animation-delay: -3s; animation-duration: 9s; background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 70%); }
@keyframes orbFloat {
  0%,100%{transform:scale(1) rotate(0deg)}
  50%{transform:scale(1.07) rotate(5deg)}
}
.hero-card-stack { position: relative; z-index: 2; }
.hero-main-card {
  width: 380px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: var(--s8); box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}
.hero-card-top { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s6); }
.hero-card-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: white;
}
.hero-card-title { font-weight: 700; font-size: .95rem; }
.hero-card-sub   { font-size: .78rem; color: var(--text-3); }
.hero-card-countries { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s5); }
.hero-country-tag {
  padding: 4px 12px; border-radius: var(--r-full);
  background: rgba(99,102,241,.1); border: 1px solid rgba(99,102,241,.2);
  font-size: .75rem; color: var(--indigo); font-weight: 600;
}
.hero-jobs-list { display: flex; flex-direction: column; gap: var(--s3); }
.hero-job-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s3) var(--s4); background: var(--bg-2);
  border-radius: var(--r-sm); font-size: .82rem;
}
.hero-job-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald); margin-right: var(--s2); flex-shrink: 0; }

/* Floating mini cards */
.hero-float-card {
  position: absolute; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--s3) var(--s4); box-shadow: var(--shadow-lg);
  font-size: .8rem; display: flex; align-items: center; gap: var(--s2);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 3; white-space: nowrap;
}
.hero-float-card .fc-icon { width: 32px; height: 32px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.hero-float-card .fc-label { font-size: .72rem; color: var(--text-3); }
.hero-float-card .fc-val   { font-weight: 700; font-size: .88rem; }
.hero-float-1 { top: -20px; right: -40px; animation-delay: -1s; }
.hero-float-2 { bottom: 60px; left: -60px; animation-delay: -3s; animation-duration: 7s; }
.hero-float-3 { top: 50%; right: -60px; transform: translateY(-50%); animation-delay: -5s; animation-duration: 6s; }
@keyframes floatCard {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* ── TRUST STRIP ─────────────────────────────────────── */
.trust-strip {
  padding: var(--s6) var(--s6);
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: var(--s8);
}
.trust-item {
  display: flex; align-items: center; gap: var(--s3);
  font-size: .875rem; font-weight: 600; color: var(--text-2);
}
.trust-item i { color: var(--indigo); font-size: 1.1rem; }
.trust-divider { width: 1px; height: 20px; background: var(--border); }

/* ── FEATURES GRID ───────────────────────────────────── */
.feature-card {
  padding: var(--s8); border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease); cursor: default;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute;
  inset: 0; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(99,102,241,.05), rgba(139,92,246,.05));
  opacity: 0; transition: opacity var(--t-base);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,.3); }
.feature-card:hover::after { opacity: 1; }
.feature-icon { margin-bottom: var(--s5); }
.feature-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: var(--s3); }
.feature-desc { font-size: .875rem; color: var(--text-3); line-height: 1.7; }

/* ── WHY NEPAL SECTION ───────────────────────────────── */
.why-nepal {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
}
.why-list { display: flex; flex-direction: column; gap: var(--s5); }
.why-item {
  display: flex; gap: var(--s4); padding: var(--s5);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); transition: all var(--t-base) var(--ease);
}
.why-item:hover { transform: translateX(8px); border-color: rgba(99,102,241,.3); box-shadow: var(--shadow); }
.why-item-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm); flex-shrink: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(139,92,246,.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--indigo);
}
.why-item-title { font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.why-item-desc  { font-size: .85rem; color: var(--text-3); line-height: 1.6; }



/* ── MARQUEE / SCROLL TICKER ─────────────────────────── */
.marquee-section {
  overflow: hidden; padding: var(--s6) 0;
  background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s2) var(--s6); white-space: nowrap;
  font-size: .9rem; font-weight: 600; color: var(--text-2);
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo); opacity: .6; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CTA banner styles moved to global style.css to support multiple pages */

/* ── Responsive home ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin: 0 auto var(--s8); }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; align-items: flex-start; }
  .hero-title { font-size: 2.4rem; }
  .hero-content { padding-top: var(--s8); padding-bottom: var(--s8); }
  .trust-strip-inner { gap: var(--s5); }
  .trust-divider { display: none; }
}
