/* ============================================================
   AHOTO SHO — Ahoto Sustainable Health Outreach
   Main Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9973A;
  --gold-light: #E8C47A;
  --gold-pale: #FAF3E0;
  --green-deep: #0B4D3B;
  --green-mid: #1A7A58;
  --green-light: #E8F5EF;
  --cream: #FAF8F3;
  --charcoal: #1C1C1C;
  --text-muted: #5A5A5A;
  --text-subtle: #888;
  --border: rgba(0,0,0,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,243,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.nav-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green-deep); }

.nav-cta {
  background: var(--green-deep) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-mid) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6% 80px 8%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-mid);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green-deep);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--green-deep);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1.5px solid var(--green-deep);
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover { background: var(--green-light); }

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 20%);
  pointer-events: none;
}

.hero-stat-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(11,77,59,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  padding: 0 8%;
  height: 88px;
  gap: 0;
}

.hero-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding: 0 24px;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ── ABOUT ── */
.about {
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img {
  width: 100%;
  border-radius: 16px;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: #fff;
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,151,58,0.4);
}

.about-badge span:first-child {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.about-badge span:last-child {
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0 8px;
  margin-top: 3px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-deep);
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.mv-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  border-top: 3px solid var(--green-deep);
}

.mv-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.mv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  background: var(--green-deep);
  padding: 100px 8%;
  color: #fff;
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.services-header .section-label { color: var(--gold-light); }
.services-header .section-title { color: #fff; }
.services-header p { color: rgba(255,255,255,0.7); font-size: 17px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 32px 28px;
  transition: background 0.2s, transform 0.2s;
}

.service-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,151,58,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-card h3 { font-family: var(--serif); font-size: 22px; color: #fff; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.8; }

/* ── PROFESSIONALS ── */
.professionals { padding: 100px 8%; }

.professionals-header { max-width: 640px; margin-bottom: 60px; }

.professionals-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.role-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.role-pill:hover { border-color: var(--green-mid); background: var(--green-light); }

.role-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.clinical-list { background: var(--gold-pale); border-radius: 14px; padding: 36px; }
.clinical-list h3 { font-family: var(--serif); font-size: 24px; color: var(--green-deep); margin-bottom: 20px; }
.clinical-list ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.clinical-list li { font-size: 15px; color: var(--text-muted); padding-left: 22px; position: relative; }
.clinical-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-weight: 500; }

/* ── DESTINATIONS ── */
.destinations { background: var(--cream); padding: 100px 8%; }

.destinations-header { text-align: center; max-width: 580px; margin: 0 auto 64px; }

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.dest-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.dest-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,77,59,0.1);
}

.dest-flag { font-size: 40px; margin-bottom: 12px; display: block; }
.dest-name { font-family: var(--serif); font-size: 20px; color: var(--green-deep); font-weight: 600; }
.dest-tag { font-size: 12px; color: var(--text-subtle); margin-top: 4px; }

/* ── QUALITY ── */
.quality {
  padding: 100px 8%;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quality-image { position: relative; }
.quality-image img { width: 100%; border-radius: 16px; object-fit: cover; aspect-ratio: 4/3; display: block; }

.quality-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }

.quality-step { display: flex; gap: 20px; align-items: flex-start; }

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.step-body h4 { font-size: 16px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── PARTNERSHIPS ── */
.partnerships { background: var(--gold-pale); padding: 100px 8%; }

.partnerships-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-types { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.partner-type {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--charcoal);
}

.partner-type-icon {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.why-item { display: flex; gap: 14px; align-items: flex-start; }

.why-check {
  width: 24px; height: 24px;
  background: var(--green-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── FOUNDER ── */
.founder {
  padding: 100px 8%;
  background: var(--cream);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.founder-photo-wrap { position: relative; }

.founder-photo-wrap img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
  filter: grayscale(15%);
}

.founder-photo-frame {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 2px solid var(--gold);
  border-radius: 20px;
  z-index: -1;
  pointer-events: none;
}

.founder-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.5;
  margin-bottom: 32px;
  position: relative;
  padding-left: 30px;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -8px;
  font-size: 60px;
  color: var(--gold);
  font-family: var(--serif);
  line-height: 1;
}

.founder-name { font-family: var(--serif); font-size: 22px; color: var(--charcoal); font-weight: 600; }
.founder-title { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.founder-bio { margin-top: 24px; color: var(--text-muted); font-size: 16px; line-height: 1.8; }

/* ── CONTACT ── */
.contact { background: var(--green-deep); padding: 100px 8%; color: #fff; }

.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact .section-label { color: var(--gold-light); }
.contact .section-title { color: #fff; }

.contact-desc { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.8; margin-top: 20px; }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }

.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(201,151,58,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold-light);
}

.contact-info-body p:first-child {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info-body a,
.contact-info-body p:last-child { color: #fff; text-decoration: none; font-size: 15px; font-weight: 400; }
.contact-info-body a:hover { color: var(--gold-light); }

.contact-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 { font-family: var(--serif); font-size: 26px; color: #fff; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group select option { background: var(--green-deep); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-light); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-form {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-form:hover { background: var(--gold-light); color: var(--green-deep); }

/* ── FOOTER ── */
footer {
  background: #0A1A15;
  color: rgba(255,255,255,0.5);
  padding: 40px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

footer .footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-family: var(--serif);
  font-size: 16px;
}

footer .footer-mark {
  width: 32px; height: 32px;
  background: var(--green-deep);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 14px;
}

/* ── HOW IT WORKS STEPS ── */
.hiw-step {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
  padding-bottom: 4px;
}

.hiw-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.hiw-num.gold { background: var(--gold); color: #fff; }

.hiw-connector {
  position: absolute;
  left: 21px;
  top: 44px;
  width: 2px;
  height: calc(100% - 8px);
  background: linear-gradient(to bottom, var(--green-deep), rgba(11,77,59,0.1));
  min-height: 40px;
}

.hiw-connector.gold { background: linear-gradient(to bottom, var(--gold), rgba(201,151,58,0.1)); }
.hiw-connector.last { display: none; }

.hiw-body { padding: 8px 0 40px 20px; }
.hiw-body h4 { font-size: 16px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.hiw-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
  transition: background 0.2s, transform 0.2s;
}

.testimonial-card:hover { background: rgba(255,255,255,0.11); transform: translateY(-3px); }

.testimonial-stars { color: var(--gold-light); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name { font-size: 14px; font-weight: 500; color: #fff; }
.testimonial-org { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-bottom: 8px;
}

.faq-item:hover { border-color: var(--green-mid); }
.faq-item.active { border-color: var(--green-deep); }

.faq-q {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #fff;
  user-select: none;
}

.faq-item.active .faq-q { color: var(--green-deep); background: var(--green-light); }

.faq-arrow { color: var(--text-subtle); transition: transform 0.25s; font-size: 18px; flex-shrink: 0; }
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--green-deep); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  background: #fff;
  padding: 0 20px;
}

.faq-item.active .faq-a { max-height: 300px; padding: 0 20px 18px; }

/* ── WHATSAPP PULSE ── */
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #mob-menu-btn { display: flex !important; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 60px 6%; }
  .about,
  .quality,
  .partnerships-inner,
  .contact-inner,
  .founder { grid-template-columns: 1fr; gap: 40px; }
  .professionals-layout { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  footer > div:first-child { grid-template-columns: 1fr !important; }
}
