/* ================================================================
   INDHEAL — treatment-overview.css
   Ad landing page. Conversion-focused. Variables from site.css.
   ================================================================ */

[hidden] { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.ov-hero {
    background-color: #1e6b58 !important;
    background-image: linear-gradient(135deg, #1a5c4a 0%, #1e6b58 55%, #22785f 100%) !important;
    color: #fff;
    padding: var(--space-6) 0;
}

/* Three-column: image | content | form */
.ov-hero__inner {
    display: grid;
    grid-template-columns: 200px 1fr 360px;
    gap: var(--space-6);
    align-items: center;
}

@media (max-width: 1100px) {
    .ov-hero__inner {
        grid-template-columns: 1fr 340px;
    }
    .ov-hero__img-col { display: none; }
}

@media (max-width: 1023px) {
    .ov-hero__inner { grid-template-columns: 1fr; }
    .ov-hero__img-col { display: none; }
}

/* Image column */
.ov-hero__img-wrap {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
    overflow: hidden;
}
.ov-hero__img { width: 100%; height: 100%; object-fit: contain; }

/* Content column */
.ov-hero__content { color: #fff; }

.ov-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: var(--weight-semi);
    line-height: 1.15;
    margin: 0 0 var(--space-3);
    color: #fff;
}
.ov-hero__title span { opacity: .72; font-weight: var(--weight-normal); }

.ov-hero__sub {
    font-size: var(--text-md);
    opacity: .85;
    margin: 0 0 var(--space-5);
    line-height: 1.55;
}

/* Stat boxes */
.ov-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.ov-stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    min-width: 120px;
}
.ov-stat__icon  { font-size: 1.3rem; flex-shrink: 0; }
.ov-stat__label { display: block; font-size: var(--text-xs); opacity: .7;
                  text-transform: uppercase; letter-spacing: .05em; }
.ov-stat__value { display: block; font-size: var(--text-md); font-weight: var(--weight-semi); line-height: 1.2; }

.ov-hero__actions { display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }

.ov-detail-link {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: color var(--transition);
}
.ov-detail-link:hover { color: #fff; text-decoration: underline; }

/* Form card */
.ov-form-wrap { display: flex; flex-direction: column; gap: var(--space-3); }

.ov-form-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    box-shadow: 0 8px 40px rgba(0,0,0,.20);
}

.ov-form-card__title {
    font-size: var(--text-lg);
    font-weight: var(--weight-semi);
    color: var(--color-text-heading);
    margin: 0 0 4px;
}
.ov-form-card__sub {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-4);
}

.enquiry-form             { display: flex; flex-direction: column; gap: var(--space-3); }
.enquiry-form .form-group { margin-bottom: 0; }
.enquiry-form label       { margin-bottom: 2px; font-size: var(--text-sm); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.ov-form-card__privacy {
    font-size: var(--text-xs);
    color: var(--color-text-hint);
    text-align: center;
    margin: var(--space-1) 0 0;
}

.enquiry-success { text-align: center; padding: var(--space-3) 0; }
.success-icon {
    width: 48px; height: 48px;
    background: var(--color-primary); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: var(--text-xl); margin: 0 auto var(--space-3);
}
.enquiry-success h3 { font-size: var(--text-lg); margin: 0 0 var(--space-2); }
.enquiry-success p  { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0 0 var(--space-3); }

.ov-trust {
    display: flex;
    justify-content: space-between;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: rgba(255,255,255,.65);
    flex-wrap: wrap;
}


/* ══════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ══════════════════════════════════════════════════════════════ */
.ov-section { padding: var(--space-7) 0; }
.ov-section:nth-child(even) { background: var(--color-bg-subtle); }

.ov-section__heading {
    font-size: var(--text-xl);
    font-weight: var(--weight-semi);
    color: var(--color-text-heading);
    margin: 0 0 var(--space-5);
}

.ov-section__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--space-5);
    gap: var(--space-4);
}
.ov-section__header .ov-section__heading { margin-bottom: 0; }

.ov-view-all {
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: var(--weight-medium);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.ov-view-all:hover { text-decoration: underline; }


/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — journey strip
   ══════════════════════════════════════════════════════════════ */
.ov-journey__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding-bottom: var(--space-2);
}

.ov-step {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--space-3);
    position: relative;
}

.ov-step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: var(--text-base);
    font-weight: var(--weight-semi);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ov-step__icon {
    font-size: 1.75rem;
    margin-bottom: var(--space-2);
}

.ov-step__title {
    font-size: var(--text-base);
    font-weight: var(--weight-semi);
    color: var(--color-text-heading);
    margin: 0 0 var(--space-1);
}

.ov-step__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Connector line between steps */
.ov-step__connector {
    flex-shrink: 0;
    width: 40px;
    height: 2px;
    background: var(--color-primary-light);
    margin-top: 17px; /* aligns with centre of the number circle */
    opacity: .5;
}

@media (max-width: 768px) {
    .ov-journey__steps { flex-direction: column; align-items: stretch; gap: var(--space-4); }
    .ov-step           { flex-direction: row; text-align: left; align-items: flex-start; gap: var(--space-3); }
    .ov-step__num      { margin-bottom: 0; flex-shrink: 0; }
    .ov-step__icon     { display: none; }
    .ov-step__connector { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   FACTS — each fact on its own full-width line
   ══════════════════════════════════════════════════════════════ */
.ov-facts__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;    /* single column — one fact per line */
    gap: var(--space-3);
    counter-reset: facts-counter;
}

.ov-facts__body li {
    counter-increment: facts-counter;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-5);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    font-size: var(--text-base);
    color: var(--color-text-body);
    line-height: 1.55;
}

/* Numbered circle on the left */
.ov-facts__body li::before {
    content: counter(facts-counter);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: var(--text-sm);
    font-weight: var(--weight-semi);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}


/* ══════════════════════════════════════════════════════════════
   WHY INDIA
   ══════════════════════════════════════════════════════════════ */
.ov-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

@media (max-width: 768px) {
    .ov-why-grid { grid-template-columns: 1fr; gap: var(--space-3); }
}

.ov-why-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}
.ov-why-card__icon { font-size: 2rem; display: block; margin-bottom: var(--space-2); }
.ov-why-card h3    { font-size: var(--text-md); font-weight: var(--weight-semi);
                     margin: 0 0 var(--space-2); color: var(--color-text-heading); }
.ov-why-card p     { font-size: var(--text-base); color: var(--color-text-muted);
                     margin: 0; line-height: 1.6; }


/* ══════════════════════════════════════════════════════════════
   FACTORS — cost + success side by side in 2 columns
   ══════════════════════════════════════════════════════════════ */
.ov-factors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: start;
}

@media (max-width: 768px) {
    .ov-factors-grid { grid-template-columns: 1fr; gap: var(--space-5); }
}

.ov-factors-col {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
}

.ov-factors-col__header {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.ov-factors__icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }

.ov-factors-col__title {
    font-size: var(--text-md);
    font-weight: var(--weight-semi);
    color: var(--color-text-heading);
    margin: 0 0 4px;
}

.ov-factors__sub {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Factor list items — pill/tag style */
.ov-factors__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.ov-factors__body li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-body);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.5;
}

.ov-factors__body li:last-child { border-bottom: none; }

.ov-factors--cost    .ov-factors__body li::before { content: "💰"; font-size: .9rem; flex-shrink: 0; }
.ov-factors--success .ov-factors__body li::before { content: "✓"; color: var(--color-primary);
                                                     font-weight: var(--weight-semi); flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════════
   FAQs
   ══════════════════════════════════════════════════════════════ */
.ov-faq-list { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }

.ov-faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }

.ov-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--text-md);
    font-weight: var(--weight-medium);
    font-family: var(--font-sans);
    color: var(--color-text-heading);
    cursor: pointer;
    transition: background var(--transition);
}
.ov-faq-question:hover                 { background: var(--color-bg-subtle); }
.ov-faq-question[aria-expanded="true"] { background: var(--color-primary-subtle);
                                          color: var(--color-primary-text); }

.ov-faq-icon { font-size: 1.25rem; color: var(--color-primary); flex-shrink: 0; line-height: 1; }

.ov-faq-answer {
    padding: var(--space-3) var(--space-5) var(--space-4);
    border-top: 1px solid var(--color-border);
    font-size: var(--text-base);
    color: var(--color-text-body);
    line-height: 1.7;
}

.ov-faq-more { text-align: center; }


/* ══════════════════════════════════════════════════════════════
   HOSPITALS — horizontal scroll strip
   ══════════════════════════════════════════════════════════════ */
.ov-hospital-strip {
    display: flex;
    gap: var(--space-4);
    overflow-x: auto;
    padding-bottom: var(--space-3);
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.ov-hospital-card {
    flex-shrink: 0;
    width: 200px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.ov-hospital-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.ov-hospital-card__img-wrap {
    height: 110px;
    background: var(--color-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
}
.ov-hospital-card__img   { max-width: 100%; max-height: 100%; object-fit: contain; }
.ov-hospital-card__body  { padding: var(--space-3); flex: 1; }
.ov-hospital-card__name  { font-size: var(--text-sm); font-weight: var(--weight-medium);
                            margin: 0 0 4px; line-height: 1.35; }
.ov-hospital-card__loc   { font-size: var(--text-xs); color: var(--color-text-muted);
                            margin: 0 0 var(--space-2); }
.ov-hospital-card__badges { display: flex; gap: 4px; flex-wrap: wrap; }

.ov-hospital-card--viewall {
    align-items: center;
    justify-content: center;
    background: var(--color-primary-subtle);
    border-color: var(--color-primary-light);
    color: var(--color-primary-text);
    font-size: var(--text-base);
    font-weight: var(--weight-semi);
    text-align: center;
    min-height: 160px;
}
.ov-hospital-card--viewall:hover { background: #c2eed9; }


/* ══════════════════════════════════════════════════════════════
   SINGLE TESTIMONIAL
   ══════════════════════════════════════════════════════════════ */
.ov-testimonial {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-5);
    align-items: start;
}

@media (max-width: 768px) {
    .ov-testimonial { grid-template-columns: 1fr; }
}

.ov-testimonial__patient {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    min-width: 120px;
    text-align: center;
}

.ov-testimonial__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-subtle);
}

.ov-testimonial__name { font-weight: var(--weight-semi); font-size: var(--text-base); margin: 0; }
.ov-testimonial__meta { font-size: var(--text-xs); color: var(--color-text-muted); margin: 0; }
.ov-testimonial__stars { display: flex; gap: 1px; justify-content: center; }

.star         { color: var(--color-border-strong); font-size: var(--text-md); }
.star--filled { color: var(--color-warning); }

.ov-testimonial__quote {
    margin: 0;
    font-style: normal;
}
.ov-testimonial__quote p {
    font-size: var(--text-lg);
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-text-heading);
    line-height: 1.65;
    margin: 0 0 var(--space-3);
}
.ov-testimonial__full { color: var(--color-text-body); font-size: var(--text-md); }

.ov-testimonial__expand {
    background: none; border: none; padding: 0;
    font-size: var(--text-sm); color: var(--color-primary);
    cursor: pointer; font-weight: var(--weight-medium);
    font-family: var(--font-sans);
}

.ov-testimonial__video-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    font-family: var(--font-sans);
    cursor: pointer;
    white-space: nowrap;
    align-self: center;
    transition: background var(--transition);
}
.ov-testimonial__video-btn:hover { background: var(--color-primary-dark); }
.ov-play-icon { font-size: .75rem; }


/* ══════════════════════════════════════════════════════════════
   BOTTOM CTA BAND
   ══════════════════════════════════════════════════════════════ */
.ov-cta-band {
    background: var(--color-primary);
    color: #fff;
    padding: var(--space-6) 0;
}

.ov-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-5);
    flex-wrap: wrap;
}

.ov-cta-band__title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-semi);
    color: #fff;
    margin: 0 0 var(--space-1);
}

.ov-cta-band__sub {
    font-size: var(--text-base);
    opacity: .85;
    margin: 0;
}

.ov-cta-band .btn-primary {
    background: #fff !important;
    color: var(--color-primary) !important;
    border-color: #fff !important;
    white-space: nowrap;
    flex-shrink: 0;
}
.ov-cta-band .btn-primary:hover {
    background: var(--color-primary-subtle) !important;
}


/* ══════════════════════════════════════════════════════════════
   STICKY BOTTOM BAR — mobile only
   ══════════════════════════════════════════════════════════════ */
.ov-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,.10);
    padding: var(--space-3) 0;
    transition: transform .3s ease;
    display: none;
}

.ov-sticky-bar--hidden { transform: translateY(110%); }

@media (max-width: 1023px) { .ov-sticky-bar { display: block; } }

.ov-sticky-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.ov-sticky-bar__info strong { display: block; font-size: var(--text-base);
                               font-weight: var(--weight-semi); color: var(--color-text-heading); }
.ov-sticky-bar__info span   { font-size: var(--text-sm); color: var(--color-primary);
                               font-weight: var(--weight-medium); }


/* ══════════════════════════════════════════════════════════════
   VIDEO LIGHTBOX
   ══════════════════════════════════════════════════════════════ */
.video-lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.92);
    display: flex; align-items: center; justify-content: center;
    padding: var(--space-4);
}

.video-lightbox__close {
    position: absolute; top: var(--space-5); right: var(--space-5);
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: var(--text-lg); width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.video-lightbox__close:hover { background: rgba(255,255,255,.3); }

.video-lightbox__frame {
    width: 100%; max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg); overflow: hidden;
}
.video-lightbox__frame iframe { width: 100%; height: 100%; border: none; }


/* ══════════════════════════════════════════════════════════════
   MOBILE SHEET
   ══════════════════════════════════════════════════════════════ */
.mobile-sheet { position: fixed; inset: 0; z-index: 500; }
.mobile-sheet__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }

.mobile-sheet__panel {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--color-bg-card);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    padding: var(--space-4) var(--space-5) var(--space-8);
    max-height: 90vh; overflow-y: auto;
    transform: translateY(100%); transition: transform .3s ease;
}
.mobile-sheet__panel.open { transform: translateY(0); }

.mobile-sheet__drag-handle {
    width: 36px; height: 4px; background: var(--color-border-strong);
    border-radius: var(--radius-pill); margin: 0 auto var(--space-3);
}

.mobile-sheet__close {
    position: absolute; top: var(--space-4); right: var(--space-4);
    background: none; border: none; font-size: var(--text-lg);
    cursor: pointer; color: var(--color-text-muted); line-height: 1;
}

.mobile-sheet__title { font-size: var(--text-xl); font-weight: var(--weight-semi); margin: 0 0 4px; }
.mobile-sheet__sub   { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0 0 var(--space-4); }


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .ov-stats    { gap: var(--space-2); }
    .ov-stat     { min-width: calc(50% - var(--space-1)); }
    .form-row    { grid-template-columns: 1fr; }
    .ov-cta-band__inner { flex-direction: column; text-align: center; }
}
