/* ═══════════════════════════════════════════════════════════
   DOCTORS LISTING PAGE
═══════════════════════════════════════════════════════════ */

/* ── Toolbar (search + filters) ──────────────────────────── */

.doctors-toolbar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

/* Search */
.doctors-search-wrap {
    position: relative;
    max-width: 360px;
    width: 100%;
    align-self: flex-end;
}

.doctors-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--themeht-primary-color);
    font-size: 15px;
    pointer-events: none;
    line-height: 1;
    width: 16px;
    text-align: center;
}

.doctors-search-input {
    width: 100%;
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    padding-left: 44px !important;
    padding-right: 42px !important;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 14px;
    color: var(--themeht-secondary-color);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

.doctors-search-input:focus {
    border-color: var(--themeht-primary-color);
    box-shadow: 0 0 0 4px rgba(var(--themeht-primary-color-rgb, 0,133,185), 0.12);
}

.doctors-search-input::-webkit-search-cancel-button { display: none; }

.doctors-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 2px 4px;
    cursor: pointer;
    color: #aaa;
    font-size: 13px;
    line-height: 1;
    transition: color 0.2s;
}

.doctors-search-clear:hover { color: var(--themeht-primary-color); }

/* Filters */
.doctors-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.doctors-filter-wrap .filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--themeht-primary-color);
    background: transparent;
    color: var(--themeht-primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.doctors-filter-wrap .filter-btn:hover,
.doctors-filter-wrap .filter-btn.active {
    background: var(--themeht-primary-color);
    color: #fff;
}

.doctors-location-filter .filter-btn { font-weight: 700; }

.doctors-grid-wrap { position: relative; min-height: 200px; }

.doctor-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.doctor-card-location i {
    color: var(--themeht-primary-color);
    font-size: 12px;
}

.doctors-grid-wrap.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    z-index: 10;
}


/* ═══════════════════════════════════════════════════════════
   DOCTOR SINGLE PAGE
═══════════════════════════════════════════════════════════ */

.doctor-single-page { }

/* ── Sidebar ──────────────────────────────────────────────── */

.doctor-sidebar {
    position: sticky;
    top: 90px;
}

.doctor-photo-wrap {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    line-height: 0;
}

.doctor-photo-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.doctor-name-card {
    background: var(--themeht-primary-color);
    padding: 20px 24px;
    text-align: center;
}

.doctor-name-card h4 {
    color: #fff;
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.doctor-designation {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    margin-bottom: 8px;
}

.doctor-specialty-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50px;
    padding: 3px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Book button */
.doctor-sidebar .themeht-btn {
    border-radius: 0;
    width: 100%;
    justify-content: center;
}

.doctor-sidebar .themeht-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp button */
.doctor-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: #25D366;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.3s;
}

.doctor-whatsapp-btn i {
    font-size: 20px;
}

.doctor-whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
    text-decoration: none;
}

/* Info list */
.doctor-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--themeht-light-color);
    border-radius: 0 0 16px 16px;
}

.doctor-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.doctor-info-list li:last-child { border-bottom: none; }

.doctor-info-list .dil-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--themeht-primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.doctor-info-list li > div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.doctor-info-list li small {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doctor-info-list li strong {
    font-size: 14px;
    color: var(--themeht-secondary-color);
    font-weight: 600;
}

.doctor-info-list li strong a {
    color: inherit;
}

.doctor-info-list li strong a:hover {
    color: var(--themeht-primary-color);
}

/* Social */
.doctor-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 18px 0 4px;
}

.doctor-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--themeht-light-color);
    color: var(--themeht-secondary-color);
    font-size: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.doctor-social a:hover {
    background: var(--themeht-primary-color);
    color: #fff;
    border-color: var(--themeht-primary-color);
}


/* ── Tabs ─────────────────────────────────────────────────── */

.doctor-tabs .nav-tabs {
    border-bottom: 2px solid rgba(0,0,0,0.08);
    margin-bottom: 28px;
    gap: 4px;
    flex-wrap: wrap;
}

.doctor-tabs .nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    color: #777;
    padding: 10px 18px;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.doctor-tabs .nav-tabs .nav-link:hover {
    color: var(--themeht-primary-color);
    border-bottom-color: var(--themeht-primary-color);
}

.doctor-tabs .nav-tabs .nav-link.active {
    color: var(--themeht-primary-color);
    border-bottom-color: var(--themeht-primary-color);
    background: transparent;
}


/* ── About box ────────────────────────────────────────────── */

.doctor-about-box,
.doctor-quals-box {
    background: var(--themeht-light-color);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
}

.doctor-about-box h5,
.doctor-quals-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor-about-box h5 i,
.doctor-quals-box h5 i {
    color: var(--themeht-primary-color);
    font-size: 18px;
}

.doctor-about-box .entry-content p:last-child { margin-bottom: 0; }


/* ── Qualifications list ──────────────────────────────────── */

.doctor-qual-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doctor-qual-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--themeht-secondary-color);
    line-height: 1.5;
}

.doctor-qual-list li i {
    color: var(--themeht-primary-color);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}


/* ── Stats row ────────────────────────────────────────────── */

.doctor-stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.doctor-stat {
    flex: 1;
    min-width: 130px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.doctor-stat i {
    font-size: 26px;
    color: var(--themeht-primary-color);
}

.doctor-stat strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    line-height: 1.3;
}

.doctor-stat span {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ── Insurance list ───────────────────────────────────────── */

.doctor-insurance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.doctor-insurance-list li {
    background: var(--themeht-light-color);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--themeht-secondary-color);
    border: 1px solid rgba(0,0,0,0.06);
}

.doctor-insurance-list li i {
    color: var(--themeht-primary-color);
    font-size: 16px;
}


/* ── Empty state ──────────────────────────────────────────── */

.doctor-empty-state {
    text-align: center;
    padding: 50px 20px;
    background: var(--themeht-light-color);
    border-radius: 14px;
}

.doctor-empty-state i {
    font-size: 48px;
    color: var(--themeht-primary-color);
    opacity: 0.5;
    display: block;
    margin-bottom: 14px;
}

.doctor-empty-state p {
    color: #888;
    margin: 0;
}


/* ── Why Choose Us / Feature Boxes ───────────────────────── */

.doctor-features-section {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 2px dashed rgba(0,0,0,0.07);
}

.doctor-features-heading {
    margin-bottom: 24px;
}

.doctor-features-heading h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.doctor-features-heading h5 i {
    color: var(--themeht-primary-color);
    font-size: 20px;
}

.doctor-features-heading p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.doctor-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.doctor-feature-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--themeht-light-color);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

.doctor-feature-box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.doctor-feature-box .dfb-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--themeht-primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.doctor-feature-box .dfb-content h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin: 0 0 6px;
}

.doctor-feature-box .dfb-content p {
    font-size: 13px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 991px) {
    .doctor-sidebar { position: static; }
    .doctor-photo-wrap img { height: 260px; }
    .doctor-stats-row { gap: 10px; }
    .doctor-stat { min-width: 100px; padding: 16px 12px; }
}

@media (max-width: 575px) {
    .doctors-search-wrap { max-width: 100%; align-self: stretch; }
    .doctor-stat { min-width: calc(50% - 8px); }
    .doctor-insurance-list li { width: 100%; }
    .doctor-features-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   INSURANCE PROVIDERS ARCHIVE
═══════════════════════════════════════════════════════════ */

.insurance-intro-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin-bottom: 10px;
}

.insurance-intro-desc {
    color: #777;
    font-size: 15px;
    margin: 0;
}

.insurance-accept-badge {
    display: inline-flex;
    align-items: center;
    background: var(--themeht-primary-color);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* Trust highlights strip */
.ins-highlights-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.ins-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 20px 22px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.ins-highlight-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.ins-highlight-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(var(--themeht-primary-color-rgb, 0,133,185), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--themeht-primary-color);
    flex-shrink: 0;
}

.ins-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ins-highlight-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    line-height: 1.2;
}

.ins-highlight-text span {
    font-size: 12px;
    color: #888;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .ins-highlights-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ins-highlights-row {
        grid-template-columns: 1fr;
    }
}

.insurance-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.insurance-filter-wrap .filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--themeht-primary-color);
    background: transparent;
    color: var(--themeht-primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.insurance-filter-wrap .filter-btn:hover,
.insurance-filter-wrap .filter-btn.active {
    background: var(--themeht-primary-color);
    color: #fff;
}

/* Card */
.insurance-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
}

.insurance-card:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.insurance-card-logo {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    min-height: 130px;
}

.insurance-card-logo .ins-logo-img {
    max-height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.ins-logo-placeholder,
.ins-logo-placeholder-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.04);
    border-radius: 12px;
    color: var(--themeht-primary-color);
    opacity: 0.5;
}

.ins-logo-placeholder {
    width: 80px;
    height: 80px;
    font-size: 36px;
}

.ins-logo-placeholder-lg {
    width: 120px;
    height: 120px;
    font-size: 52px;
}

.insurance-card-body {
    padding: 16px 20px;
    flex: 1;
}

.insurance-card-name {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--themeht-secondary-color);
}

.insurance-card-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.insurance-card-name a:hover {
    color: var(--themeht-primary-color);
}

.insurance-type-badge {
    display: inline-block;
    background: rgba(var(--themeht-primary-color-rgb, 0,133,185), 0.1);
    color: var(--themeht-primary-color);
    border-radius: 50px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.insurance-card-plans {
    display: none; /* hidden from UI — data still exists in backend */
}

.ins-plan-tag {
    background: var(--themeht-light-color);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 500;
    color: #555;
}

.ins-plan-more {
    background: var(--themeht-primary-color);
    border-color: var(--themeht-primary-color);
    color: #fff;
}

.insurance-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: var(--themeht-light-color);
}

.ins-details-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--themeht-primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: gap 0.2s;
}

.ins-details-link:hover {
    color: var(--themeht-primary-color);
    text-decoration: none;
    gap: 4px;
}

.ins-site-link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeht-secondary-color);
    font-size: 14px;
    transition: all 0.25s;
    text-decoration: none;
}

.ins-site-link:hover {
    background: var(--themeht-primary-color);
    border-color: var(--themeht-primary-color);
    color: #fff;
}


/* Full-width image banner */
.ins-banner-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.ins-banner-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .ins-banner-image img { height: 220px; }
}

/* How It Works */
.ins-how-section {
    background: var(--themeht-light-color);
    border-radius: 20px;
    border: 2px solid var(--themeht-primary-color);
    padding: 44px 40px 40px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.ins-how-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin-bottom: 32px;
    text-align: center;
}

.ins-how-steps {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.ins-how-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

/* The full white card */
.ins-how-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 36px 22px 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.ins-how-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.ins-how-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--themeht-primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.ins-how-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: rgba(var(--themeht-primary-color-rgb, 0,133,185), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--themeht-primary-color);
    flex-shrink: 0;
}

.ins-how-step h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin: 0;
    line-height: 1.3;
}

.ins-how-step p {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

.ins-how-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    margin-top: 55px;
}

.ins-how-connector i {
    font-size: 22px;
    color: var(--themeht-primary-color);
    opacity: 0.7;
}

@media (max-width: 991px) {
    .ins-how-section { padding: 36px 24px 32px; }
}

@media (max-width: 767px) {
    .ins-how-section { padding: 28px 20px; }
    .ins-how-steps { flex-direction: column; align-items: center; gap: 32px; }
    .ins-how-connector {
        width: auto;
        height: auto;
        margin-top: 0;
        background: none;
        transform: rotate(90deg);
    }
    .ins-how-step { max-width: 300px; width: 100%; }
}

/* SEO text block */
.ins-seo-block {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.07);
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.ins-seo-inner h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin-bottom: 16px;
}

.ins-seo-inner p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 14px;
}

.ins-seo-inner p:last-child { margin-bottom: 0; }

/* Contact card (right column) */
.ins-contact-card {
    background: var(--themeht-light-color);
    border-radius: 18px;
    border: 2px solid var(--themeht-primary-color);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 100px;
}

.ins-contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--themeht-primary-color);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ins-contact-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin: 0;
    line-height: 1.3;
}

.ins-contact-card > p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.ins-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.ins-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}

.ins-contact-btn-primary {
    background: var(--themeht-primary-color);
    color: #fff;
}

.ins-contact-btn-primary:hover {
    background: var(--themeht-secondary-color);
    color: #fff;
}

.ins-contact-btn-outline {
    border: 2px solid var(--themeht-primary-color);
    color: var(--themeht-primary-color);
    background: transparent;
}

.ins-contact-btn-outline:hover {
    background: var(--themeht-primary-color);
    color: #fff;
}

.ins-contact-note {
    font-size: 12px;
    color: #888;
    margin: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .ins-seo-block {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ins-contact-card { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   INSURANCE PROVIDER SINGLE PAGE
═══════════════════════════════════════════════════════════ */

.insurance-sidebar {
    position: sticky;
    top: 90px;
}

.insurance-logo-wrap {
    background: var(--themeht-light-color);
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    min-height: 160px;
}

.ins-single-logo {
    max-height: 100px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.insurance-name-card {
    background: var(--themeht-primary-color);
    padding: 18px 24px;
    text-align: center;
    margin-bottom: 2px;
}

.insurance-name-card h4 {
    color: #fff;
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
}

.insurance-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--themeht-light-color);
    border-radius: 0 0 16px 16px;
}

.insurance-info-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.insurance-info-list li:last-child { border-bottom: none; }

.insurance-info-list .iil-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--themeht-primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.insurance-info-list li > div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.insurance-info-list li small {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insurance-info-list li strong {
    font-size: 14px;
    color: var(--themeht-secondary-color);
    font-weight: 600;
}

.insurance-info-list li strong a {
    color: inherit;
    text-decoration: none;
}

.insurance-info-list li strong a:hover {
    color: var(--themeht-primary-color);
}

.insurance-about-box,
.insurance-plans-box,
.insurance-notes-box {
    background: var(--themeht-light-color);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
}

.insurance-about-box h5,
.insurance-plans-box h5,
.insurance-notes-box h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--themeht-secondary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insurance-about-box h5 i,
.insurance-plans-box h5 i,
.insurance-notes-box h5 i {
    color: var(--themeht-primary-color);
    font-size: 18px;
}

.insurance-about-box .entry-content p:last-child { margin-bottom: 0; }

.insurance-notes-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.insurance-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.insurance-plan-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--themeht-secondary-color);
}

.insurance-plan-item i {
    color: var(--themeht-primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.ins-back-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--themeht-primary-color);
    text-decoration: none;
    transition: gap 0.2s;
}

.ins-back-link:hover {
    color: var(--themeht-primary-color);
    text-decoration: none;
}

/* ── Insurance Responsive ─────────────────────────────────── */

@media (max-width: 991px) {
    .insurance-sidebar { position: static; }
}

@media (max-width: 575px) {
    .insurance-plans-grid { grid-template-columns: 1fr; }
    .insurance-accept-badge { font-size: 13px; padding: 8px 16px; }
}
