@charset "utf-8";
/* CSS Document */
/* ============================================================
       AROGYA FAQ PAGE — UNIQUE FAQ EXPERIENCE
       Uses the existing Arogya green/red visual language, typography,
       header/footer and appointment modal, while giving the FAQ page
       its own visual system.
       ============================================================ */
    .faq-page {
      --faq-green: #006d33;
      --faq-green-deep: #004f26;
      --faq-red: #e3111d;
      --faq-ink: #191919;
      --faq-muted: #66716d;
      --faq-line: #dfe8e3;
      --faq-soft: #f5faf7;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 3% 8%, rgba(0,109,51,.07), transparent 22%),
        radial-gradient(circle at 97% 16%, rgba(227,17,29,.055), transparent 22%),
        #fff;
    }

    .faq-hero {
      position: relative;
      padding: 64px 0 50px;
      background:
        linear-gradient(135deg, rgba(0,109,51,.045), transparent 45%),
        linear-gradient(315deg, rgba(227,17,29,.035), transparent 42%),
        #fff;
      border-bottom: 1px solid #edf1ee;
    }

    .faq-hero::before,
    .faq-hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .faq-hero::before {
      width: 360px;
      height: 360px;
      right: -150px;
      top: -170px;
      border: 1px solid rgba(0,109,51,.12);
      box-shadow: 0 0 0 28px rgba(0,109,51,.025), 0 0 0 56px rgba(0,109,51,.018);
    }

    .faq-hero::after {
      width: 150px;
      height: 150px;
      left: -75px;
      bottom: -90px;
      background: rgba(227,17,29,.045);
    }

    .faq-hero-inner {
      position: relative;
      z-index: 1;
      width: min(100% - 90px, 1320px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
      gap: 55px;
      align-items: center;
    }

    .faq-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 15px;
      color: var(--faq-red);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .faq-kicker::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--faq-red);
    }

    .faq-hero h1 {
      max-width: 720px;
      margin: 0;
      color: var(--faq-ink);
      font-family: var(--heading);
      font-size: clamp(43px, 5vw, 70px);
      line-height: .98;
      letter-spacing: -.025em;
    }

    .faq-hero h1 span { color: var(--faq-green); }

    .faq-hero-copy {
      max-width: 690px;
      margin: 20px 0 0;
      color: var(--faq-muted);
      font-size: 16px;
      line-height: 1.8;
    }

    .faq-hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 23px;
    }

    .faq-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 33px;
      padding: 0 12px;
      border: 1px solid var(--faq-line);
      border-radius: 99px;
      color: #34413c;
      background: rgba(255,255,255,.82);
      font-size: 12px;
      font-weight: 700;
      box-shadow: 0 5px 18px rgba(0,0,0,.035);
    }

    .faq-badge i {
      width: 7px;
      height: 7px;
      display: inline-block;
      border-radius: 50%;
      background: var(--faq-green);
    }

    .faq-hero-card {
      position: relative;
      min-height: 270px;
      padding: 28px;
      overflow: hidden;
      border: 1px solid rgba(0,109,51,.13);
      border-radius: 22px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(238,248,242,.93));
      box-shadow: 0 24px 65px rgba(0,79,38,.12);
    }

    .faq-hero-card::before {
      content: "?";
      position: absolute;
      right: 8px;
      bottom: -42px;
      color: rgba(0,109,51,.055);
      font-family: var(--heading);
      font-size: 220px;
      font-weight: 700;

      line-height: 1;
    }

    .faq-hero-card-top {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
    }

    .faq-orbit {
      width: 70px;
      height: 70px;
      display: grid;
      place-items: center;
      flex: none;
      border: 1px solid rgba(227,17,29,.25);
      border-radius: 50%;
      color: #fff;
      background: var(--faq-green);
      box-shadow: 0 0 0 9px rgba(0,109,51,.06), 0 12px 25px rgba(0,109,51,.18);
      font-family: var(--heading);
      font-size: 38px;
      font-weight: 700;
    }

    .faq-hero-card h2 {
      margin: 0;
      color: var(--faq-ink);
      font-size: 21px;
      line-height: 1.25;
    }

    .faq-hero-card p {
      position: relative;
      z-index: 1;
      max-width: 360px;
      margin: 22px 0 0;
      color: var(--faq-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .faq-hero-card-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--faq-red);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .faq-shell {
      width: min(100% - 90px, 1320px);
      margin: 0 auto;
      padding: 62px 0 68px;
    }

    .faq-toolbar {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: end;
      margin-bottom: 27px;
    }

    .faq-toolbar h2 {
      margin: 0 0 7px;
      font-family: var(--heading);
      font-size: 35px;
      line-height: 1.08;
    }

    .faq-toolbar h2 span { color: var(--faq-red); }

    .faq-toolbar p {
      margin: 0;
      color: var(--faq-muted);
      font-size: 14px;
    }

    .faq-tools {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .faq-tool-btn {
      min-height: 36px;
      padding: 0 13px;
      border: 1px solid var(--faq-line);
      border-radius: 7px;
      color: var(--faq-green-deep);
      background: #fff;
      font-size: 12px;
      font-weight: 800;
      cursor: pointer;
      transition: .2s ease;
    }

    .faq-tool-btn:hover,
    .faq-tool-btn:focus-visible {
      border-color: rgba(0,109,51,.38);
      background: var(--faq-soft);
      transform: translateY(-1px);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 255px minmax(0, 1fr);
      gap: 36px;
      align-items: start;
    }

    .faq-index {
      position: sticky;
      top: 22px;
      padding: 21px;
      border: 1px solid var(--faq-line);
      border-radius: 16px;
      background: linear-gradient(180deg, #fff, #f8fbf9);
      box-shadow: 0 14px 35px rgba(0,0,0,.045);
    }

    .faq-index-label {
      margin-bottom: 14px;
      color: var(--faq-red);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .faq-index a {
      position: relative;
      display: flex;
      gap: 10px;
      align-items: center;
      min-height: 37px;
      padding: 7px 8px;
      color: #49534f;
      border-radius: 7px;
      font-size: 12.5px;
      font-weight: 600;
      transition: .2s ease;
    }

    .faq-index a b {
      width: 24px;
      color: #9aa59f;
      font-size: 10px;
      font-weight: 800;
    }

    .faq-index a:hover,
    .faq-index a:focus-visible {
      color: var(--faq-green-deep);
      background: var(--faq-soft);
      transform: translateX(3px);
    }

    .faq-index a.active {
      color: #fff;
      background: var(--faq-green);
      box-shadow: 0 8px 18px rgba(0,109,51,.16);
    }

    .faq-index a.active b { color: rgba(255,255,255,.75); }

    .faq-index-note {
      margin: 18px 0 0;
      padding-top: 16px;
      border-top: 1px dashed #cfdcd5;
      color: #6d7773;

      font-size: 11.5px;
      line-height: 1.65;
    }

    .faq-list {
      display: grid;
      gap: 13px;
    }

    .faq-item {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--faq-line);
      border-radius: 15px;
      background: #fff;
      box-shadow: 0 8px 26px rgba(0,0,0,.035);
      transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
      scroll-margin-top: 25px;
    }

    .faq-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--faq-green), #39a56b);
      transform: scaleY(0);
      transform-origin: center;
      transition: transform .3s ease;
    }

    .faq-item:nth-child(2n)::before {
      background: linear-gradient(180deg, var(--faq-red), #f15c64);
    }

    .faq-item.is-open {
      border-color: rgba(0,109,51,.3);
      box-shadow: 0 16px 40px rgba(0,79,38,.09);
      transform: translateY(-1px);
    }

    .faq-item.is-open::before { transform: scaleY(1); }

    .faq-question {
      width: 100%;
      display: grid;
      grid-template-columns: 50px minmax(0, 1fr) 42px;
      gap: 15px;
      align-items: center;
      padding: 21px 20px 21px 17px;
      border: 0;
      color: var(--faq-ink);
      background: transparent;
      text-align: left;
      cursor: pointer;
    }

    .faq-number {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid #dce8e1;
      border-radius: 12px;
      color: var(--faq-green-deep);
      background: #f7fbf8;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .04em;
      transition: .3s ease;
    }

    .faq-item:nth-child(2n) .faq-number {
      color: var(--faq-red-deep);
      background: #fff8f8;
      border-color: #f1dfe0;
    }

    .faq-item.is-open .faq-number {
      color: #fff;
      background: var(--faq-green);
      border-color: var(--faq-green);
      transform: rotate(-3deg);
    }

    .faq-item:nth-child(2n).is-open .faq-number {
      background: var(--faq-red);
      border-color: var(--faq-red);
    }

    .faq-question-text {
      font-size: 15px;
      line-height: 1.45;
      font-weight: 750;
    }

    .faq-question-hint {
      display: block;
      margin-top: 4px;
      color: #9aa39f;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .faq-toggle {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid #dce8e1;
      border-radius: 50%;
      color: var(--faq-green);
      background: #fff;
      transition: .3s ease;
    }

    .faq-toggle::before,
    .faq-toggle::after {
      content: "";
      position: absolute;
      width: 13px;
      height: 2px;
      border-radius: 3px;
      background: currentColor;
      transition: transform .25s ease;
    }

    .faq-toggle::after { transform: rotate(90deg); }

    .faq-item.is-open .faq-toggle {
      color: #fff;
      border-color: var(--faq-green);
      background: var(--faq-green);
      transform: rotate(180deg);
    }

    .faq-item.is-open .faq-toggle::after { transform: rotate(0); }

    .faq-answer-wrap {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .38s cubic-bezier(.2,.75,.2,1);
    }

    .faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }

    .faq-answer {
      min-height: 0;
      overflow: hidden;
    }

    .faq-answer-inner {
      margin: 0 20px 21px 82px;
      padding: 18px 20px 19px;
      border-left: 2px solid rgba(0,109,51,.2);
      border-radius: 0 11px 11px 0;
      background: linear-gradient(90deg, #f5faf7, #fbfdfc);
      color: #4b5651;
      font-size: 14px;
      line-height: 1.82;
    }

    .faq-answer-inner p { margin: 0 0 12px; }
    .faq-answer-inner p:last-child { margin-bottom: 0; }

    .faq-answer-inner ul {
      margin: 8px 0 0;
      padding-left: 20px;
    }

    .faq-answer-inner li { margin: 5px 0; }

    .faq-callout {
      margin-top: 18px;
      padding: 18px 20px;
      display: grid;
      grid-template-columns: 44px 1fr auto;
      gap: 14px;
      align-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--faq-green), var(--faq-green-deep));
      border-radius: 15px;
      box-shadow: 0 15px 35px rgba(0,79,38,.16);
    }

    .faq-callout-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50%;
      font-family: var(--heading);
      font-size: 23px;
    }

    .faq-callout h3 { margin: 0 0 3px; font-size: 16px; }
    .faq-callout p { margin: 0; color: rgba(255,255,255,.86); font-size: 12px; }

    .faq-empty {
      display: none;
      padding: 35px;
      text-align: center;
      border: 1px dashed #cbd9d2;
      border-radius: 15px;
      color: var(--faq-muted);
      background: #fbfdfc;
    }

    .faq-bottom {
      padding: 0 0 8px;
    }

    @media (max-width: 980px) {
      .faq-hero-inner { grid-template-columns: 1fr; gap: 32px; }
      .faq-hero-card { max-width: 620px; }
      .faq-layout { grid-template-columns: 210px minmax(0, 1fr); gap: 22px; }
    }

    @media (max-width: 820px) {
      .faq-hero { padding: 46px 0 40px; }
      .faq-hero-inner,
      .faq-shell { width: min(100% - 32px, 720px); }
      .faq-layout { grid-template-columns: 1fr; }
      .faq-index { position: static; }
      .faq-index a { display: none; }
      .faq-index a:nth-of-type(1),
      .faq-index a:nth-of-type(2),
      .faq-index a:nth-of-type(3) { display: flex; }
      .faq-index-note { margin-top: 10px; }
      .faq-toolbar { grid-template-columns: 1fr; align-items: start; }
      .faq-tools { justify-content: flex-start; }
    }

    @media (max-width: 560px) {
      .faq-hero-inner,
      .faq-shell { width: min(100% - 28px, 520px); }
      .faq-hero h1 { font-size: 43px; }
      .faq-hero-copy { font-size: 14px; }
      .faq-hero-card { padding: 22px; min-height: 235px; }
      .faq-shell { padding: 42px 0 48px; }
      .faq-toolbar h2 { font-size: 29px; }
      .faq-question { grid-template-columns: 39px minmax(0,1fr) 35px; gap: 11px; padding: 16px 12px; }
      .faq-number { width: 36px; height: 36px; border-radius: 10px; font-size: 10px; }
      .faq-question-text { font-size: 13.5px; }
      .faq-question-hint { font-size: 8.5px; }
      .faq-toggle { width: 33px; height: 33px; }
      .faq-toggle::before, .faq-toggle::after { width: 11px; }
      .faq-answer-inner { margin: 0 12px 15px 61px; padding: 14px 14px 15px; font-size: 13px; }
      .faq-callout { grid-template-columns: 40px 1fr; padding: 16px; }
      .faq-callout .btn { grid-column: 2; justify-self: start; }
    }

    @media (prefers-reduced-motion: reduce) {
      .faq-item,
      .faq-toggle,
      .faq-number,
      .faq-answer-wrap,
      .faq-index a,
      .faq-tool-btn { transition: none !important; }
    }
