@font-face {
  font-family: "Cocon";
  src: url("https://fonts.cdnfonts.com/s/15241/Cocon-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- GLOBAL TOKENS ---------- */
:root {
  --clr-heading: #8b223d;
  --clr-primary: #E83865;
  --clr-primary-dark: #b02b49;
  --clr-gradient-start: #fbdde6;
  --clr-gradient-end: #f4c2d2;
  --clr-bg: #fffbfc;
  --clr-panel: #ffffff;
  --clr-panel-soft: #fff3f6;
  --clr-panel-accent: #f4cdd7;
  --clr-text: #2e0b14;
  --clr-muted: #7d5b67;
  --shadow-soft: 0 20px 45px rgba(139, 34, 61, 0.12);
  --shadow-card: 0 30px 60px rgba(34, 7, 17, 0.12);
  --radius-card: 36px;
  --radius-pill: 28px;
  --font-heading: "Cocon", "Baloo 2", "Poppins", sans-serif;
  --font-body: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --space-stack: clamp(1.25rem, 2vw, 1.5rem);
  --space-action: clamp(2rem, 4vw, 2.5rem);
  --clr-field: #ffe9f1;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Base heading style shared across sections */
h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.25rem);
  line-height: clamp(2.6rem, 5vw, 2.875rem);
  letter-spacing: -1.2px;
  margin: 0 0 var(--space-stack);
  color: var(--clr-heading);
}

main {
  width: min(1600px, calc(100% - 3rem));
  margin: 0 auto;
  padding-bottom: 6rem;
}

/* Primary button foundation */
.btn {
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 0.65rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-body);
}

/* Gradient CTA */
.btn.primary {
  background: linear-gradient(125deg, #f94f8d 0%, #d42556 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(139, 34, 61, 0.3);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #8b223d;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(46, 11, 20, 0.35);
}

.btn.primary:active {
  background: #6f1a30;
  transform: translateY(0);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* Outline/secondary button */
.btn.ghost {
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--clr-muted);
  padding: 0.85rem 2.2rem;
  box-shadow: inset 0 0 0 1px rgba(139, 34, 61, 0.15);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: #ffd5df;
  border-color: transparent;
  color: var(--clr-heading);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(139, 34, 61, 0.15);
}

.btn.ghost:active {
  background: #f3bccb;
  transform: translateY(0);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* ---------- HERO PANEL ---------- */
.hero {
  margin-top: 3rem;
  border-radius: 56px;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(135deg, #f2c6d6 0%, #e4a8be 55%, #d083a6 100%);
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: clamp(80vh, 60vw, 90vh);
  box-shadow: var(--shadow-card);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.25), transparent 52%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/hero-background.png") center/cover no-repeat;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 5vw, 4.3rem);
  margin: 0;
  line-height: 1.05;
  color: #fff;
}

.hero-highlight {
  color: var(--clr-primary);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-muted);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.hero-text {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 520px;
}

.hero-btn {
  margin-top: 0.5rem;
  align-self: flex-start;
  padding: 1rem 2.6rem;
  font-size: 1rem;
  gap: 0.8rem;
  background: linear-gradient(115deg, #f74f92, #d7336f);
  box-shadow: 0 25px 45px rgba(139, 34, 61, 0.35);
}

.hero-btn-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.hero-quote-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: var(--clr-panel);
  backdrop-filter: blur(12px);
  max-width: 420px;
  margin-left: auto;
}

.hero-quote-card p {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

.hero-quote-card span {
  color: var(--clr-primary);
}

.hero-quote-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #f6ccdb);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-quote-icon svg {
  width: 34px;
  height: 44px;
}

/* ---------- ACCREDITATIONS STRIP ---------- */
.accreditations {
  margin: 1.75rem auto 0;
  width: min(1100px, calc(100% - 2rem));
  background: var(--clr-panel);
  border-radius: var(--radius-pill);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-soft);
}

.logo-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
}

.logo-track img {
  max-height: 30px;
  filter: grayscale(1);
  opacity: 0.7;
}

.logo-track img:hover {
  opacity: 1;
}

/* Wrapper */
/* ---------- STATS BLOCK ---------- */
.stats {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ---- SMALL CARDS ROW ---- */
.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}

/* ---- SMALL CARD ---- */
.stat-card {
  background: var(--clr-panel-soft);
  border-radius: 42px;
  padding: 2rem 2.5rem;
  flex: 1 1 clamp(260px, 30%, 420px);
  min-height: 180px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Label */
.stat-card .stat-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-heading);
  margin: 0 0 0.5rem;
}

/* Number */
.stat-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1;
  color: var(--clr-heading);
}

/* Description */
.stat-card p:last-of-type {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 260px;
  margin: 0 auto;
}

/* ---- GIANT CARD ---- */
.stat-card.giant {
  background: var(--clr-panel-soft);
  border-radius: 42px;
  padding: 3rem 2.5rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto; /* center it */
}

/* Giant label */
.stat-card.giant .stat-label {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

/* Giant number */
.stat-card.giant h3 {
  font-size: 3rem;
  margin: 0;
}

/* Giant text */
.stat-card.giant p:last-of-type {
  max-width: 550px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    max-width: 100%;
    width: 100%;
  }

  .stat-card.giant {
    max-width: 100%;
  }
}

/* ---------- INFO ROWS ---------- */
.info-sections {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 4rem auto;
  max-width: 1600px;
  padding: 0 2rem;
}

/* Row layout */
.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.info-row.reverse {
  direction: ltr;
}

.info-row.reverse > * {
  direction: ltr; /* keeps text normal */
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--clr-text);
  max-width: 480px;
  margin: 0;
}

/* Media block */
.info-media img {
  width: 100%;
  display: block;
  border-radius: 32px;
  object-fit: cover;
}

/* CTA */
.cta-btn {
  display: inline-block;
  margin: 0;
  padding: 0.9rem 1.8rem;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 28px;
  text-decoration: none;
  transition: 0.2s ease;
}

.cta-btn:hover {
  opacity: 0.85;
}

:is(.info-text, .service-text, .reasons-text, .faq-content, .cta-content, .contact-form) > * + * {
  margin-top: var(--space-stack);
}

:is(.info-text, .service-text, .reasons-text, .faq-content, .cta-content, .contact-form)
  > * + :is(.btn, .cta-btn, .cta-actions) {
  margin-top: var(--space-action);
}

:is(.info-text, .service-text, .reasons-text, .faq-content, .cta-content, .contact-form) p {
  margin: 0;
}

/* -----------------------
   RESPONSIVE
------------------------ */
@media (max-width: 900px) {
  .info-row,
  .info-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: left;
  }

  .info-media img {
    width: 100%;
    margin-bottom: 1rem;
  }

  .info-text p {
    max-width: 100%;
  }
}


/* ---------- SERVICE PANEL ---------- */
.service {
  margin-top: 3.5rem;
  background: var(--clr-panel);
  border-radius: 48px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.service h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--clr-heading);
}

.service-media img {
  width: 100%;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* ---------- PROCESS GRID ---------- */
.process {
  margin-top: 4rem;
  background: var(--clr-panel-soft);
  border-radius: 48px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
}

.process header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.process-card {
  background: var(--clr-panel);
  border-radius: 32px;
  padding: 1.6rem;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(235, 94, 130, 0.1);
}

.process-card img {
  width: 64px;
  height: 64px;
  margin: 1rem auto;
}

.step-badge {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  background: rgba(235, 94, 130, 0.18);
  color: var(--clr-heading);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- REASONS GRID ---------- */
.reasons {
  margin-top: 4rem;
  background: var(--clr-panel);
  border-radius: 48px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.reasons-graphic img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  display: block;
}

/* ---------- FAQ PANEL ---------- */
.faq {
  margin-top: 4rem;
  background: var(--clr-panel);
  border-radius: 48px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.faq-media img {
  width: 100%;
  border-radius: 44px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.5rem;
  border-radius: 28px;
  background: var(--clr-panel-soft);
  box-shadow: inset 0 0 0 1px rgba(235, 94, 130, 0.12);
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--clr-heading);
}

/* ---------- CTA PANEL ---------- */
.cta {
  margin-top: 4rem;
  background: linear-gradient(120deg, #8b223d, #eb5e82);
  border-radius: 48px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  color: #fff;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.cta-content h2 {
  color: #fff;
}

.cta-content p {
  margin: 0;
}

.cta-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.cta-meta span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.cta-meta strong {
  display: block;
  font-size: 1.2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta .btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.cta .btn.ghost:hover,
.cta .btn.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.cta .btn.ghost:active {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta-circle {
  width: min(220px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  justify-self: center;
}

.cta-circle img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* ---------- CONTACT BLOCK ---------- */
.contact {
  margin-top: 4rem;
  background: var(--clr-panel);
  border-radius: 48px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-muted);
  display: grid;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  background: var(--clr-field);
  font-family: inherit;
  transition: box-shadow 0.2s ease;
  color: var(--clr-text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(46, 11, 20, 0.45);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 3rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(235, 94, 130, 0.25);
}

.contact-form .select-wrapper {
  position: relative;
}

.contact-form .select-wrapper::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #b02b49;
  border-bottom: 2px solid #b02b49;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.contact-form .privacy {
  font-size: 0.8rem;
  color: var(--clr-muted);
  margin: 0;
}

.contact-media {
  display: grid;
  gap: 1.5rem;
}

.contact-media img {
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.contact-card {
  background: var(--clr-panel-soft);
  border-radius: 32px;
  padding: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(235, 94, 130, 0.12);
  color: var(--clr-heading);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 2.5rem;
  }

  .hero-visual {
    align-items: center;
    width: 100%;
  }

  .hero-quote-card {
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
  }

  .service,
  .reasons,
  .cta,
  .contact {
    grid-template-columns: 1fr;
  }

  .cta {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

}

@media (max-width: 768px) {
  .hero {
    padding: 2.25rem;
    border-radius: 40px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 7vw, 3.2rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-quote-card {
    width: 100%;
    border-radius: 36px;
  }
}

@media (max-width: 600px) {
  main {
    width: calc(100% - 1.5rem);
  }

  .hero,
  .process,
  .faq,
  .cta,
  .contact {
    border-radius: 32px;
  }

  .stats-row,
  .cta-meta {
    grid-template-columns: 1fr;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.75rem;
  }

  .hero-copy {
    gap: 0.75rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-quote-card {
    align-items: flex-start;
    text-align: left;
  }

  .hero-quote-icon {
    width: 58px;
    height: 58px;
  }
}
