/* ═══════════════════════════════════════════════════════════
   MEHTA PANSARI — PREMIUM HOMEPAGE BANNER CSS
   Colors: Deep Green #0D2818 · Gold #C9A84C · Cream #FAFAF7
   Font: System fonts (no external dependencies)
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

/* ── Reset & Base ── */
.mhb-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.mhb-wrapper {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    width: 100%;
    overflow: hidden;
}

.mhb-gold-text {
    color: #C9A84C;
}

/* ── Section Label ── */
.mhb-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.mhb-section-label--light {
    color: #C9A84C;
}

/* ══════════════════════════════════════════
   SECTION 1: HERO
══════════════════════════════════════════ */
.mhb-hero {
    position: relative;
    background: linear-gradient(135deg, #0D2818 0%, #1a4a2e 45%, #0D2818 100%);
    overflow: hidden;
    padding: 0;
}

.mhb-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mhb-hero__gold-top {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #C9A84C 30%, #f0d080 50%, #C9A84C 70%, transparent 100%);
}

.mhb-hero__gold-bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.4) 50%, transparent 100%);
}

.mhb-hero__content {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 56px 60px 52px;
    position: relative;
    z-index: 2;
}

/* Left */
.mhb-hero__left {
    flex: 1;
    min-width: 0;
}

.mhb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A84C;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.mhb-hero__title {
    font-size: 48px;
    font-weight: 800;
    color: #FAFAF7;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.mhb-hero__subtitle {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #C9A84C;
    margin-top: 6px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-hero__tagline {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(250, 250, 247, 0.9);
    margin: 16px 0 10px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-hero__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(250, 250, 247, 0.7);
    margin-bottom: 24px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Trust Pills */
.mhb-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.mhb-pill {
    font-size: 12px;
    font-weight: 500;
    color: rgba(250, 250, 247, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* CTA Buttons */
.mhb-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mhb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-btn--primary {
    background: linear-gradient(135deg, #C9A84C, #e8c96a);
    color: #0D2818 !important;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.mhb-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5);
}

.mhb-btn--whatsapp {
    background: #25D366;
    color: white !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.mhb-btn--whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.mhb-btn--lg {
    font-size: 15px;
    padding: 15px 32px;
}

/* Right: Herbs Image */
.mhb-hero__right {
    flex: 0 0 480px;
    max-width: 480px;
}

.mhb-herbs-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(201, 168, 76, 0.1);
}

.mhb-herbs-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.mhb-herbs-frame:hover .mhb-herbs-img {
    transform: scale(1.03);
}

.mhb-herbs-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 40, 24, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
}
.mhb-herbs-badge span {
    font-size: 22px;
}
.mhb-herbs-badge strong {
    display: block;
    color: #C9A84C;
    font-size: 13px;
    font-weight: 700;
}
.mhb-herbs-badge small {
    color: rgba(250, 250, 247, 0.7);
    font-size: 11px;
}

/* ══════════════════════════════════════════
   SECTION 2: SCROLLING STRIP
══════════════════════════════════════════ */
.mhb-strip {
    background: linear-gradient(90deg, #fdf9f0, #fffef8, #fdf9f0);
    border-top: 1px solid #e8d5a3;
    border-bottom: 1px solid #e8d5a3;
    overflow: hidden;
    padding: 14px 0;
}

.mhb-strip__track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: mhb-scroll 30s linear infinite;
    width: max-content;
}

@keyframes mhb-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.mhb-strip__item {
    font-size: 13px;
    font-weight: 600;
    color: #0D2818;
    padding: 0 24px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-strip__sep {
    color: #C9A84C;
    font-size: 16px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SECTION 3: SEXUAL WELLNESS
══════════════════════════════════════════ */
.mhb-wellness {
    background: linear-gradient(135deg, #f8faf5 0%, #ffffff 50%, #fdf9f0 100%);
    padding: 64px 60px;
}

.mhb-wellness__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.mhb-wellness__title {
    font-size: 36px;
    font-weight: 800;
    color: #0D2818;
    line-height: 1.3;
    margin-bottom: 16px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-wellness__desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 680px;
    margin: 0 auto 40px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* Herbs Grid */
.mhb-herbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.mhb-herb-card {
    background: white;
    border: 1px solid #e8f0e4;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(13, 40, 24, 0.06);
}
.mhb-herb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 40, 24, 0.12);
    border-color: #C9A84C;
}

.mhb-herb-card__emoji {
    font-size: 32px;
    margin-bottom: 10px;
}

.mhb-herb-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #0D2818;
    margin-bottom: 3px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-herb-card__latin {
    font-size: 12px;
    color: #C9A84C;
    font-style: italic;
    margin-bottom: 8px;
    font-weight: 500;
}

.mhb-herb-card__benefit {
    font-size: 13px;
    color: #666;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-wellness__disclaimer {
    font-size: 13px;
    color: #555;
    background: rgba(13, 40, 24, 0.05);
    border: 1px solid rgba(13, 40, 24, 0.1);
    border-radius: 12px;
    padding: 14px 24px;
    display: inline-block;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* ══════════════════════════════════════════
   SECTION 4: DOCTOR
══════════════════════════════════════════ */
.mhb-doctor {
    background: linear-gradient(135deg, #0D2818 0%, #1a4a2e 50%, #0D2818 100%);
    padding: 56px 60px;
}

.mhb-doctor__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.mhb-doctor__left {
    flex: 0 0 160px;
    text-align: center;
}

.mhb-doctor__avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C, #e8c96a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #0D2818;
    margin: 0 auto 12px;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.4), 0 0 0 8px rgba(201, 168, 76, 0.15), 0 12px 40px rgba(0,0,0,0.5);
    overflow: hidden;
    flex-shrink: 0;
}

.mhb-doctor__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.mhb-doctor__stars {
    font-size: 18px;
    letter-spacing: 2px;
}

.mhb-doctor__right {
    flex: 1;
}

.mhb-doctor__name {
    font-size: 32px;
    font-weight: 800;
    color: #FAFAF7;
    margin-bottom: 4px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-doctor__title {
    font-size: 14px;
    color: #C9A84C;
    margin-bottom: 16px;
    font-weight: 500;
}

.mhb-doctor__quote {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(250, 250, 247, 0.85);
    font-style: italic;
    border-left: 3px solid #C9A84C;
    padding-left: 20px;
    margin-bottom: 20px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-doctor__info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.mhb-doctor__info span {
    font-size: 13px;
    color: rgba(250, 250, 247, 0.7);
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* ══════════════════════════════════════════
   SECTION 5: HERITAGE STATS
══════════════════════════════════════════ */
.mhb-heritage {
    background: linear-gradient(135deg, #0a1f12 0%, #0D2818 100%);
    padding: 52px 60px 40px;
    position: relative;
}

.mhb-heritage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(201, 168, 76, 0.03) 0px,
        rgba(201, 168, 76, 0.03) 1px,
        transparent 1px,
        transparent 24px
    );
    pointer-events: none;
}

.mhb-heritage__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto 32px;
}

.mhb-heritage__num {
    font-size: 44px;
    font-weight: 800;
    color: #C9A84C;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.mhb-heritage__label {
    font-size: 15px;
    font-weight: 600;
    color: #FAFAF7;
    margin-bottom: 4px;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

.mhb-heritage__sub {
    font-size: 12px;
    color: rgba(250, 250, 247, 0.5);
    font-style: italic;
}

.mhb-heritage__footer {
    text-align: center;
    font-size: 13px;
    color: rgba(250, 250, 247, 0.5);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding-top: 24px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .mhb-hero__content {
        padding: 40px 32px;
        gap: 32px;
    }
    .mhb-hero__right {
        flex: 0 0 360px;
        max-width: 360px;
    }
    .mhb-hero__title {
        font-size: 38px;
    }
    .mhb-wellness,
    .mhb-doctor,
    .mhb-heritage {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 768px) {
    .mhb-hero__content {
        flex-direction: column;
        padding: 32px 20px;
    }
    .mhb-hero__right {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .mhb-hero__title {
        font-size: 30px;
    }
    .mhb-hero__subtitle {
        font-size: 15px;
    }
    .mhb-herbs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mhb-heritage__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mhb-doctor__inner {
        flex-direction: column;
        text-align: center;
    }
    .mhb-doctor__quote {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid #C9A84C;
        padding-top: 16px;
    }
    .mhb-doctor__info {
        justify-content: center;
    }
    .mhb-wellness,
    .mhb-doctor,
    .mhb-heritage {
        padding-left: 20px;
        padding-right: 20px;
    }
    .mhb-heritage__num {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .mhb-herbs-grid {
        grid-template-columns: 1fr 1fr;
    }
    .mhb-heritage__grid {
        grid-template-columns: 1fr 1fr;
    }
    .mhb-hero__title {
        font-size: 26px;
    }
    .mhb-cta-group {
        flex-direction: column;
    }
    .mhb-btn {
        justify-content: center;
    }
}
