
:root {
    --coral: #F97C7A;
    --coral-light: #f8857f;
    --teal: #087f8f;
    --teal-dark: #1f6e68;
    --teal-light: #e8f5f4;
    --bg-light: #f9f9f9;
    --text-dark: #1a1a1a;
    --text-muted: #777;
    --border: #e5e5e5;
}

/* ── Badge ── */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(249, 124, 122, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(249, 124, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 124, 122, 0); }
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    animation: pulse 2s infinite;
}

/* ── Hero ── */
.hero-section {
    padding: 28px 0 0;
    background: var(--bg-light); /* light background */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%, -50%);
    background: url(https://www.healinghandsclinic.co.in/images/LP/HHC-LOGO.webp) no-repeat left center;
    background-size: contain;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section img {
    transition: transform 0.4s ease;
}
.hero-section img:hover {
    transform: scale(1.03);
}

.doctor-name {
    color: var(--coral);
    font-size: 28px;
    font-weight: 600;
    margin: 12px 0 6px;
}

.doctor-creds {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom:5px;
}

.stats-box {
    padding: 18px 20px;
    margin-top: 18px;
    transition: all 0.3s ease;
}
.stats-box:hover {
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
    transform: translateY(-4px);
}

.stat-item {
    text-align: center;
}

.stat-num {
    color: var(--coral);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    font-weight:600;
    color:var(--teal);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

.btn-teal {
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 15px;
    font-size: 14px;
    letter-spacing:0.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}

.btn-teal:hover {
    background: var(--teal-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 127, 143, 0.3);
}

.btn-outline-teal {
     text-decoration: none;
    background: #fff;
    color: var(--teal);
    border: 2px solid var(--teal);
    border-radius: 8px;
    padding: 9px 15px;
    font-size: 14px;
    letter-specing:0.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}

.btn-outline-teal:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(8, 127, 143, 0.2);
}

/* ── Info Bar ── */
.info-bar {
    background: #e8f5f4;
    padding: 16px 0;
    margin-top: 0;
}

.info-bar-item {
    text-align: center;
}

.info-bar-label {
    font-size: 13px;
    letter-spacing:0.8px;
    color: var(--teal);
    font-weight: 600;
}

.info-bar-value {
    font-size: 14px;
    color: var(--coral);
    font-weight: 600;
    margin-top: 2px;
}

.info-bar-divider {
    width: 1px;
    background: #c5dedd;
    align-self: stretch;
}

/* ── Section Labels ── */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    padding: 6px 15px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 26px;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 16px;
}

/* ── About ── */
.about-section {
    padding: 36px 0;
}

.about-text {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}
.about-text a{
    text-decoration: none;
}

/* ── Book Box ── */
.book-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.book-title {
    font-weight: 700;
    font-size: 16px;
    text-transform:uppercase;
    margin-bottom: 14px;
}

.btn-call {
    background: var(--coral);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 15px;
    letter-spacing: 0.8px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: background .2s;
}

.btn-call:hover {
    background: var(--coral-light);
    color: #fff;
}

.btn-whatsapp {
    background: #fff;
    color: #25D366;
    border: 1.5px solid #25D366;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 15px;
    letter-spacing:0.8px;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: all .2s;
}
.btn-whatsapp a{
    text-decoration: none;
    color: #25d366;
}
.locations-box {
    margin-top: 24px;
}

.locations-title {
    color: var(--coral);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.location-item {
    font-size: 14px;
    color: #444;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-view-locations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    margin-top: 12px;
    border: 1.5px solid var(--coral);
    color: var(--coral);
    border-radius: 8px;
    padding: 9px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}

.btn-view-locations:hover {
    background: var(--coral);
    color: #fff;
}

/* ── Specialization Cards ── */
.spec-section {
    background: var(--bg-light);
    padding: 36px 0;
}

.spec-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    transition: box-shadow .2s;
}

.spec-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
}

.spec-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-bottom: 8px;
}

.spec-card-title {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    font-size: 18px;
    color: var(--teal);
    margin-bottom: 8px;
}

.spec-card-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.tag {
    display: inline-block;
    color: var(--coral-light);
    border: 1px solid var(--coral-light);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    margin: 5px 2px 0;
}

.tag-outline {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    background: #fff;
}

.info-bar-label svg {
    vertical-align: text-bottom;
    opacity: 0.7;
}

/* ── Publications ── */
.pub-section {
    padding: 36px 0;
}

.pub-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    transition: box-shadow .2s;
}

.pub-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.pub-num {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    font-size: 16px;
    color: var(--coral);
    background: #1f8da82e;
    padding: 5px 10px;
    border-radius: 15px;
    margin-right: 12px;
}

.pub-title {
    display: inline;
    color: var(--teal);
    font-weight: 600;
    font-size: 18px;
}

.pub-description {
    color: #888;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
}
    .pub-journal {
    color: #888;
    font-size: 14px;
}

/* ── Patient Stories ── */
.stories-section {
    background: var(--bg-light);
    padding: 36px 0;
}

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    height: 100%;
}

.stars {
    color: var(--teal);
    font-size: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin: 12px 0;
}

.reviewer-avatar {
    width: 40px;
    height: 36px;
    border-radius: 12%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: var(--coral);
    background:#f8857f36;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--coral);
}

.reviewer-tag {
    font-size: 12px;
    color: #888;
}

/* ── Patient Stories ── */
.map-section {
    padding: 36px 0;
}
.map-section iframe{
    width:100%;
    height:350px;
}

/* ── Footer ── */
.footer-section {
    background: linear-gradient(135deg, #087f8f 0%, #1e999e 40%, #09818f 100%);
    color: #fff;
    padding: 44px 0 32px;
    text-align: center;
}

.footer-title {
    font-size: 26px;
    font-weight: 500;
}

.footer-sub {
    font-size: 17px;
    color: #fff;
    margin-bottom: 24px;
}

.footer-info {
    font-size: 16px;
    color: #fff;
    margin: 8px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
}
.footer-locations a{
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    color: var(--teal);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: .3s;
}


.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 6px;
}

.divider-v {
    width: 1px;
    background: rgba(255, 255, 255, .15);
    align-self: stretch;
    margin: 0 12px;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 991px) {
    .hero-section {
    padding: 40px 0 20px;
    }
    .hero-section .ProfileSocialIcon {
        justify-content: center;
    }
    .info-bar {
    padding: 10px 0;
    }
    .info-bar-divider {
    display: none !important;
    }
    .info-bar-item {
    flex: 0 0 calc(50% - 15px);
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #d8ebea;
    height: calc(12vh - 20px);
    display: flex;
    justify-content: center; /* vertical center */
    align-items: center;
    flex-direction: column;
    }
}

@media (max-width: 767px) {
    .doctor-name {
    font-size: 24px;
    }
    .section-title {
    font-size: 22px;
    }
    .stats-box {
    padding: 5px;
    }
    .stat-item {
    flex: 1 0 40%;
    margin-bottom: 10px;
    }
    .stat-num {
    font-size: 38px;
    }
    .stat-divider {
    display: none !important;
    }
    .info-bar-item:first-child {
    flex: 1 0 100%;
    }
    .btn-teal, .btn-outline-teal {
    width: 100%;
    justify-content: center;
    letter-spacing:1px;
    }
    .spec-card, .review-card, .pub-item {
    margin-bottom: 15px;
    }
    .about-section {
    padding: 25px 0;
    text-align:center;
    }
    .section-pill{
    padding:6px 35px;
    }
    .tag {
    background: #fff;
    color: var(--coral);
    border: 1px solid var(--coral);
    }
    .spec-section, .pub-section, .stories-section {
    padding: 30px 0;
    }
    .spec-section .col-12,.pub-section .col-md-12,.stories-section .col-md-12{
    text-align:center;
    }
    .footer-info{
    justify-content: start;
    text-align: left;
    }
    .footer-badge{
    gap: 0px;
    padding: 7px 10px;
    }
    .footer-badge svg{
    margin-right:5px;
    }
}

@media (max-width: 480px) {
    .verified-badge {
    font-size: 11px;
    padding: 3px 10px;
    }
    .stat-item {
    border-bottom: 1px solid var(--border);
    padding: 12px;
    margin-bottom: 8px;
    background: #f9f9f9;
    }
    
    .stat-label {
    display: inline-block;
    font-size:15px;
    }
}
