/* ============================================================
   VERBLISH — Hero v2 (KSA mockup style)
   FILE: css/hero-v2.css  — load AFTER css/style.css
   New hero: gradient mint background, family photo with floating
   gradient feature pills, white circular-flags strip below.
   Does NOT touch any existing style.css rules.
   ============================================================ */

/* ── Navbar (mockup style): logo image only + centered green links ── */
.nav-logo-v2 img { height: 56px; width: auto; }
.nav-links-v2 { gap: 0; }
.nav-links-v2 li { display: flex; align-items: center; }
.nav-links-v2 a {
  color: var(--green);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 0 20px;
}
.nav-links-v2 a::after { background: var(--green-dark); left: 20px; right: 20px; width: auto; max-width: 0; }
.nav-links-v2 a:hover { color: var(--green-dark); }
.nav-links-v2 a:hover::after { max-width: calc(100% - 40px); }
.nav-links-v2 li:not(:last-child)::after {
  content: '|';
  color: var(--green);
  opacity: 0.45;
  font-weight: 400;
}

#hero.hero-v2 {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  background: linear-gradient(115deg, #f0fbf5 0%, #f7fdfa 38%, #d9f2e6 100%);
}

.hero-v2-inner {
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* Left copy */
.hero-v2 .hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-v2 .hero-subtitle {
  max-width: 430px;
  margin-bottom: 36px;
}
.hero-v2 .hero-actions .btn-primary {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* Right visual — family photo + floating pills */
.hero-family-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
  min-height: 480px;
}
.hero-family-img {
  height: min(74vh, 640px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 44px rgba(17, 29, 39, 0.16));
}

/* Gradient feature pills */
.hero-pill {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 115%);
  color: #fff;
  padding: 14px 22px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.22;
  box-shadow: 0 14px 34px rgba(60, 184, 122, 0.35);
  animation: heroPillFloat 5s ease-in-out infinite;
}
.hero-pill-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.hero-pill small {
  display: block;
  font-weight: 600;
  font-size: 0.86rem;
  opacity: 0.95;
  margin-top: 2px;
  letter-spacing: 0.3px;
}
.hero-pill-1 { top: 12%;  left: -6%;  animation-delay: 0s;   }
.hero-pill-2 { top: 34%;  right: -8%; animation-delay: 1.6s; }
.hero-pill-3 { bottom: 16%; left: -14%; animation-delay: 3.2s; }

@keyframes heroPillFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── FLAGS SECTION (standalone, below the hero) ──
   Bigger circles that show the WHOLE flag (no cropping):
   white circle badge with the full flag centred inside. */
.flags-section {
  background: #fff;
  padding: 44px 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 -10px 34px rgba(17, 29, 39, 0.06);
}
.flags-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  flex-wrap: wrap;
}
.flag-circle {
  width: clamp(84px, 8vw, 124px);
  height: clamp(84px, 8vw, 124px);
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gray-200);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  overflow: hidden;
}
.flag-circle img {
  width: 74%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
  display: block;
}
.flag-circle:hover {
  transform: translateY(-5px) scale(1.06);
  border-color: var(--green);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-pill { font-size: 0.92rem; padding: 11px 16px; }
  .hero-pill-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .hero-pill-1 { left: 0; }
  .hero-pill-2 { right: 0; }
  .hero-pill-3 { left: -2%; }
}
@media (max-width: 768px) {
  #hero.hero-v2 { padding-top: 96px; }
  .hero-v2-grid { grid-template-columns: 1fr; gap: 24px; }
  /* unlike the old hero, KEEP the visual on mobile — it's the design */
  .hero-family-visual { min-height: 380px; display: flex; }
  .hero-family-img { height: 380px; }
  .hero-pill { font-size: 0.82rem; }
  .hero-pill-1 { top: 6%; left: 0; }
  .hero-pill-2 { top: 30%; right: 0; }
  .hero-pill-3 { bottom: 6%; left: 0; }
  .nav-logo-v2 img { height: 44px; }
  .flags-section { padding: 28px 0; }
}