/* ===== Vitiligo Programme Page — Green Fields Overseas ===== */

:root {
  --vit-brown:  #5d4037;
  --vit-warm:   #8d6e63;
  --vit-cream:  #faf6f0;
  --vit-dark:   #2a1a0e;
  --gold:       #c5a028;
  --grey:       #666;
  --white:      #fff;
}

/* --- Hero --- */
.vit-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.vit-hero__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vit-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.vit-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(42, 26, 14, 0.90) 0%,
    rgba(42, 26, 14, 0.60) 55%,
    rgba(42, 26, 14, 0.15) 100%);
}
.vit-hero__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 120px 0 80px;
  color: #fff;
}
.vit-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vit-brown);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.vit-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.vit-hero__content h1 em {
  color: var(--gold);
  font-style: italic;
  display: block;
  font-size: .65em;
  letter-spacing: .06em;
  margin-top: 6px;
}
.vit-hero__content > p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}
.vit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.vit-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}
.vit-pill i { color: var(--gold); }
.vit-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- What is vitiligo --- */
.vit-what { background: var(--vit-cream); }
.vit-what__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 820px) { .vit-what__grid { grid-template-columns: 1fr; } }
.vit-what__content p { color: var(--grey); line-height: 1.8; margin-bottom: 16px; }
.vit-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 560px) { .vit-facts { grid-template-columns: 1fr; } }
.vit-fact {
  background: #fff;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border-top: 3px solid var(--gold);
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
}
.vit-fact__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--vit-brown);
  display: block;
  margin-bottom: 6px;
}
.vit-fact__label { font-size: .82rem; color: var(--grey); line-height: 1.4; }
.vit-what__img { position: relative; }
.vit-what__img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  object-fit: cover;
  max-height: 480px;
}
.vit-what__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.vit-what__img-badge i { color: var(--vit-brown); font-size: 1.4rem; }
.vit-what__img-badge span { font-size: .85rem; font-weight: 600; color: var(--vit-dark); line-height: 1.4; }

/* --- Causes --- */
.vit-causes { background: #fff; }
.vit-causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 860px) { .vit-causes-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vit-causes-grid { grid-template-columns: 1fr; } }
.vit-cause-card {
  background: var(--vit-cream);
  border-radius: 14px;
  padding: 28px 22px;
  border-bottom: 3px solid var(--gold);
  transition: transform .25s, box-shadow .25s;
}
.vit-cause-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.vit-cause-icon {
  width: 54px;
  height: 54px;
  background: var(--vit-brown);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.vit-cause-icon i { color: var(--gold); font-size: 1.3rem; }
.vit-cause-card h4 { color: var(--vit-dark); font-size: 1rem; margin-bottom: 8px; }
.vit-cause-card p { color: var(--grey); font-size: .87rem; line-height: 1.65; }

/* --- Programme --- */
.vit-programme { background: var(--vit-dark); color: #fff; }
.vit-programme__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 820px) { .vit-programme__grid { grid-template-columns: 1fr; } }
.vit-programme__intro { color: rgba(255,255,255,.85); line-height: 1.8; margin-bottom: 16px; }
.vit-programme__content > p { color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 24px; }
.vit-programme__steps { display: flex; flex-direction: column; gap: 22px; margin-top: 10px; }
.vit-pstep {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.vit-pstep__num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
}
.vit-pstep h4 { color: var(--gold); font-size: .95rem; margin-bottom: 4px; }
.vit-pstep p { color: rgba(255,255,255,.75); font-size: .87rem; line-height: 1.6; }
.vit-programme__img { position: relative; }
.vit-programme__img img {
  width: 100%;
  border-radius: 16px;
  border: 2px solid rgba(197,160,40,0.4);
}
.vit-programme__stat-card {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--gold);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}
.vit-programme__stat-card i { font-size: 1.5rem; }
.vit-programme__stat-card strong { display: block; font-size: .88rem; font-weight: 700; }
.vit-programme__stat-card span { font-size: .78rem; opacity: .9; }

/* --- Protocol / How it works --- */
.vit-how { background: var(--vit-cream); }
.vit-protocol {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.vit-product-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.09);
  padding-bottom: 24px;
  border-top: 4px solid var(--vit-brown);
  text-align: center;
}
.vit-product-card--green { border-top-color: #2e7d32; }
.vit-product-card__img {
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vit-product-card__img img { max-height: 200px; object-fit: contain; padding: 12px; }
.vit-product-card h3 { color: var(--vit-dark); font-size: 1.3rem; padding: 16px 20px 4px; font-family: 'Playfair Display', serif; }
.vit-product-card__role { color: var(--vit-brown); font-size: .85rem; font-weight: 700; padding: 0 20px; margin-bottom: 16px; display: block; }
.vit-product-card ul { list-style: none; padding: 0 20px; text-align: left; margin-bottom: 20px; }
.vit-product-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: #444;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.5;
}
.vit-product-card ul li img { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.vit-protocol__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold);
  align-self: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
@media (max-width: 720px) { .vit-protocol__plus { transform: rotate(90deg); width: 100%; border-radius: 0; box-shadow: none; } }
.vit-synergy {
  margin-top: 40px;
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.vit-synergy i { color: var(--gold); font-size: 2rem; flex-shrink: 0; }
.vit-synergy p { color: #444; font-size: .95rem; line-height: 1.7; margin: 0; }

/* --- Timeline --- */
.vit-timeline { background: #fff; }
.vit-timeline__track {
  position: relative;
  max-width: 720px;
  margin: 48px auto 0;
  padding-left: 40px;
}
.vit-timeline__track::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--vit-brown));
  border-radius: 2px;
}
.vit-tl-item {
  position: relative;
  margin-bottom: 40px;
}
.vit-tl-dot {
  position: absolute;
  left: -31px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--gold);
}
.vit-tl-time {
  display: inline-block;
  background: var(--vit-brown);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.vit-tl-content h4 { color: var(--vit-dark); font-size: 1.05rem; margin-bottom: 6px; }
.vit-tl-content p { color: var(--grey); font-size: .9rem; line-height: 1.7; }
.vit-disclaimer {
  max-width: 720px;
  margin: 20px auto 0;
  background: #fff8e1;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.vit-disclaimer i { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.vit-disclaimer p { color: #5d4a00; font-size: .87rem; line-height: 1.65; margin: 0; }

/* --- FAQ --- */
.vit-faq { background: var(--vit-cream); }
.vit-faq-list { max-width: 780px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.vit-faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #ede0d0;
}
.vit-faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--vit-dark);
  font-size: .97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vit-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}
.vit-faq-item[open] summary::after { content: '−'; }
.vit-faq-item p {
  padding: 0 22px 18px;
  color: var(--grey);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}

/* --- CTA section --- */
.vit-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 20px;
}
.vit-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vit-cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.vit-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(42,26,14,0.97) 0%, rgba(93,64,55,0.88) 100%);
}
.vit-cta__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  margin: 0 auto;
}
.vit-cta__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 14px;
}
.vit-cta__content h2 em { color: var(--gold); font-style: normal; }
.vit-cta__content > p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.75;
}
.vit-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.vit-cta__note { color: rgba(255,255,255,.55); font-size: .84rem; margin-bottom: 40px; }
.vit-cta__note i { margin-right: 6px; }
.vit-also {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.vit-also p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 14px; }
.vit-also a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0 6px 10px;
  transition: background .2s;
}
.vit-also a:hover { background: rgba(255,255,255,0.18); }
.vit-also a i { color: var(--gold); }
