/* ============================================================
 *  doctor-detail.css
 *  Vinsfertility Doctor Profile Page Styles
 *  Path: /css/doctor-detail.css
 * ============================================================
 */

/* -------- 1. VARIABLES -------- */
:root {
    --orange: #ff6b35;
    --orange-dark: #e55a2b;
    --orange-light: #fff4ef;
    --orange-lighter: #fffaf7;
    --ink: #1a1d29;
    --slate: #4a5568;
    --muted: #6b7280;
    --line: #e5e7eb;
    --line-soft: #f1f3f5;
    --bg: #f5f5f5;
    --white: #fff;
    --success: #22c55e;
    --success-bg: #dcfce7;
    --success-dark: #15803d;
    --star: #f59e0b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, .08);
}

/* -------- 2. RESET & BASE -------- */
* { box-sizing: border-box; }
body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
img { max-width: 100%; height: auto; }
address { font-style: normal; }

/* Accessibility - skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--ink);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

/* -------- 3. TYPOGRAPHY -------- */
h1, h2, h3, h4, h5 {
    font-family: 'Poppins', 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 0 0 .5em;
}
h1 { font-size: 1.85rem; line-height: 1.25; }
h2 { font-size: 1.35rem; line-height: 1.3; }
h3 { font-size: 1.1rem; }
h4 { font-size: .95rem; }
a { color: var(--orange); text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange-dark); }
p { margin: 0 0 1em; }

/* -------- 4. TRUST TOPBAR -------- */
.topbar {
    background: var(--ink);
    color: #fff;
    padding: 8px 0;
    font-size: 12.5px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-trust {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.topbar-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .85);
}
.topbar-trust i { color: var(--orange); }
.topbar-cta { color: #fff !important; font-weight: 600; }
.topbar-cta i { color: var(--orange); margin-right: 6px; }

/* -------- 5. SITE HEADER -------- */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.navbar-brand img { height: 44px; width: auto; }
.navbar-nav .nav-link {
    color: var(--ink) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px !important;
    transition: color .15s;
}
.navbar-nav .nav-link:hover { color: var(--orange) !important; }
.header-cta {
    background: var(--orange);
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    font-weight: 600 !important;
}
.header-cta:hover { background: var(--orange-dark); color: #fff !important; }

/* -------- 6. BREADCRUMB -------- */
.breadcrumb-nav {
    background: var(--white);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.breadcrumb { margin: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item.active { color: var(--ink); font-weight: 500; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--muted); content: "/"; }

/* -------- 7. MAIN CONTENT -------- */
.main-content { padding: 24px 0 48px; }

/* -------- 8. DOCTOR HERO CARD -------- */
.doctor-hero {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.doctor-hero-grid {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    align-items: start;
}
.doctor-photo { position: relative; display: inline-block; }
.doctor-photo img {
    width: 170px;
    height: 170px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--line);
}
.verified-check {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: var(--success);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}
.doctor-name-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.doctor-name {
    margin: 0;
    color: var(--orange);
    font-size: 1.75rem;
    font-weight: 700;
}
.profile-claimed { color: var(--muted); font-size: 13px; font-weight: 400; cursor: help; }
.doctor-tagline {
    color: var(--slate);
    font-weight: 500;
    font-size: 14.5px;
    margin-bottom: 14px;
}

/* Credential badges */
.credential-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.cred-badge {
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid transparent;
}
.cred-badge.verified {
    background: var(--success-bg);
    color: var(--success-dark);
    border-color: #86efac;
}
.cred-badge.orange {
    background: var(--orange-light);
    color: var(--orange-dark);
    border-color: #fed7aa;
}
.cred-badge.neutral {
    background: #f3f4f6;
    color: var(--slate);
    border-color: var(--line);
}

/* Recommendation row */
.recommend-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--slate);
    font-size: 14px;
    flex-wrap: wrap;
}
.recommend-row .thumbs { color: var(--success); font-size: 18px; }
.recommend-row .percent { font-weight: 700; color: var(--ink); }
.recommend-row .votes { color: var(--muted); font-size: 13px; }

/* Hero CTAs */
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-brand {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}
.btn-brand:hover {
    background: var(--orange-dark);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.btn-brand-outline {
    background: #fff;
    color: var(--orange);
    border: 1.5px solid var(--orange);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}
.btn-brand-outline:hover { background: var(--orange-light); color: var(--orange-dark); }
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 11px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-whatsapp:hover { background: #128c7e; color: #fff; }

/* Trust bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line-soft);
}
.trust-stat { text-align: center; }
.trust-stat i {
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 6px;
    display: block;
}
.trust-stat .val {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}
.trust-stat .label { font-size: 12px; color: var(--muted); font-weight: 500; }

/* -------- 9. SECTION NAV (Tab-style) -------- */
.section-nav {
    background: #fff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: 16px;
    overflow: hidden;
}
.section-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--line);
}
.section-nav ul::-webkit-scrollbar { display: none; }
.section-nav ul li a {
    padding: 14px 22px;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    display: block;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: all .15s;
}
.section-nav ul li a:hover { color: var(--orange); }
.section-nav ul li a.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
    font-weight: 600;
}

/* -------- 10. CONTENT SECTIONS -------- */
.content-section {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.section-title {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-soft);
}
.section-title h2 { margin: 0; font-size: 1.25rem; color: var(--ink); }
.about-container p { margin-bottom: 12px; line-height: 1.7; }
.about-container p:last-child { margin-bottom: 0; }

/* -------- 11. AUTHOR BOX (EEAT) -------- */
.author-box {
    background: var(--orange-lighter);
    border: 1px solid #ffddcc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    display: flex;
    gap: 14px;
    align-items: start;
}
.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}
.author-info { flex: 1; }
.author-name {
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 2px;
    font-size: 14.5px;
}
.author-role {
    color: var(--orange);
    font-size: 12.5px;
    margin: 0 0 6px;
    font-weight: 500;
}
.author-desc {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
}
.review-meta {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ffddcc;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.review-meta i { margin-right: 5px; color: var(--success); }

/* -------- 12. INSTANT BOOKING STRIP -------- */
.instant-booking {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 20px;
    text-align: center;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--slate);
    box-shadow: var(--shadow-sm);
}
.instant-booking i { color: var(--orange); margin-right: 8px; }
.instant-booking strong a { color: var(--orange); font-weight: 700; }
.instant-booking strong a:hover { color: var(--orange-dark); }

/* -------- 13. CREDENTIALS GRID -------- */
.creds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.cred-card {
    background: var(--bg);
    border-radius: 8px;
    padding: 14px;
    border: 1px solid var(--line-soft);
}
.cred-card-title {
    font-size: 11.5px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cred-card-body ul { list-style: none; padding: 0; margin: 0; }
.cred-card-body li {
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.5;
}
.cred-card-body li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--orange);
    font-size: 9px;
}

/* -------- 14. SERVICES GRID -------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.service-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .15s;
}
.service-item:hover { border-color: var(--orange); color: var(--orange); }
.service-item i { color: var(--orange); font-size: 11px; flex-shrink: 0; }

/* -------- 15. CLINIC + HOURS -------- */
.clinic-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 8px;
}
.clinic-info address {
    background: var(--bg);
    border-radius: 6px;
    padding: 14px;
    color: var(--ink);
    line-height: 1.7;
    margin: 0;
}
.clinic-info address strong { display: block; margin-bottom: 4px; }
.consult-fee {
    background: var(--orange-light);
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    margin-top: 10px;
    border: 1px solid #ffddcc;
}
.consult-fee .label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}
.consult-fee .amount {
    font-size: 1.4rem;
    color: var(--orange);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.hours-list {
    background: var(--bg);
    border-radius: 6px;
    padding: 14px;
}
.hours-header {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hours-header i { color: var(--orange); margin-right: 6px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 13px;
}
.hours-row:last-child { border: none; }
.hours-row.today { color: var(--orange); font-weight: 600; }
.hours-row .day { color: var(--slate); }
.hours-row .time { font-weight: 500; }
.hours-row .closed { color: #dc2626; font-weight: 500; }

/* -------- 16. COST SECTION -------- */
.cost-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 12px;
}
.cost-content th,
.cost-content td {
    padding: 10px 12px;
    border: 1px solid var(--line);
    text-align: left;
    font-size: 13.5px;
}
.cost-content th {
    background: var(--orange-light);
    color: var(--orange-dark);
    font-weight: 600;
}

/* -------- 17. SOCIAL ICONS -------- */
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .15s;
}
.social-icons a:hover { background: var(--orange); color: #fff; }

/* -------- 18. REVIEWS -------- */
.rating-summary {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    align-items: center;
    background: var(--bg);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 16px;
}
.rating-big { text-align: center; }
.rating-big .num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    color: var(--orange);
    font-weight: 700;
    line-height: 1;
}
.rating-big .stars {
    color: var(--star);
    font-size: 14px;
    letter-spacing: 2px;
    margin: 4px 0;
}
.rating-big .total { font-size: 12.5px; color: var(--muted); }
.rating-bars { display: grid; gap: 5px; }
.rating-bar-row {
    display: grid;
    grid-template-columns: 55px 1fr 35px;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}
.rating-bar { height: 6px; background: var(--line-soft); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--orange); border-radius: 3px; }
.review-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 12px;
}
.review-item:last-child { border: none; }
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 13px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 8px;
}
.reviewer-name { font-weight: 600; color: var(--ink); font-size: 14px; margin: 0; }
.review-date { color: var(--muted); font-size: 12px; }
.review-stars { color: var(--star); font-size: 12px; letter-spacing: 1px; margin-bottom: 5px; }
.review-text { color: var(--slate); font-size: 13px; margin: 0; line-height: 1.6; }
.verified-review {
    color: var(--success);
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

/* -------- 19. FAQ ACCORDION -------- */
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}
.faq-question {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 500;
    color: var(--ink);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.faq-question:hover { color: var(--orange); }
.faq-icon { color: var(--orange); transition: transform .2s; font-size: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: all .3s;
    color: var(--slate);
    font-size: 13.5px;
    line-height: 1.7;
}
.faq-item.open .faq-answer { padding: 0 18px 16px; max-height: 800px; }
.faq-answer ul { padding-left: 20px; margin: 8px 0; }
.faq-answer li { margin-bottom: 4px; }

/* -------- 20. MEDICAL DISCLAIMER (EEAT) -------- */
.medical-disclaimer {
    background: #fffaf7;
    border: 1px solid #ffddcc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
    display: flex;
    gap: 12px;
    align-items: start;
}
.medical-disclaimer i {
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.medical-disclaimer h4 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 600;
}
.medical-disclaimer p {
    margin: 0;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* -------- 21. BOOKING SIDEBAR -------- */
.booking-card {
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 80px;
}
.booking-card h3 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 4px;
    letter-spacing: 0;
    text-transform: uppercase;
}
.booking-card h3 .highlight {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    margin: 2px 0;
}
.booking-form .form-control,
.booking-form .form-select {
    border: none;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    background: #fff;
    margin-bottom: 12px;
    color: var(--ink);
    height: auto;
}
.booking-form .form-control::placeholder { color: #9ca3af; }
.booking-form .form-control:focus,
.booking-form .form-select:focus {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .1);
    border: none;
    outline: none;
}
.booking-form .input-group { margin-bottom: 12px; }
.booking-form .input-group .form-control,
.booking-form .input-group .form-select { margin-bottom: 0; }
.booking-form .input-group .form-select {
    max-width: 100px;
    flex: 0 0 100px;
    border-right: 1px solid var(--line);
    border-radius: 4px 0 0 4px;
}
.booking-form .input-group .form-control {
    border-radius: 0 4px 4px 0;
}
.booking-submit {
    background: #fff;
    color: var(--orange);
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .03em;
    cursor: pointer;
}
.booking-submit:hover {
    background: #fff5ee;
    color: var(--orange-dark);
    transform: translateY(-1px);
}
.booking-note {
    font-size: 12px;
    color: #fff;
    margin-top: 14px;
    margin-bottom: 0;
    line-height: 1.5;
    opacity: .95;
}
.booking-note a { color: #fff; text-decoration: underline; }
.booking-success { text-align: center; }

/* -------- 22. SIDEBAR FAQ CARD -------- */
.sidebar-faq {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
    box-shadow: var(--shadow-sm);
}
.sidebar-faq h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--ink);
    font-size: 1.05rem;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.sidebar-faq-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-soft);
}
.sidebar-faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border: none; }
.sidebar-faq-item .q {
    font-weight: 600;
    color: var(--ink);
    font-size: 14px;
    margin-bottom: 6px;
    line-height: 1.4;
}
.sidebar-faq-item .a {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.6;
    margin: 0;
}
.sidebar-faq-item .a strong { color: var(--ink); }

/* -------- 23. FOOTER -------- */
.site-footer {
    background: #f5f5f5;
    color: var(--ink);
    padding: 36px 0 18px;
    margin-top: 32px;
    border-top: 1px solid var(--line);
}
.site-footer h5 {
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}
.site-footer a {
    color: var(--slate);
    font-size: 13px;
    display: block;
    padding: 3px 0;
    text-decoration: none;
}
.site-footer a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    display: inline-flex;
    padding: 0;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--slate);
}
.footer-social a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { color: var(--muted); display: inline; padding: 0; }

/* -------- 24. MODAL OVERRIDES -------- */
.modal-content { border-radius: 12px; border: none; }
.modal-header {
    background: var(--orange);
    color: #fff;
    border-radius: 12px 12px 0 0;
    border: none;
}
.modal-header .btn-close { filter: invert(1); }
.modal-title { font-size: 1.1rem; font-family: 'Poppins', sans-serif; }
.modal-body .form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 5px;
}
.modal-body .form-control,
.modal-body .form-select {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
}
.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, .1);
}

/* -------- 25. RESPONSIVE -------- */
@media (max-width: 991px) {
    .booking-card { position: static; }
}

@media (max-width: 768px) {
    .doctor-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .doctor-photo { margin: 0 auto; }
    .doctor-name-row,
    .credential-badges,
    .recommend-row,
    .hero-cta { justify-content: center; }
    .clinic-info { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
    .creds-grid { grid-template-columns: 1fr; }
    .rating-summary { grid-template-columns: 1fr; text-align: center; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    .doctor-hero { padding: 18px; }
    .content-section { padding: 18px; }
    .booking-card { padding: 20px; }
}

@media (max-width: 520px) {
    .services-grid { grid-template-columns: 1fr; }
    .topbar-cta { font-size: 11.5px; }
    .doctor-photo img { width: 140px; height: 140px; }
    .doctor-name { font-size: 1.5rem; }
    .btn-brand, .btn-brand-outline, .btn-whatsapp {
        padding: 10px 16px;
        font-size: 13px;
    }
    .rating-big .num { font-size: 2.25rem; }
}

/* -------- 26. UTILITIES -------- */
.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 4px;
}
.text-orange { color: var(--orange) !important; }
.bg-orange { background: var(--orange) !important; color: #fff; }
.rounded-md { border-radius: 8px; }

/* Print styles */
@media print {
    .topbar, .site-header, .booking-card, .instant-booking,
    .hero-cta, .site-footer, .modal, .breadcrumb-nav,
    #whatsapp-widget, .footer-social {
        display: none !important;
    }
    body { background: #fff; font-size: 12px; }
    .content-section, .doctor-hero {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    a { color: #000; text-decoration: none; }
}