/* Doktorbul Modern CSS Overlay — 2026 */

:root {
    --primary: #2d2e6b;
    --primary-light: #3f4079;
    --accent: #e74e84;
    --accent-hover: #d43d73;
    --teal: #2ec4b6;
    --teal-hover: #25a99d;
    --text-dark: #1a1a2e;
    --text-body: #444;
    --text-muted: #888;
    --border: #e8ecef;
    --bg-light: #f5f7fa;
    --bg-card: #fff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 50px;
    --transition: all 0.25s ease;
}

/* === GLOBAL === */
body {
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { transition: var(--transition); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--primary);
}
::-webkit-scrollbar-track { background: var(--bg-light); }

/* === NAVIGATION === */
.header_sticky {
    box-shadow: var(--shadow-sm);
}

.nav-centered {
    text-align: center;
    padding: 8px 0;
}

.nav-centered .main-menu {
    float: none !important;
    display: inline-block !important;
}

.nav-centered .main-menu > ul {
    display: inline-flex !important;
    justify-content: center !important;
    float: none !important;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    gap: 0;
}

.main-menu ul li {
    float: none !important;
}

.main-menu ul li span a {
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-menu ul li span a:hover {
    color: var(--accent) !important;
}

@media (max-width: 991px) {
    .nav-centered .main-menu { display: none !important; }
}

/* === HERO SECTION === */
.hero_home.version_1 {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1b4b 100%) !important;
    position: relative;
}

.hero_home.version_1::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/resimler/hero_bg_1.svg') repeat;
    opacity: 0.08;
}

.hero_home .content {
    position: relative;
    z-index: 1;
}

.hero_home h1 {
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero_home p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* === SEARCH BAR === */
.hero_home .form-control,
.hero_home input[type="text"] {
    border-radius: var(--radius-pill) !important;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.95);
    padding: 12px 24px;
    font-size: 1rem;
    transition: var(--transition);
}

.hero_home .form-control:focus,
.hero_home input[type="text"]:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(46,196,182,0.15);
}

.btn-info.st2,
.btn_search {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-info.st2:hover,
.btn_search:hover {
    background: var(--teal-hover) !important;
    border-color: var(--teal-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46,196,182,0.3);
}

/* === BUTTONS === */
.btn_1 {
    background: var(--accent);
    border: none;
    border-radius: var(--radius-pill);
    padding: 10px 28px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(231,78,132,0.25);
}

.btn_1:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,78,132,0.35);
}

.btn_1.outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: none;
}

.btn_1.outline:hover {
    background: var(--accent);
    color: #fff;
}

/* === CARDS & LISTINGS === */
.strip_list,
.box_general,
.box_profile {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.strip_list:hover,
.box_general:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.strip_list figure img {
    border-radius: 50%;
    border: 3px solid var(--bg-light);
}

.strip_list h2 a {
    color: var(--text-dark);
    font-weight: 600;
}

.strip_list h2 a:hover {
    color: var(--accent);
}

.strip_list ul li:last-child a {
    background: var(--teal) !important;
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    font-weight: 600;
    transition: var(--transition);
}

.strip_list ul li:last-child a:hover {
    background: var(--teal-hover) !important;
    transform: translateY(-1px);
}

/* === RESULTS BAR === */
#results {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1b4b 100%);
}

/* === FILTER TABS === */
.filters_listing .switch-field label {
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

/* === ALPHABET PAGINATION === */
nav.letters .page-link {
    border-radius: var(--radius-sm) !important;
    margin: 0 2px;
    font-weight: 500;
    transition: var(--transition);
}

nav.letters .page-item.active .page-link,
nav.letters .page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* === DOCTOR PROFILE === */
.box_profile {
    overflow: hidden;
}

.box_profile figure img {
    border-radius: var(--radius-md);
    border: 4px solid var(--bg-light);
}

.tabs_styled_2 .nav-link {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    font-weight: 500;
    transition: var(--transition);
}

.tabs_styled_2 .nav-link.active {
    border-bottom-color: var(--accent);
}

/* Rating stars */
.rating i.voted {
    color: #fbbf24;
}

/* === BLOG === */
article.blog {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

article.blog:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

article.blog .post_info h3 {
    font-weight: 600;
    color: var(--text-dark);
}

article.blog .post_info h3 a:hover {
    color: var(--accent);
}

.singlepost {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.tags a {
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    transition: var(--transition);
}

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

/* === MARQUEE REPLACEMENT === */
.marquee-modern {
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    padding: 6px 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.marquee-modern .marquee-track {
    display: inline-block;
    animation: marquee-scroll 60s linear infinite;
}

.marquee-modern .marquee-track span {
    margin-right: 80px;
    color: var(--text-body);
}

.marquee-modern .marquee-track span small {
    color: var(--text-muted);
}

@keyframes marquee-scroll {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* === VISITOR WIDGET === */
.syfgrnt1 {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px 18px;
    background: var(--bg-card);
}

.syfgrnt1 .brkn {
    color: var(--accent);
    font-weight: 600;
}

/* === CANLI SORU SOR BUTTON === */
.cssbar {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    border: none;
    background: linear-gradient(135deg, var(--accent) 0%, #c2185b 100%);
    border-radius: var(--radius-pill) !important;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 9999 !important;
    padding: 14px 24px !important;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.cssbar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231,78,132,0.4);
}

/* === FOOTER === */
footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
    border-top: none;
    padding-top: 50px;
}

.footer-container {
    max-width: 1140px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-brand-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin: 14px 0 18px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.footer-links-col h5 {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-links-col ul li a:hover {
    color: #fff;
    padding-left: 3px;
}

footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 0 0 20px;
}

.footer-legal p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 576px) {
    .footer-top { grid-template-columns: 1fr; gap: 25px; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

/* === FORMS === */
.form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(46,196,182,0.1);
}

select.form-control {
    border-radius: var(--radius-sm);
}

/* === STATISTICS BADGES === */
ul.statistic li {
    border-radius: var(--radius-sm);
}

/* === HOME LISTS === */
.list_home1 ul li {
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.list_home1 ul li:hover {
    background-color: var(--accent);
    transform: translateX(3px);
}

/* === RESPONSIVE TWEAKS === */
@media (max-width: 768px) {
    .hero_home h1 {
        font-size: 1.6rem;
    }

    .strip_list {
        padding-left: 15px !important;
    }

    .strip_list figure {
        position: relative !important;
        left: auto;
        margin: 0 auto 15px auto;
    }

    article.blog figure {
        height: 200px;
    }
}

/* === LAZYLOAD === */
img.lazyload {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazyloaded {
    opacity: 1;
}

/* ======================================
   HOMEPAGE — MODERN REDESIGN
   ====================================== */

/* === HERO === */
.hero-modern {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(150deg, #1a1b4b 0%, var(--primary) 40%, #4a3f8f 100%);
}

.hero-modern-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('/resimler/hero_bg_1.svg') repeat;
    opacity: 0.05;
}

.hero-modern-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-modern h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-modern h1 span {
    color: var(--teal);
}

.hero-modern-sub {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

/* Hero Search */
.hero-search-form {
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-search-box {
    display: flex;
    background: #fff;
    border-radius: var(--radius-pill);
    padding: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.hero-search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-search-input-wrap i {
    position: absolute;
    left: 18px;
    color: var(--text-muted);
    font-size: 18px;
}

.hero-search-input {
    width: 100%;
    border: none;
    padding: 14px 14px 14px 46px;
    font-size: 1rem;
    background: transparent;
    outline: none;
    border-radius: var(--radius-pill);
}

.hero-search-city {
    border: none;
    border-left: 1px solid var(--border);
    padding: 0 18px;
    font-size: 0.95rem;
    color: var(--text-body);
    background: transparent;
    outline: none;
    min-width: 140px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero-search-btn {
    background: var(--teal);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.hero-search-btn:hover {
    background: var(--teal-hover);
    transform: scale(1.02);
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-tag:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.hero-tag-more {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.hero-tag-more:hover {
    background: var(--teal-hover);
    color: #fff;
    border-color: var(--teal-hover);
}

/* === STATS SECTION === */
.stats-section {
    padding: 0;
    margin-top: -35px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #4a3f8f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
}

.stat-number {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === HOME CONTENT (Blog + Reviews) === */
.home-content-section {
    padding: 50px 0;
}

.home-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 30px;
}

.home-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
}

.home-card-header i {
    font-size: 22px;
    color: var(--accent);
}

.home-card-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.home-card-body {
    padding: 8px 0;
}

.home-card-footer {
    display: block;
    padding: 14px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.home-card-footer:hover {
    background: var(--bg-light);
    color: var(--teal-hover);
    text-decoration: none;
}

/* List Items */
.home-list-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    gap: 16px;
    border-bottom: 1px solid #f0f2f5;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.home-list-item:hover {
    background: var(--bg-light);
    text-decoration: none;
    color: inherit;
}

.home-list-item:last-child {
    border-bottom: none;
}

.home-list-img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.home-list-img-round {
    border-radius: 50%;
}

.home-list-text {
    flex: 1;
    min-width: 0;
}

.home-list-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-list-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.home-review-stars {
    margin: 2px 0 4px;
}

.home-review-stars i {
    font-size: 12px;
    color: #ddd;
}

.home-review-stars i.voted {
    color: #fbbf24;
}

.home-review-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === CTA SECTION === */
.cta-section {
    padding: 0 0 60px;
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8edf5 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    border: 1px solid var(--border);
}

.cta-img {
    max-width: 280px;
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cta-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-modern { padding: 60px 0 45px; }
    .hero-modern h1 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-search-box { flex-wrap: wrap; border-radius: var(--radius-md); }
    .hero-search-input-wrap { min-width: 100%; }
    .hero-search-input { border-radius: var(--radius-md); }
    .hero-search-city { min-width: auto; flex: 1; border-left: none; border-top: 1px solid var(--border); padding: 12px 18px; }
    .hero-search-btn { border-radius: var(--radius-md); padding: 12px 24px; }
    .cta-box { padding: 30px; }
    .cta-img { margin-bottom: 25px; }
}

@media (max-width: 576px) {
    .hero-modern h1 { font-size: 1.6rem; }
    .hero-modern-sub { font-size: 0.95rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card { padding: 20px 14px; }
    .stat-number { font-size: 1.3rem; }
    .hero-tags { gap: 6px; }
    .hero-tag { padding: 5px 12px; font-size: 0.8rem; }
    .cta-box { padding: 24px; }
    .cta-box h3 { font-size: 1.3rem; }
}

/* ======================================
   DOCTOR PROFILE PAGE
   ====================================== */

.box_profile {
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding-bottom: 24px;
}

.box_profile figure {
    background: linear-gradient(135deg, var(--primary) 0%, #4a3f8f 100%);
    padding: 30px 0 20px;
    margin-bottom: 16px;
}

.box_profile figure img {
    border-radius: 50% !important;
    border: 4px solid rgba(255,255,255,0.9) !important;
    width: 130px !important;
    height: 130px !important;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.box_profile .doctor-title {
    padding: 0 20px;
}

.box_profile .doctor-title h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.box_profile .rating {
    padding: 0 20px;
    display: block;
    margin-bottom: 12px;
}

.box_profile .statistic {
    margin: 16px 20px;
    display: flex !important;
    gap: 8px;
    list-style: none;
    padding: 0;
}

.box_profile .statistic li {
    flex: 1 1 0 !important;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    padding: 8px 12px !important;
    text-align: center;
    width: 50% !important;
    float: none !important;
}

.box_profile .contacts {
    padding: 0 20px;
}

.box_profile .contacts li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.box_profile .contacts li h2 {
    font-size: 0.85rem !important;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 4px;
}

.box_profile .btn_1 {
    margin-top: 10px;
}

/* Tabs */
.tabs_styled_2 {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.tabs_styled_2 .nav-tabs {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.tabs_styled_2 .nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.tabs_styled_2 .nav-tabs .nav-link:hover {
    color: var(--text-dark);
    background: rgba(0,0,0,0.02);
}

.tabs_styled_2 .nav-tabs .nav-link.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: var(--bg-card);
}

.tab-content {
    padding: 24px;
}

/* Breadcrumb */
#breadcrumb {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

#breadcrumb ul li {
    font-size: 0.85rem;
}

#breadcrumb ul li a {
    color: var(--text-muted);
}

/* ======================================
   DOCTOR LISTING PAGE
   ====================================== */

.strip_list {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    padding: 20px 20px 20px 130px !important;
    margin-bottom: 16px;
    position: relative;
    transition: var(--transition);
}

.strip_list:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--teal);
}

.strip_list figure {
    width: 90px !important;
    height: 90px !important;
    left: 20px !important;
    top: 20px !important;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
}

.strip_list figure img {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover;
}

.strip_list h2 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.strip_list h2 a {
    color: var(--text-dark) !important;
    font-weight: 700;
}

.strip_list h2 a:hover {
    color: var(--accent) !important;
}

.strip_list > small {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.strip_list > small a {
    color: var(--teal);
    font-weight: 500;
}

.strip_list ul {
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding-top: 12px;
}

.strip_list ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.strip_list ul li:last-child a {
    background: var(--teal) !important;
    color: #fff !important;
    border-radius: var(--radius-pill) !important;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    transition: var(--transition);
}

.strip_list ul li:last-child a:hover {
    background: var(--teal-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46,196,182,0.3);
}

/* Alphabet filter */
nav.letters {
    background: var(--bg-card);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

/* Search bar on listing */
.search_bar_list input[type="text"] {
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    border: 1px solid var(--border);
    padding: 10px 20px;
}

.search_bar_list .btn_search {
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

/* ======================================
   HASTALIK / UZMANLIK PAGES
   ====================================== */

.box_general {
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    padding: 24px;
}

.expertises_item {
    border-radius: var(--radius-pill) !important;
    transition: var(--transition);
}

.expertises_item.active {
    background: var(--primary) !important;
}

/* ======================================
   CONTACT / REGISTER PAGES
   ====================================== */

.box_contact,
.main_title {
    text-align: center;
}

.main_title h2 {
    font-weight: 700;
    color: var(--text-dark);
}

/* ======================================
   AUTOCOMPLETE DROPDOWN
   ====================================== */

.arm_snc {
    border-radius: var(--radius-sm) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid var(--border) !important;
    top: 58px !important;
    max-height: 300px;
    overflow-y: auto;
}

.arm_snc_list {
    padding: 10px 16px !important;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid #f0f2f5;
}

.arm_snc_list:hover {
    background: var(--teal) !important;
    color: #fff;
}

.arm_snc_list:hover small {
    color: rgba(255,255,255,0.8);
}

.arm_snc_list small {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

/* ======================================
   GLOBAL PAGE BACKGROUND
   ====================================== */

main {
    background: var(--bg-light);
}

main .container {
    position: relative;
    z-index: 1;
}

/* === EMAIL POPUP === */
.email-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.email-popup-overlay.active {
    display: flex;
}

.email-popup {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.email-popup h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.email-popup p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.email-popup input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    margin-bottom: 12px;
    box-sizing: border-box;
}

.email-popup button {
    width: 100%;
    padding: 12px;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.email-popup button:hover {
    background: var(--teal-hover);
}

.email-popup .close-popup {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    width: auto;
    padding: 0;
}

.email-popup .close-popup:hover {
    color: var(--text-dark);
    background: none;
}
