﻿
:root {
    --ivory: #F7EFDD;
    --ivory-2: #FBF6EA;
    --green-deep: #20402D;
    --green-mid: #3A5C42;
    --gold: #B8860B;
    --gold-bright: #D4A017;
    --maroon: #6E2A33;
    --ink: #2B2317;
    --ink-soft: #5A4F3E;
    --line: #D8C9A3;
    --card: #FFFDF6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--ink);
    font-family: 'Karla', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    color: var(--green-deep);
   /* font-weight: 600;*/
}

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

img {
    max-width: 100%;
    display: block;
}
.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 15px;
}

strong, b {
    color: var(--maroon);
    font-weight: 700;
}

/* Leaf texture background accent */
.leaf-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: radial-gradient(circle at 20% 20%, var(--green-deep) 0, transparent 45%), radial-gradient(circle at 80% 60%, var(--gold) 0, transparent 40%);
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247,239,221,0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1160px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .brand-mark svg {
        width: 24px;
        height: 24px;
        stroke: var(--gold-bright);
    }

.brand-name {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: var(--green-deep);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-sub {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-deep);
}

    .nav-links a {
        position: relative;
        padding: 4px 0;
    }

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

.nav-cta {
    background: var(--maroon);
    color: var(--ivory-2);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

    .menu-btn svg {
        width: 28px;
        height: 28px;
        stroke: var(--green-deep);
    }

/* HERO */
.hero {
    position: relative;
    padding: 40px 0 40px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1.5px;
    background: var(--maroon);
}
.hero h1 {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 15px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-bright);
}
.hero p.lead {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 100%;
    margin-bottom: 15px;
    line-height: 23px;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--green-deep);
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(32,64,45,0.25);
    transition: transform 0.2s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
}
.btn-ghost {
    border: 1.5px solid var(--green-deep);
    color: var(--green-deep);
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
}
.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 16px;
    background: linear-gradient(160deg, var(--green-deep), var(--green-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-visual svg {
    width: 62%;
    height: 62%;
    stroke: var(--gold-bright);
    opacity: 0.95;
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212,160,23,0.25), transparent 55%);
}
.hero-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(0,0,0,0.32);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 0.85rem;
}
.hero-badge strong {
    color: var(--gold-bright);
}
/* SECTION HEADS */
.section {
    padding: 40px 0;
}
.section-head {
    max-width: 680px;
    margin: 0 auto 10px;
    text-align: center;
}
.section-head .eyebrow {
    margin: 0 auto 14px;
    justify-content: center;
}
.section-head .eyebrow::before {
    display: none;
}
.section-head h2 {
    font-size: 28px;
    margin-bottom: 14px;
    line-height: 38px;
}
.section-head p {
    color: var(--ink-soft);
    font-size: 16px;
    text-align: center;
    line-height: 26px;
}
.alt-bg {
    background: var(--ivory-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* SPECIALTY GRID */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.specialty-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(32,64,45,0.12);
}
.specialty-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.specialty-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold-bright);
}
.specialty-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.specialty-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 20px;
    margin: 0;
}
/* DOCTOR PROFILE */
.doctor-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 46px;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 44px;
}
.doctor-portrait {
    aspect-ratio: 4/5;
    border-radius: 14px;
    background: linear-gradient(150deg, var(--green-mid), var(--green-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.doctor-portrait svg {
    width: 52%;
    height: 52%;
    stroke: var(--ivory-2);
}
.doctor-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-bright);
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
}
.doctor-info h3 {
    font-size: 1.7rem;
    margin-bottom: 4px;
}
.doctor-role {
    color: var(--maroon);
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 18px;
}
.doctor-info p {
    color: var(--ink-soft);
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 23px;
}
.doctor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}
.stat {
    border-left: 3px solid var(--gold-bright);
    padding-left: 14px;
}
.stat strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--green-deep);
}
.stat span {
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.doctor-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.doctor-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}
.doctor-meta svg {
    width: 18px;
    height: 18px;
    stroke: var(--maroon);
    flex-shrink: 0;
}
/* TRUST STRIP */
.trust-strip {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
.trust-pill {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-pill svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold-bright);
}
/* CONDITIONS GRID */
.condition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.condition-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px;
    position: relative;
    overflow: hidden;
}
.condition-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-bright);
}
.condition-icon {
    width: 66px;
    height: 66px;
    border-radius: 10px;
    background: var(--ivory);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.condition-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--maroon);
}
.condition-card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}
.condition-card h3 .hindi {
    display: block;
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.condition-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
}
/* PRIVACY NOTE */
.privacy-note {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--green-deep);
    color: var(--ivory-2);
    border-radius: 16px;
    padding: 30px 34px;
    margin-bottom: 46px;
}
.privacy-note svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 2px;
}
.privacy-note p {
    font-size: 15px;
    opacity: 0.92;
    line-height: 23px;
    font-weight: 400;
    color: #fbf6ea;
}
/* URGENT CALLOUT */
.urgent-box {
    background: var(--maroon);
    color: var(--ivory-2);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 50px;
}
.urgent-box svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold-bright);
    flex-shrink: 0;
}
.urgent-box p {
    font-size: 1rem;
}
.urgent-box strong {
    color: var(--gold-bright);
}
.privacy-note p strong {
    color: #fbf6ea;
    font-weight: 700;
}
/* FOOTER / CONTACT */
footer {
    background: var(--green-deep);
    color: var(--ivory-2);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

    .footer-grid h4 {
        color: var(--gold-bright);
        font-size: 1rem;
        margin-bottom: 16px;
        font-family: 'Karla',sans-serif;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .footer-grid p, .footer-grid div {
        color: #DCE3DA;
        font-size: 0.92rem;
        margin-bottom: 8px;
    }

    .footer-grid .brand-name {
        color: #fff;
    }

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

    .footer-contact svg {
        width: 18px;
        height: 18px;
        stroke: var(--gold-bright);
        flex-shrink: 0;
        margin-top: 2px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 22px;
    text-align: center;
    font-size: 0.82rem;
    color: #B9C4B5;
}
.condition-icon img {
    height: 40px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(3384%) hue-rotate(308deg) brightness(94%) contrast(91%);
}
/* RESPONSIVE */
@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 420px;
        margin: 0 auto;
    }

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

    .doctor-wrap {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .doctor-portrait {
        max-width: 280px;
        margin: 0 auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:680px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-cta {
        display: none;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .condition-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .urgent-box {
        flex-direction: column;
        text-align: center;
    }

    .privacy-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .doctor-stats {
        grid-template-columns: 1fr 1fr;
    }
}
