/* ==========================================================
   DR MOHIT MALHOTRA PROFILE PAGE
   Based on the Dr Anee Sharma page styling
========================================================== */

:root {
    --mohit-green: #173426;
    --mohit-green2: #315a3b;
    --mohit-gold: #b4893a;
    --mohit-cream: #f8f4ed;
    --mohit-paper: #fffdf9;
    --mohit-ink: #1e281f;
    --mohit-muted: #687067;
    --mohit-line: rgba(31, 61, 42, .13);
}

.mohit-page {
    background: var(--mohit-paper);
    color: var(--mohit-ink);
}

.mohit-page * {
    box-sizing: border-box;
}

/* HERO */
.mohit-hero {
    padding: 72px 0 76px;
    background:
        radial-gradient(circle at 82% 12%, rgba(180, 137, 58, .14), transparent 27%),
        linear-gradient(120deg, #fbf7f0 0%, #f4ede2 100%);
    overflow: hidden;
}

.mohit-hero__grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 72px;
    align-items: center;
}

.mohit-eyebrow,
.mohit-section-kicker {
    display: inline-block;
    color: var(--mohit-gold);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.mohit-hero h1 {
    margin: 18px 0;
    font-family: var(--ikara-display, Georgia, serif);
    font-size: clamp(3.7rem, 6vw, 6.6rem);
    line-height: .92;
    letter-spacing: -.055em;
    color: var(--mohit-green);
}

.mohit-hero__role {
    margin: 0 0 12px;
    font-family: var(--ikara-display, Georgia, serif);
    font-size: clamp(1.45rem, 2.3vw, 2.15rem);
    color: #8f6828;
}

.mohit-hero__credentials {
    font-size: .88rem;
    font-weight: 700;
    color: #465249;
    letter-spacing: .025em;
}

.mohit-hero__lead {
    max-width: 650px;
    margin: 24px 0 30px;
    font-size: 1.12rem;
    line-height: 1.8;
    color: #535d55;
}

/* BUTTONS */
.mohit-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.mohit-btn {
    display: inline-flex;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .88rem;
    text-decoration: none;
    transition: .25s;
}

.mohit-btn:hover {
    transform: translateY(-2px);
}

.mohit-btn--gold {
    background: var(--mohit-gold);
    color: #fff;
}

.mohit-btn--outline {
    border: 1px solid rgba(23, 52, 38, .2);
    color: var(--mohit-green);
    background: rgba(255, 255, 255, .45);
}

.mohit-btn--cream {
    background: #fff;
    color: var(--mohit-green);
}

.mohit-btn--ghost {
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
}

/* HERO PROOF */
.mohit-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
    border-top: 1px solid var(--mohit-line);
    border-bottom: 1px solid var(--mohit-line);
}

.mohit-proof div {
    padding: 18px 18px 18px 0;
}

.mohit-proof div + div {
    padding-left: 18px;
    border-left: 1px solid var(--mohit-line);
}

.mohit-proof strong,
.mohit-proof span {
    display: block;
}

.mohit-proof strong {
    font-family: var(--ikara-display, Georgia, serif);
    font-size: 1.15rem;
    color: var(--mohit-green);
}

.mohit-proof span {
    margin-top: 3px;
    font-size: .67rem;
    color: var(--mohit-muted);
}

/* HERO IMAGE */
.mohit-hero__visual {
    position: relative;
}

.mohit-photo-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    background: #dfd1ba;
    box-shadow: 0 30px 80px rgba(54, 43, 24, .14);
}

.mohit-photo-card img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: top center;
}

.mohit-photo-card__caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 253, 249, .9);
    backdrop-filter: blur(12px);
}

.mohit-photo-card__caption span,
.mohit-photo-card__caption strong {
    display: block;
}

.mohit-photo-card__caption span {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--mohit-gold);
    font-weight: 800;
}

.mohit-photo-card__caption strong {
    margin-top: 3px;
    color: var(--mohit-green);
    font-size: 1rem;
}

.mohit-floating-badge {
    position: absolute;
    left: -38px;
    top: 15%;
    padding: 14px 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(44, 38, 27, .12);
    font-size: .7rem;
    color: var(--mohit-muted);
}

.mohit-floating-badge strong {
    color: var(--mohit-green);
    font-size: .9rem;
}

/* STICKY NAV */
.mohit-jump {
    position: sticky;
    top: 90px;
    z-index: 20;
    background: rgba(255, 253, 249, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--mohit-line);
}

.mohit-jump__inner {
    display: flex;
    gap: 26px;
    overflow: auto;
    white-space: nowrap;
}

.mohit-jump a {
    padding: 16px 0;
    font-size: .74rem;
    font-weight: 800;
    color: #526056;
    text-decoration: none;
}

.mohit-jump a:hover {
    color: var(--mohit-gold);
}

/* SECTIONS */
.mohit-section {
    padding: 105px 0;
}

.mohit-section--cream {
    background: #f8f4ed;
}

.mohit-section--dark {
    background: #10291d;
    color: #fff;
}

.mohit-about {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 100px;
    align-items: start;
}

.mohit-section h2,
.mohit-heading h2,
.mohit-faq h2,
.mohit-cta h2 {
    margin: 14px 0 0;
    font-family: var(--ikara-display, Georgia, serif);
    font-size: clamp(2.5rem, 4.5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -.045em;
    color: var(--mohit-green);
}

.mohit-richtext p {
    margin: 0 0 20px;
    font-size: 1.02rem;
    line-height: 1.9;
    color: #586159;
}

.mohit-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.mohit-heading > p {
    margin: 18px 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--mohit-muted);
}

/* CARDS */
.mohit-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mohit-service-card {
    min-height: 265px;
    padding: 28px;
    border: 1px solid rgba(49, 90, 59, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    transition: .3s;
}

.mohit-service-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 18px 40px rgba(44, 38, 27, .08);
}

.mohit-service-card > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #edf2ec;
    color: var(--mohit-green);
    font-size: .7rem;
    font-weight: 800;
}

.mohit-service-card h3 {
    margin: 26px 0 10px;
    font-family: var(--ikara-display, Georgia, serif);
    font-size: 1.35rem;
    color: var(--mohit-green);
}

.mohit-service-card p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.7;
    color: var(--mohit-muted);
}

/* DARK SECTION */
.mohit-heading--light h2 {
    color: #fff;
}

.mohit-heading--light > p {
    color: rgba(255, 255, 255, .64);
}

.mohit-section--dark .mohit-section-kicker {
    color: #d9bf86;
}

.mohit-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mohit-chip-grid span {
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    font-size: .78rem;
    color: rgba(255, 255, 255, .84);
}

.mohit-disclaimer {
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
}

/* CREDENTIALS */
.mohit-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--mohit-line);
}

.mohit-timeline article {
    padding: 26px 24px 10px 0;
}

.mohit-timeline article + article {
    padding-left: 24px;
    border-left: 1px solid var(--mohit-line);
}

.mohit-timeline span {
    font-size: .64rem;
    color: var(--mohit-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.mohit-timeline h3 {
    margin: 10px 0 7px;
    font-family: var(--ikara-display, Georgia, serif);
    color: var(--mohit-green);
    font-size: 1.25rem;
}

.mohit-timeline p {
    font-size: .78rem;
    line-height: 1.65;
    color: var(--mohit-muted);
}

/* FAQ */
.mohit-faq {
    background: #fbf8f2;
}

.mohit-faq__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
}

.mohit-faq__intro {
    position: sticky;
    top: 165px;
    align-self: start;
}

.mohit-faq__intro > p {
    color: var(--mohit-muted);
    line-height: 1.7;
}

.mohit-faq__list {
    border-top: 1px solid var(--mohit-line);
}

.mohit-faq details {
    padding: 22px 0;
    border-bottom: 1px solid var(--mohit-line);
}

.mohit-faq summary {
    position: relative;
    padding-right: 45px;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--mohit-green);
}

.mohit-faq summary::-webkit-details-marker {
    display: none;
}

.mohit-faq summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--mohit-gold);
}

.mohit-faq details[open] summary::after {
    content: '−';
    background: var(--mohit-green);
    color: #fff;
}

.mohit-faq details p {
    margin: 0;
    padding: 14px 44px 0 0;
    color: var(--mohit-muted);
    font-size: .88rem;
    line-height: 1.75;
}

/* CTA */
.mohit-cta {
    padding: 72px 0;
    background: linear-gradient(115deg, #9c712d 0%, #b4893a 42%, #315a3b 130%);
    color: #fff;
}

.mohit-cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.mohit-cta span {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
}

.mohit-cta h2 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.mohit-cta p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .78);
}

/* TABLET */
@media (max-width: 1050px) {
    .mohit-hero__grid,
    .mohit-about,
    .mohit-faq__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mohit-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mohit-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .mohit-faq__intro {
        position: static;
    }

    .mohit-photo-card img {
        height: 600px;
    }
}

/* MOBILE */
@media (max-width: 700px) {
    .mohit-hero,
    .mohit-section {
        padding: 70px 0;
    }

    .mohit-hero h1 {
        font-size: 3.5rem;
    }

    .mohit-photo-card img {
        height: 500px;
    }

    .mohit-floating-badge {
        left: 12px;
        top: 12px;
    }

    .mohit-proof,
    .mohit-card-grid,
    .mohit-timeline {
        grid-template-columns: 1fr;
    }

    .mohit-proof div + div {
        border-left: 0;
        border-top: 1px solid var(--mohit-line);
        padding-left: 0;
    }

    .mohit-cta__inner {
        display: block;
    }

    .mohit-cta .mohit-actions {
        margin-top: 26px;
    }

    .mohit-jump {
        top: 76px;
    }
}
