/* ============================================================
   Op. Dr. Faruk Dinçşahin — Dr Style
   Medical/Gynecology website custom CSS
   ============================================================ */

/* ── 1. CSS VARIABLES ───────────────────────────────────────── */
:root {
    --dr-primary:       #8C2F5A;
    --dr-primary-dark:  #6B2245;
    --dr-accent:        #E87FA3;
    --dr-accent-light:  #FDF0F5;
    --dr-green:         #2A7D4F;
    --dr-green-dark:    #1e5e3a;
    --dr-text:          #2a1a22;
    --dr-muted:         #7a6575;
    --dr-bg:            #FDF7FA;
    --dr-border:        #ecd8e5;
    --dr-white:         #ffffff;
    --dr-shadow:        0 4px 24px rgba(140,47,90,.10);
    --dr-shadow-lg:     0 8px 40px rgba(140,47,90,.16);
    --dr-radius:        16px;
    --dr-radius-sm:     10px;
    --transition:       all .3s ease;
}

/* ── 2. BASE RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dr-text);
    background: var(--dr-white);
    line-height: 1.7;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--dr-primary);
}

/* ── 3. PRELOADER ───────────────────────────────────────────── */
#dr-preloader {
    position: fixed; inset: 0;
    background: var(--dr-white);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    transition: opacity .5s ease;
}
#dr-preloader.hidden { opacity: 0; pointer-events: none; }
.dr-spinner {
    width: 44px; height: 44px;
    border: 4px solid var(--dr-border);
    border-top-color: var(--dr-primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 4. NAVBAR ──────────────────────────────────────────────── */
#drNavbar {
    background: var(--dr-white);
    box-shadow: none;
    transition: box-shadow .3s ease, background .3s ease;
    padding: .4rem 0;
    z-index: 1030;
}
#drNavbar.scrolled {
    box-shadow: 0 2px 20px rgba(27,63,106,.12);
}

/* Brand */
.dr-navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.dr-navbar-brand img {
    height: 52px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}
.dr-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.dr-brand-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--dr-primary);
    letter-spacing: .01em;
}
.dr-brand-title {
    font-size: .67rem;
    font-weight: 400;
    color: var(--dr-muted);
    letter-spacing: .02em;
}

/* Nav links */
.dr-nav .nav-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dr-text);
    padding: .4rem .9rem;
    border-radius: 8px;
    letter-spacing: .02em;
    transition: var(--transition);
    white-space: nowrap;
}
.dr-nav .nav-link:hover,
.dr-nav .nav-link.active {
    color: var(--dr-primary);
    background: rgba(27,63,106,.06);
}

/* Nav right buttons */
.dr-navbar-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}
.dr-btn-tel {
    font-size: .78rem;
    font-weight: 700;
    color: var(--dr-primary);
    border: 2px solid var(--dr-primary);
    border-radius: 50px;
    padding: .35rem 1rem;
    white-space: nowrap;
    transition: var(--transition);
}
.dr-btn-tel:hover {
    background: var(--dr-primary);
    color: #fff;
}
.dr-btn-wa {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    background: var(--dr-green);
    border: 2px solid var(--dr-green);
    border-radius: 50px;
    padding: .35rem 1rem;
    white-space: nowrap;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.dr-btn-wa:hover {
    background: var(--dr-green-dark);
    border-color: var(--dr-green-dark);
    color: #fff;
}

/* Hamburger */
.navbar-toggler {
    border: 2px solid var(--dr-border);
    border-radius: 8px;
    padding: .3rem .5rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231B3F6A' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ── 5. HERO SECTION ────────────────────────────────────────── */
#hero {
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* Slider background */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 60vh;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(18,42,72,0.88) 0%, rgba(27,63,106,0.72) 55%, rgba(0,0,0,0.55) 100%);
}
.hero-content-z {
    position: relative;
    z-index: 2;
}

/* Decorative circles */
#hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(201,149,106,.08);
    top: -150px; right: -150px;
    pointer-events: none;
}
#hero::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    bottom: -100px; left: -100px;
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 2;
}

/* Small tag */
.dr-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: rgba(255,255,255,.9);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    margin-bottom: 1.2rem;
}
.dr-tag i { color: var(--dr-accent); }

.hero-h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.1rem;
}
.hero-h1 span { color: var(--dr-accent); }

.hero-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 1.5rem;
    max-width: 480px;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.8rem;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(4px);
    color: #fff;
    border-radius: 50px;
    padding: .3rem .85rem;
    font-size: .76rem;
    font-weight: 600;
}
.trust-badge i { color: var(--dr-accent); font-size: .8rem; }

/* Hero action buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}
.btn-hero-tel {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    color: var(--dr-primary);
    border-radius: 50px;
    padding: .7rem 1.6rem;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.btn-hero-tel:hover {
    background: var(--dr-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-hero-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--dr-green);
    color: #fff;
    border-radius: 50px;
    padding: .7rem 1.6rem;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(42,125,79,.3);
}
.btn-hero-wa:hover {
    background: var(--dr-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42,125,79,.4);
}

/* Hero form card */
.hero-form-card {
    background: #fff;
    border-radius: var(--dr-radius);
    padding: 2.2rem 2rem;
    box-shadow: var(--dr-shadow-lg);
    position: relative;
    z-index: 2;
}
.hero-form-card .form-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin-bottom: .25rem;
}
.hero-form-card .form-subtitle {
    font-size: .82rem;
    color: var(--dr-muted);
    margin-bottom: 1.5rem;
}

/* Form elements */
.dr-form .form-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--dr-primary);
    margin-bottom: .3rem;
}
.dr-form .form-control,
.dr-form .form-select {
    border: 1.5px solid var(--dr-border);
    border-radius: var(--dr-radius-sm);
    padding: .6rem .9rem;
    font-size: .88rem;
    color: var(--dr-text);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.dr-form .form-control:focus,
.dr-form .form-select:focus {
    border-color: var(--dr-primary);
    box-shadow: 0 0 0 3px rgba(27,63,106,.1);
    outline: none;
}
.dr-form textarea.form-control { resize: none; }

.btn-dr-primary {
    background: var(--dr-primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .75rem 1.8rem;
    font-weight: 700;
    font-size: .9rem;
    width: 100%;
    transition: var(--transition);
    cursor: pointer;
}
.btn-dr-primary:hover {
    background: var(--dr-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(27,63,106,.25);
}
.btn-dr-primary:active { transform: translateY(0); }

.form-privacy {
    font-size: .71rem;
    color: var(--dr-muted);
    text-align: center;
    margin-top: .8rem;
    line-height: 1.5;
}
.form-privacy i { color: var(--dr-green); }

/* ── 6. TRUST BAR ───────────────────────────────────────────── */
#trustBar {
    background: var(--dr-accent-light);
    border-top: 3px solid var(--dr-accent);
    border-bottom: 1px solid var(--dr-border);
    padding: 2rem 0;
}
.trust-item {
    text-align: center;
    padding: .5rem;
}
.trust-icon {
    width: 56px; height: 56px;
    background: var(--dr-primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto .75rem;
    transition: var(--transition);
}
.trust-item:hover .trust-icon {
    background: var(--dr-accent);
    transform: translateY(-3px);
}
.trust-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dr-primary);
    line-height: 1.2;
    margin-bottom: .2rem;
}
.trust-item-sub {
    font-size: .75rem;
    color: var(--dr-muted);
    font-weight: 500;
}

/* ── 7. SECTION HEADINGS ────────────────────────────────────── */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}
.section-heading .section-badge {
    display: inline-block;
    background: rgba(27,63,106,.08);
    color: var(--dr-primary);
    border-radius: 50px;
    padding: .3rem 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}
.section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--dr-primary);
    margin-bottom: .75rem;
}
.section-heading .section-line {
    display: block;
    width: 56px;
    height: 4px;
    background: var(--dr-accent);
    border-radius: 2px;
    margin: 0 auto .9rem;
}
.section-heading p {
    font-size: .95rem;
    color: var(--dr-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* ── 8. SERVICE CARDS ───────────────────────────────────────── */
#services {
    padding: 5rem 0;
    background: var(--dr-bg);
}
.service-card {
    background: #fff;
    border-radius: var(--dr-radius);
    padding: 2rem 1.75rem;
    border: 1.5px solid var(--dr-border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    box-shadow: var(--dr-shadow-lg);
    border-color: rgba(27,63,106,.15);
    transform: translateY(-5px);
}
.service-icon-wrap {
    width: 64px; height: 64px;
    background: rgba(27,63,106,.08);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--dr-primary);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: var(--dr-primary);
    color: #fff;
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin-bottom: .6rem;
}
.service-card p {
    font-size: .85rem;
    color: var(--dr-muted);
    flex: 1;
    margin-bottom: 1.25rem;
}
.btn-service {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--dr-primary);
    border: 1.5px solid var(--dr-primary);
    border-radius: 50px;
    padding: .4rem 1.1rem;
    align-self: flex-start;
    transition: var(--transition);
}
.btn-service:hover {
    background: var(--dr-primary);
    color: #fff;
}

/* ── 9. WHY US CARDS ────────────────────────────────────────── */
#whyUs {
    padding: 5rem 0;
    background: #fff;
}
.why-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    background: var(--dr-bg);
    border-radius: var(--dr-radius);
    border: 1.5px solid var(--dr-border);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover {
    border-color: rgba(27,63,106,.18);
    box-shadow: var(--dr-shadow);
    background: #fff;
}
.why-icon {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
}
.why-icon.navy  { background: rgba(27,63,106,.1);  color: var(--dr-primary); }
.why-icon.green { background: rgba(42,125,79,.1);  color: var(--dr-green);   }
.why-icon.gold  { background: rgba(201,149,106,.12); color: var(--dr-accent); }
.why-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin-bottom: .35rem;
}
.why-card p {
    font-size: .83rem;
    color: var(--dr-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── 10. DOCTOR SECTION ─────────────────────────────────────── */
#doctor {
    padding: 5rem 0;
    background: var(--dr-bg);
}
.doctor-photo-wrap {
    position: relative;
}
.doctor-photo-placeholder {
    width: 100%;
    padding-top: 115%;
    border-radius: var(--dr-radius);
    background: linear-gradient(145deg, #d6e4f0 0%, #b8cfe4 100%);
    position: relative;
    overflow: hidden;
}
.doctor-photo-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--dr-radius);
}
.doctor-photo-placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 1.5rem;
}
.doctor-exp-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--dr-primary);
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: var(--dr-shadow);
    z-index: 2;
}
.doctor-exp-badge .exp-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.doctor-exp-badge .exp-label {
    font-size: .7rem;
    font-weight: 500;
    opacity: .85;
}

.doctor-info {
    padding-left: 1.5rem;
}
.doctor-tag {
    display: inline-block;
    background: rgba(201,149,106,.15);
    color: var(--dr-accent);
    border-radius: 50px;
    padding: .25rem .9rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .9rem;
}
.doctor-info h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: var(--dr-primary);
    margin-bottom: .3rem;
}
.doctor-title {
    font-size: .92rem;
    color: var(--dr-accent);
    font-weight: 600;
    margin-bottom: 1rem;
}
.doctor-desc {
    font-size: .9rem;
    color: var(--dr-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.doctor-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--dr-radius-sm);
    border: 1.5px solid var(--dr-border);
}
.stat-item { text-align: center; }
.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dr-primary);
    line-height: 1;
}
.stat-label {
    font-size: .7rem;
    color: var(--dr-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.stat-divider {
    width: 1px;
    background: var(--dr-border);
    align-self: stretch;
}

/* ── 11. CTA BAND ───────────────────────────────────────────── */
#ctaBand {
    background: linear-gradient(135deg, var(--dr-primary-dark) 0%, var(--dr-primary) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
#ctaBand::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    top: -100px; right: -100px;
    pointer-events: none;
}
.cta-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}
.cta-sub {
    font-size: .92rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 0;
}
.btn-cta-tel {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 50px;
    padding: .75rem 1.75rem;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
}
.btn-cta-tel:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}
.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    background: var(--dr-green);
    border: 2px solid var(--dr-green);
    border-radius: 50px;
    padding: .75rem 1.75rem;
    font-weight: 700;
    font-size: .9rem;
    transition: var(--transition);
}
.btn-cta-wa:hover {
    background: var(--dr-green-dark);
    border-color: var(--dr-green-dark);
    color: #fff;
}

/* ── 12. FAQ SECTION ────────────────────────────────────────── */
#faq {
    padding: 5rem 0;
    background: var(--dr-bg);
}
.dr-accordion .accordion-item {
    border: 1.5px solid var(--dr-border);
    border-radius: var(--dr-radius-sm) !important;
    margin-bottom: .75rem;
    overflow: hidden;
}
.dr-accordion .accordion-button {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dr-primary);
    background: #fff;
    padding: 1.1rem 1.4rem;
}
.dr-accordion .accordion-button:not(.collapsed) {
    color: var(--dr-primary);
    background: rgba(27,63,106,.04);
    box-shadow: none;
}
.dr-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231B3F6A'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.dr-accordion .accordion-body {
    font-size: .86rem;
    color: var(--dr-muted);
    line-height: 1.8;
    padding: 1rem 1.4rem 1.2rem;
    background: #fff;
}

/* ── 13. FOOTER ─────────────────────────────────────────────── */
#drFooter {
    background: var(--dr-primary-dark);
    color: rgba(255,255,255,.8);
    padding: 4rem 0 0;
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-desc {
    font-size: .82rem;
    line-height: 1.75;
    color: rgba(255,255,255,.65);
    margin-bottom: 1.25rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    margin-right: .4rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--dr-accent);
    color: #fff;
}

.footer-heading {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dr-accent);
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    font-size: .82rem;
    color: rgba(255,255,255,.65);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.footer-links a::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--dr-accent);
    flex-shrink: 0;
    opacity: .7;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact-item {
    display: flex;
    gap: .9rem;
    margin-bottom: .9rem;
    align-items: flex-start;
}
.footer-contact-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    background: rgba(255,255,255,.08);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    color: var(--dr-accent);
    margin-top: 2px;
}
.footer-contact-text {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    line-height: 1.5;
}
.footer-contact-text a {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    display: block;
}
.footer-contact-text a:hover { color: var(--dr-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 3rem;
    padding: 1.25rem 0;
}
.footer-bottom p {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    margin: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,.55);
    transition: var(--transition);
}
.footer-bottom a:hover { color: var(--dr-accent); }

/* ── 14. WHATSAPP FLOAT ─────────────────────────────────────── */




    50%  { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
}


/* ── 15. BACK TO TOP ────────────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 16px;
    width: 42px; height: 42px;
    background: var(--dr-primary);
    color: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(27,63,106,.3);
}
#backToTop.visible {
    opacity: 1;
    pointer-events: auto;
}
#backToTop:hover {
    background: var(--dr-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ── 16. PAGE HEADER (inner pages) ─────────────────────────── */
.dr-page-header {
    background: linear-gradient(135deg, var(--dr-primary-dark) 0%, var(--dr-primary) 100%);
    padding: 5rem 0 3.5rem;
    margin-top: 70px;
}
.dr-page-header h1 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: .5rem;
}
.dr-breadcrumb .breadcrumb-item,
.dr-breadcrumb .breadcrumb-item a {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
}
.dr-breadcrumb .breadcrumb-item.active { color: var(--dr-accent); }
.dr-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── 17. ALERT OVERRIDES ────────────────────────────────────── */
.alert-success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; border-radius: var(--dr-radius-sm); }
.alert-danger  { background: #fef2f2; border-color: #fca5a5; color: #991b1b; border-radius: var(--dr-radius-sm); }

/* ── 18. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    #hero { padding-top: 70px; padding-bottom: 3rem; }

    .hero-left { text-align: center; margin-bottom: 2.5rem; }
    .hero-lead { margin-left: auto; margin-right: auto; }
    .trust-badges { justify-content: center; }
    .hero-actions { justify-content: center; }

    .doctor-info { padding-left: 0; margin-top: 2rem; }
    .doctor-exp-badge { bottom: .5rem; right: .5rem; }

    #ctaBand { text-align: center; }
    #ctaBand .cta-btns { justify-content: center !important; }
}

@media (max-width: 767.98px) {
    .dr-navbar-actions .dr-btn-tel { display: none; }

    .trust-item { margin-bottom: 1.5rem; }

    .doctor-stats { justify-content: center; gap: 1rem; }
    .stat-divider { display: none; }

    .footer-col { margin-bottom: 2.5rem; }

    
    #backToTop { bottom: 82px; right: 16px; }
}

@media (max-width: 575.98px) {
    .hero-form-card { padding: 1.5rem 1.25rem; }
    .btn-hero-tel, .btn-hero-wa { padding: .6rem 1.2rem; font-size: .82rem; }
}

/* ── 19. UTILITY OVERRIDES ──────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.bg-dr-light { background: var(--dr-bg); }
.text-dr-primary { color: var(--dr-primary); }
.text-dr-accent  { color: var(--dr-accent); }
.text-dr-muted   { color: var(--dr-muted); }

/* ── 20. STICKY SIDE MENU ───────────────────────────────────── */
.dr-sticky-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.dr-sticky-item {
    position: relative;
    cursor: pointer;
}
.dr-sticky-icon {
    width: 52px;
    height: 52px;
    background: var(--dr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    transition: background .25s;
}
.dr-sticky-item:first-child .dr-sticky-icon { border-radius: 8px 0 0 0; }
.dr-sticky-item:last-child  .dr-sticky-icon { border-radius: 0; }
.dr-sticky-item.has-label:last-of-type .dr-sticky-icon { border-radius: 0 0 0 0; }
.dr-sticky-item.dr-sticky-form-trigger .dr-sticky-icon {
    background: var(--dr-green);
    height: 150px;
    border-radius: 0 0 0 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.dr-sticky-item.dr-sticky-form-trigger .dr-sticky-icon:hover { background: var(--dr-primary); }
.dr-sticky-label {
    position: absolute;
    right: 52px;
    top: 0;
    height: 52px;
    background: var(--dr-primary);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 6px 0 0 6px;
    white-space: nowrap;
    font-size: .75rem;
    font-weight: 600;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1;
}
.dr-sticky-label a {
    color: #fff;
    text-decoration: none;
}
.dr-sticky-item:not(.dr-sticky-form-trigger):hover .dr-sticky-icon { background: var(--dr-accent); }
.dr-sticky-item:not(.dr-sticky-form-trigger):hover .dr-sticky-label {
    transform: translateX(0);
    background: var(--dr-accent);
}
/* Form panel */
.dr-form-panel {
    position: fixed;
    right: -420px;
    top: 0;
    width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0,0,0,.15);
    transition: right .4s ease;
    z-index: 10000;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}
.dr-form-panel.open { right: 0; }
.dr-form-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.dr-form-panel-header h4 { margin: 0; color: var(--dr-primary); }
.dr-form-panel-close {
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    background: none;
    border: none;
    padding: 4px 8px;
}
.dr-form-panel-close:hover { color: var(--dr-primary); }
@media (max-width: 575.98px) {
    .dr-sticky-menu { display: none; }
    .dr-form-panel { width: 100%; right: -100%; }
    .dr-form-panel.open { right: 0; }
}

/* ── 21. SERVICE DETAIL PAGE ────────────────────────────────── */
/* Page Hero */
.dr-page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    overflow: hidden;
    padding-top: 80px;
}
.dr-page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.dr-page-hero-bg-default {
    background: linear-gradient(135deg, var(--dr-primary-dark) 0%, var(--dr-primary) 100%);
}
.dr-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(18,42,72,.92) 0%, rgba(18,42,72,.65) 60%, rgba(0,0,0,.35) 100%);
}
.dr-page-hero-content {
    position: relative;
    z-index: 2;
}
.dr-breadcrumb { margin: 0 0 .75rem; padding: 0; }
.dr-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .8rem; }
.dr-breadcrumb .breadcrumb-item a:hover { color: var(--dr-accent); }
.dr-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); font-size: .8rem; }
.dr-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.4); }
.dr-page-hero-title {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 .5rem;
    line-height: 1.2;
}
.dr-page-hero-lead {
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    margin: 0;
    max-width: 640px;
}

/* Article content */
.dr-article h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin: 0 0 1rem;
}
.dr-article h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin: 1.5rem 0 .6rem;
}
.dr-article p { color: #444; line-height: 1.8; margin-bottom: 1rem; }
.dr-article ul { color: #444; line-height: 1.8; padding-left: 1.4rem; margin-bottom: 1rem; }
.dr-article ul li { margin-bottom: .35rem; }
.dr-article strong { color: var(--dr-primary); }

/* Trust strips */
.dr-trust-strips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}
.dr-trust-strip {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--dr-bg);
    border: 1px solid #e5e7f0;
    border-radius: var(--dr-radius-sm);
    padding: .85rem 1rem;
}
.dr-trust-strip i {
    font-size: 1.3rem;
    color: var(--dr-accent);
    flex-shrink: 0;
}
.dr-trust-strip strong {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--dr-primary);
}
.dr-trust-strip span { font-size: .72rem; color: #666; }

/* Sidebar card */
.dr-sidebar-card {
    border: 1px solid #e0e4ef;
    border-radius: var(--dr-radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(27,63,106,.06);
}
.dr-sidebar-card-head {
    background: var(--dr-primary);
    color: #fff;
    padding: .9rem 1.25rem;
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.dr-sidebar-card-head i { color: var(--dr-accent); }
.dr-sidebar-card-body { padding: 1.25rem; }

/* Contact buttons */
.dr-contact-btn {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: var(--dr-primary);
    color: #fff;
    border-radius: var(--dr-radius-sm);
    padding: .75rem 1.1rem;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 600;
    transition: background .2s, transform .15s;
    width: 100%;
}
.dr-contact-btn i { font-size: 1.2rem; flex-shrink: 0; }
.dr-contact-btn span { line-height: 1.3; }
.dr-contact-btn small { font-size: .72rem; font-weight: 400; opacity: .85; }
.dr-contact-btn:hover { background: var(--dr-primary-dark); color: #fff; transform: translateX(-2px); }
.dr-contact-btn-wa { background: #25D366; }
.dr-contact-btn-wa:hover { background: #1DA851; }
.dr-contact-btn-map { background: #E14235; }
.dr-contact-btn-map:hover { background: #c0362a; }

/* Service list sidebar */
.dr-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dr-service-list li a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1.25rem;
    color: #444;
    text-decoration: none;
    font-size: .85rem;
    border-bottom: 1px solid #f0f2f8;
    transition: background .15s, color .15s;
}
.dr-service-list li a i { font-size: .65rem; color: var(--dr-accent); transition: transform .15s; }
.dr-service-list li a:hover { background: var(--dr-bg); color: var(--dr-primary); }
.dr-service-list li a:hover i { transform: translateX(3px); }
.dr-service-list li.active a { background: var(--dr-primary); color: #fff; font-weight: 600; }
.dr-service-list li.active a i { color: var(--dr-accent); }
.dr-service-list li:last-child a { border-bottom: none; }

/* Section label */
.dr-section-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dr-primary);
    letter-spacing: .03em;
    text-transform: uppercase;
}

@media (max-width: 575.98px) {
    .dr-trust-strips { grid-template-columns: 1fr; }
    .dr-page-hero { min-height: 240px; }
}

/* ── 22. CONTACT PAGE ───────────────────────────────────────── */
.dr-contact-info-list { display: flex; flex-direction: column; gap: 1rem; }
.dr-ci-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}
.dr-ci-item > i {
    font-size: 1rem;
    color: var(--dr-primary);
    margin-top: .15rem;
    width: 20px;
    flex-shrink: 0;
}
.dr-ci-item strong {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--dr-muted);
    margin-bottom: .15rem;
}
.dr-ci-item span, .dr-ci-item a {
    font-size: .88rem;
    color: var(--dr-text);
    line-height: 1.5;
    text-decoration: none;
}
.dr-ci-item a:hover { color: var(--dr-primary); }
.dr-ci-item i.fa-whatsapp { color: #25D366; }

/* ── 23. BLOG CARDS ─────────────────────────────────────────── */
.dr-blog-card {
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius);
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.dr-blog-card:hover {
    box-shadow: var(--dr-shadow-lg);
    transform: translateY(-3px);
}
.dr-blog-card-img-wrap {
    display: block;
    overflow: hidden;
    height: 210px;
    background: var(--dr-bg);
}
.dr-blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.dr-blog-card:hover .dr-blog-card-img-wrap img { transform: scale(1.04); }
.dr-blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dr-accent);
    font-size: 2.5rem;
    opacity: .4;
}
.dr-blog-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dr-blog-date {
    font-size: .72rem;
    color: var(--dr-muted);
    display: flex;
    align-items: center;
    gap: .35rem;
    margin-bottom: .6rem;
}
.dr-blog-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: .6rem;
}
.dr-blog-title a { color: var(--dr-primary); text-decoration: none; }
.dr-blog-title a:hover { color: var(--dr-accent); }
.dr-blog-excerpt {
    font-size: .84rem;
    color: var(--dr-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: .9rem;
}
.dr-blog-read-more {
    font-size: .8rem;
    font-weight: 700;
    color: var(--dr-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: gap .2s, color .2s;
}
.dr-blog-read-more:hover { color: var(--dr-accent); gap: .65rem; }

/* ── Content Page Extras ───────────────────────────────── */
.dr-lead-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5a3a4a;
    font-weight: 500;
    border-left: 3px solid var(--dr-accent);
    padding-left: 1.1rem;
    margin-bottom: 1.5rem;
}
.dr-gallery-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.dr-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.dr-gallery-item:hover img { transform: scale(1.06); }

/* ── Doctor photo wrap ──────────────────────────────────── */
.dr-doctor-photo-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(140,47,90,.18);
    margin-bottom: .25rem;
}
.dr-doctor-photo-wrap img {
    width: 100%;
    display: block;
}
.dr-doctor-badge {
    background: var(--dr-primary);
    color: #fff;
    padding: .85rem 1.25rem;
    text-align: center;
}
.dr-doctor-badge strong {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
}
.dr-doctor-badge span {
    font-size: .78rem;
    color: rgba(255,255,255,.8);
}

/* ── Stat boxes ─────────────────────────────────────────── */
.dr-stat-box {
    background: #fff;
    border: 1px solid #f0dde7;
    border-radius: 14px;
    padding: 1.4rem 1rem;
    text-align: center;
    box-shadow: 0 3px 14px rgba(140,47,90,.07);
    height: 100%;
}
.dr-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--dr-primary);
    line-height: 1.1;
    margin-bottom: .2rem;
}
.dr-stat-label {
    display: block;
    font-size: .75rem;
    color: var(--dr-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.4;
}
.dr-stat-box i {
    font-size: 1.5rem;
    color: var(--dr-accent);
    margin-bottom: .4rem;
}

/* ── Value cards ────────────────────────────────────────── */
.dr-value-card {
    background: #fff;
    border: 1px solid #f0dde7;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: transform .22s ease, box-shadow .22s ease;
    box-shadow: 0 2px 10px rgba(140,47,90,.05);
}
.dr-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(140,47,90,.14);
}
.dr-value-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(232,127,163,.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.dr-value-card-icon i {
    font-size: 1.25rem;
    color: var(--dr-primary);
}
.dr-value-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin-bottom: .45rem;
}
.dr-value-card p {
    font-size: .82rem;
    color: var(--dr-muted);
    margin: 0;
    line-height: 1.65;
}

/* ── Section label heading ──────────────────────────────── */
.dr-section-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dr-primary);
    padding-bottom: .55rem;
    border-bottom: 2px solid var(--dr-accent);
    display: inline-block;
    margin-bottom: 0;
}

/* ── Service feature cards (Tedavi Seçenekleri) ─────────── */
.dr-service-feature-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #f0dde7;
    border-radius: 14px;
    padding: 1.25rem;
    height: 100%;
    transition: transform .22s ease, box-shadow .22s ease;
    box-shadow: 0 2px 10px rgba(140,47,90,.05);
}
.dr-service-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(140,47,90,.13);
}
.dr-service-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(232,127,163,.14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dr-service-feature-icon i {
    font-size: 1.2rem;
    color: var(--dr-primary);
}
.dr-service-feature-body h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin: 0 0 .35rem;
}
.dr-service-feature-body p {
    font-size: .8rem;
    color: var(--dr-muted);
    margin: 0 0 .6rem;
    line-height: 1.55;
}
.dr-service-feature-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--dr-accent);
    text-decoration: none;
}
.dr-service-feature-link:hover { color: var(--dr-primary); }

/* ── intl-tel-input Bootstrap uyumu ─────────────────────── */
.iti { width: 100%; }
.iti--separate-dial-code .iti__selected-flag {
    background: rgba(140,47,90,.04);
    border-right: 1px solid #dee2e6;
    border-radius: var(--dr-radius) 0 0 var(--dr-radius);
}
.iti--separate-dial-code .iti__selected-flag:hover { background: rgba(140,47,90,.08); }
.iti__country-list {
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    border: 1px solid #e0e4ef;
    font-size: .84rem;
    max-height: 260px;
}
.iti__country-list .iti__country.iti__highlight { background: rgba(140,47,90,.06); }
.iti__country-list .iti__country-name { font-size: .82rem; }
.iti__dial-code { color: var(--dr-primary); font-weight: 600; }
/* Hata gösterimi */
.dr-tel-input.is-invalid { border-color: #dc3545; }

/* ═══════════════════════════════════════════════════════════════════════
   KÜRTAJ SAYFASI
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Açıklama kutusu ────────────────────────────────────────────────── */
.dr-kurtaj-intro {
    background: linear-gradient(135deg, #fdf5f9 0%, #fff 100%);
    border: 1px solid #edd5e6;
    border-radius: 14px;
    padding: 1.8rem 2rem;
}
.dr-kurtaj-intro h2 { font-size: 1.3rem; color: var(--dr-primary); font-weight: 700; margin-bottom: .8rem; }
.dr-kurtaj-intro h3 { font-size: 1.05rem; color: #444; font-weight: 700; margin-top: 1.2rem; margin-bottom: .5rem; }
.dr-kurtaj-intro ul { padding-left: 1.2rem; margin-bottom: 0; }
.dr-kurtaj-intro ul li { font-size: .9rem; color: #555; margin-bottom: .3rem; }
.dr-kurtaj-intro p  { font-size: .92rem; color: #555; margin-bottom: .5rem; }
.dr-kurtaj-intro p:last-child { margin-bottom: 0; }

/* ── Neden Biz bar ──────────────────────────────────────────────────── */
.dr-why-bar {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}
.dr-why-item {
    flex: 1 1 0;
    min-width: 80px;
    background: var(--dr-primary);
    color: #fff;
    border-radius: 12px;
    padding: 1rem .5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
.dr-why-item i    { font-size: 1.5rem; opacity: .9; }
.dr-why-item span { font-size: .72rem; font-weight: 600; line-height: 1.35; }

/* ── Timeline ───────────────────────────────────────────────────────── */
.dr-timeline { position: relative; padding-left: 2rem; }
.dr-timeline::before {
    content: '';
    position: absolute;
    left: .95rem;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--dr-primary), var(--dr-accent));
    border-radius: 2px;
}
.dr-timeline-item {
    position: relative;
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
}
.dr-timeline-item:last-child { margin-bottom: 0; }
.dr-timeline-dot {
    flex-shrink: 0;
    width: 2.2rem; height: 2.2rem;
    border-radius: 50%;
    background: var(--dr-primary);
    color: #fff;
    font-weight: 700; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    left: -2.95rem;
    z-index: 1;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(140,47,90,.2);
    margin-right: -.9rem;
}
.dr-timeline-card {
    background: #fff;
    border: 1px solid #edd5e6;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    flex: 1;
    transition: box-shadow .2s, border-color .2s;
}
.dr-timeline-card:hover {
    border-color: var(--dr-primary);
    box-shadow: 0 4px 20px rgba(140,47,90,.1);
}
.dr-timeline-card h5 { font-size: .92rem; font-weight: 700; color: var(--dr-primary); margin-bottom: .35rem; }
.dr-timeline-card p  { font-size: .85rem; color: #666; margin: 0; line-height: 1.6; }

/* ── Check Cards ────────────────────────────────────────────────────── */
.dr-check-card { border-radius: 12px; overflow: hidden; border: 1px solid #ddd; height: 100%; }
.dr-check-card-head {
    padding: .65rem 1rem;
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
}
.dr-check-card-ok   .dr-check-card-head { background: var(--dr-primary); }
.dr-check-card-warn .dr-check-card-head { background: #c87a1a; }
.dr-check-card ul { list-style: none; padding: .8rem 1rem; margin: 0; background: #fafafa; }
.dr-check-card ul li {
    font-size: .86rem;
    color: #555;
    padding: .4rem 0 .4rem 1.5rem;
    border-bottom: 1px solid #eee;
    position: relative;
}
.dr-check-card ul li:last-child { border-bottom: 0; }
.dr-check-card-ok   ul li::before { content: '✓'; position: absolute; left: 0; color: var(--dr-primary); font-weight: 700; }
.dr-check-card-warn ul li::before { content: '✕'; position: absolute; left: 0; color: #c87a1a; font-weight: 700; }

/* ── FAQ Accordion ──────────────────────────────────────────────────── */
.dr-faq .accordion-item {
    border: 1px solid #edd5e6;
    border-radius: 10px !important;
    overflow: hidden;
    margin-bottom: .5rem;
}
.dr-faq .accordion-button {
    font-size: .88rem;
    font-weight: 600;
    color: #333;
    background: #fdf7fa;
    padding: .9rem 1.1rem;
}
.dr-faq .accordion-button:not(.collapsed) {
    background: var(--dr-primary);
    color: #fff;
    box-shadow: none;
}
.dr-faq .accordion-button:not(.collapsed)::after { filter: brightness(10); }
.dr-faq .accordion-body {
    font-size: .87rem;
    color: #555;
    line-height: 1.7;
    background: #fff;
    border-top: 1px solid #f0e0ea;
}

/* ── Sidebar Sticky ─────────────────────────────────────────────────── */
.dr-sidebar-sticky { position: sticky; top: 100px; }

/* ── Quick Stats ────────────────────────────────────────────────────── */
.dr-quick-stats {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.dr-quick-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--dr-primary) 0%, #b84080 100%);
    border-radius: 12px;
    padding: .85rem 1.1rem;
    color: #fff;
}
.dr-quick-stat-icon {
    font-size: 1.4rem;
    width: 2.4rem;
    text-align: center;
    opacity: .9;
    flex-shrink: 0;
}
.dr-quick-stat-val  { font-size: 1.05rem; font-weight: 800; line-height: 1.1; }
.dr-quick-stat-lbl  { font-size: .72rem; opacity: .85; margin-top: .1rem; }

/* ── Legal Note ─────────────────────────────────────────────────────── */
.dr-legal-note {
    background: #fdf5f9;
    border-left: 4px solid var(--dr-primary);
    border-radius: 0 10px 10px 0;
    padding: .9rem 1rem;
    font-size: .82rem;
    color: #555;
    line-height: 1.6;
}

/* ── Info Badge (eski, geriye dönük uyum) ───────────────────────────── */
.dr-info-badge { border:2px solid var(--dr-primary); border-radius:var(--dr-radius); padding:.8rem .4rem; text-align:center; background:#fff; }
.dr-info-badge-icon { font-size:1.4rem; color:var(--dr-primary); margin-bottom:.3rem; }
.dr-info-badge-label { font-size:.72rem; font-weight:700; color:#444; line-height:1.3; }

@media(max-width:767px){
    .dr-why-bar { gap:.4rem; }
    .dr-why-item { min-width: 60px; padding: .7rem .3rem; }
    .dr-why-item i { font-size:1.2rem; }
    .dr-sidebar-sticky { position:static; }
    .dr-timeline { padding-left:1.6rem; }
    .dr-timeline-dot { left:-2.55rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   HOME PAGE — VISUAL REFRESH
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Trust Bar ──────────────────────────────────────────────────────── */
#trustBar {
    background: linear-gradient(135deg, var(--dr-primary) 0%, #b84080 100%);
    border-top: none;
    border-bottom: none;
    padding: 2.5rem 0;
}
.trust-icon {
    width: 60px; height: 60px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    border: 2px solid rgba(255,255,255,.25);
}
.trust-item:hover .trust-icon {
    background: rgba(255,255,255,.28);
    transform: translateY(-4px);
}
.trust-item-title { color: #fff; font-size: 1.1rem; }
.trust-item-sub   { color: rgba(255,255,255,.75); }
.trust-item + .trust-item {
    border-left: 1px solid rgba(255,255,255,.2);
}

/* ── Section Heading badge → pink ───────────────────────────────────── */
.section-heading .section-badge {
    background: rgba(140,47,90,.1);
    color: var(--dr-primary);
}
.section-heading .section-line {
    background: linear-gradient(90deg, var(--dr-primary), var(--dr-accent));
    width: 64px; height: 4px;
}

/* ── Service Cards ──────────────────────────────────────────────────── */
#services { background: var(--dr-bg); }
.service-card {
    border-top: 4px solid transparent;
    border-radius: 0 0 var(--dr-radius) var(--dr-radius);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dr-primary), var(--dr-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: 0 12px 40px rgba(140,47,90,.14); transform: translateY(-6px); }
.service-icon-wrap {
    background: rgba(140,47,90,.08);
    color: var(--dr-primary);
    width: 68px; height: 68px;
    font-size: 1.7rem;
    border-radius: 18px;
}
.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--dr-primary), #b84080);
    color: #fff;
    box-shadow: 0 6px 20px rgba(140,47,90,.3);
}
.service-card h3 { font-size: 1rem; }
.btn-service {
    border-color: var(--dr-primary);
    color: var(--dr-primary);
    font-size: .78rem;
    letter-spacing: .03em;
}
.btn-service:hover { background: var(--dr-primary); color: #fff; }

/* ── Why Us Cards ───────────────────────────────────────────────────── */
#whyUs { background: #fff; }
.why-card {
    flex-direction: column;
    gap: 1rem;
    border: none;
    background: var(--dr-bg);
    border-radius: var(--dr-radius);
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--dr-radius);
    border: 1.5px solid transparent;
    transition: border-color .3s;
    pointer-events: none;
}
.why-card:hover::after { border-color: var(--dr-primary); }
.why-card:hover { background: #fff; box-shadow: 0 8px 32px rgba(140,47,90,.12); transform: translateY(-4px); }
.why-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    font-size: 1.6rem;
    margin: 0 auto;
}
.why-icon.navy  { background: linear-gradient(135deg, var(--dr-primary), #b84080); color: #fff; }
.why-icon.green { background: linear-gradient(135deg, #2A7D4F, #3aaa6e); color: #fff; }
.why-icon.gold  { background: linear-gradient(135deg, #c07a30, #e09040); color: #fff; }
.why-card h4 { font-size: 1rem; font-weight: 700; text-align: center; }
.why-card p  { font-size: .84rem; text-align: center; }

/* ── Doctor Section ─────────────────────────────────────────────────── */
#doctor { background: var(--dr-bg); }
.doctor-photo-placeholder {
    background: linear-gradient(145deg, #f5dce9 0%, #e8b8d0 100%);
    border-radius: 20px;
    box-shadow: 0 16px 60px rgba(140,47,90,.18);
}
.doctor-photo-placeholder img { object-position: center top; border-radius: 20px; }
.doctor-exp-badge {
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dr-primary), #b84080);
    box-shadow: 0 8px 24px rgba(140,47,90,.35);
    bottom: -1rem; right: -1rem;
}
.doctor-tag {
    background: rgba(140,47,90,.12);
    color: var(--dr-primary);
    font-weight: 700;
    letter-spacing: .08em;
}
.doctor-stats {
    background: linear-gradient(135deg, var(--dr-primary) 0%, #b84080 100%);
    border: none;
    border-radius: var(--dr-radius);
    padding: 1.5rem;
    gap: 0;
}
.stat-item { flex: 1; }
.stat-num  { font-size: 1.7rem; font-weight: 800; color: #fff; }
.stat-label { color: rgba(255,255,255,.75); font-size: .68rem; letter-spacing: .08em; }
.stat-divider { background: rgba(255,255,255,.2); }

/* ── Specialty Tags (doctor) ────────────────────────────────────────── */
.dr-specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.25rem;
}
.dr-specialty-tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(140,47,90,.08);
    color: var(--dr-primary);
    border-radius: 50px;
    padding: .28rem .85rem;
    font-size: .75rem;
    font-weight: 600;
    border: 1px solid rgba(140,47,90,.2);
    transition: var(--transition);
}
.dr-specialty-tag:hover { background: var(--dr-primary); color: #fff; }
.dr-specialty-tag i { font-size: .7rem; }

/* ── CTA Band ───────────────────────────────────────────────────────── */
#ctaBand {
    background: linear-gradient(135deg, #6B2245 0%, var(--dr-primary) 50%, #b84080 100%);
    padding: 5rem 0;
}
#ctaBand::before {
    width: 500px; height: 500px;
    background: rgba(255,255,255,.05);
    top: -150px; right: -150px;
}
#ctaBand::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    bottom: -100px; left: -100px;
    pointer-events: none;
}
.cta-title { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }

/* ── FAQ ────────────────────────────────────────────────────────────── */
#faq { background: #fff; }
.dr-accordion .accordion-item {
    border: 1.5px solid var(--dr-border);
    border-radius: 12px !important;
    margin-bottom: .65rem;
    overflow: hidden;
    transition: box-shadow .25s;
}
.dr-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: 0 4px 20px rgba(140,47,90,.1);
    border-color: rgba(140,47,90,.25);
}
.dr-accordion .accordion-button {
    font-size: .92rem;
    font-weight: 700;
    color: var(--dr-primary);
    background: #fff;
    padding: 1.15rem 1.4rem;
}
.dr-accordion .accordion-button:not(.collapsed) {
    background: rgba(140,47,90,.04);
    color: var(--dr-primary);
    box-shadow: none;
}
.dr-accordion .accordion-button::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: .7rem;
    color: var(--dr-accent);
    font-size: .85rem;
}
.dr-accordion .accordion-body {
    font-size: .88rem;
    line-height: 1.75;
    color: #666;
    background: rgba(140,47,90,.02);
    border-top: 1px solid var(--dr-border);
    padding: 1rem 1.4rem;
}

@media(max-width:767px){
    .trust-item + .trust-item { border-left: none; border-top: 1px solid rgba(255,255,255,.2); }
    .why-card { flex-direction: column; }
    .doctor-info { padding-left: 0; }
}

/* ── Why card number badge ──────────────────────────────────────────── */
.dr-why-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(140,47,90,.1);
    line-height: 1;
    margin-bottom: -.3rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -.02em;
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO — DOCTOR PHOTO
   ═══════════════════════════════════════════════════════════════════════ */
.hero-dr-col { align-self: flex-end; }
.hero-dr-photo {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}
.hero-dr-photo img {
    width: 100%;
    height: 68vh;
    max-height: 560px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 20px 20px 0 0;
    filter: drop-shadow(0 -6px 30px rgba(0,0,0,.35));
}
.hero-dr-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(to top, rgba(140,47,90,.25) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT (TEDAVİ SEÇENEKLERİ) DETAY SAYFASI
   ═══════════════════════════════════════════════════════════════════════ */

/* Lead box */
.pd-lead-box {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(135deg, var(--dr-accent-light) 0%, #fff 100%);
    border: 1px solid var(--dr-border);
    border-left: 4px solid var(--dr-primary);
    border-radius: 0 var(--dr-radius) var(--dr-radius) 0;
    padding: 1.25rem 1.5rem;
}
.pd-lead-box p { margin: 0; font-size: .95rem; color: #444; line-height: 1.75; }
.pd-lead-icon  { font-size: 1.3rem; color: var(--dr-primary); flex-shrink: 0; margin-top: .1rem; }

/* Article polish */
.dr-article { line-height: 1.85; }
.dr-article h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dr-primary);
    margin: 2rem 0 .75rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--dr-border);
}
.dr-article h2:first-child { margin-top: 0; }
.dr-article h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin: 1.5rem 0 .5rem;
}
.dr-article ul { padding-left: 0; list-style: none; }
.dr-article ul li {
    padding: .3rem 0 .3rem 1.5rem;
    position: relative;
    color: #555;
    font-size: .92rem;
}
.dr-article ul li::before {
    content: '';
    position: absolute;
    left: 0; top: .7rem;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--dr-primary);
}
.dr-article strong { color: var(--dr-primary); }
.dr-article a { color: var(--dr-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Gallery */
.pd-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
}
.pd-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.pd-gallery-item:hover img { transform: scale(1.07); }

/* Trust grid */
.pd-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.pd-trust-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: linear-gradient(135deg, var(--dr-accent-light) 0%, #fff 100%);
    border: 1px solid var(--dr-border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    transition: var(--transition);
}
.pd-trust-item:hover { border-color: var(--dr-primary); box-shadow: 0 4px 16px rgba(140,47,90,.1); }
.pd-trust-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dr-primary), #b84080);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.pd-trust-item strong { display: block; font-size: .85rem; color: var(--dr-primary); font-weight: 700; }
.pd-trust-item span  { font-size: .75rem; color: #777; }

/* Sidebar sticky */
.pd-sidebar-sticky { position: sticky; top: 100px; }

/* Doctor mini card */
.pd-doctor-card {
    background: linear-gradient(135deg, var(--dr-primary) 0%, #b84080 100%);
    border-radius: var(--dr-radius);
    padding: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}
.pd-doctor-photo {
    width: 64px; height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 3px solid rgba(255,255,255,.4);
    flex-shrink: 0;
}
.pd-doctor-name  { font-size: .88rem; font-weight: 700; line-height: 1.2; }
.pd-doctor-title { font-size: .72rem; opacity: .85; margin: .2rem 0 .4rem; }
.pd-doctor-exp   { font-size: .72rem; background: rgba(255,255,255,.18); border-radius: 50px; padding: .15rem .6rem; display: inline-block; }

@media(max-width:991px){
    .pd-trust-grid { grid-template-columns: 1fr 1fr; }
    .pd-sidebar-sticky { position: static; }
}
@media(max-width:575px){
    .pd-trust-grid { grid-template-columns: 1fr; }
}

/* ── Product Page: Service Nav Menu ─────────────────────────────── */
.pd-svc-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pd-svc-menu-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .6rem .9rem;
    text-decoration: none;
    color: #555;
    font-size: .88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,.06);
    transition: background .2s, color .2s;
}
.pd-svc-menu-item:last-child { border-bottom: none; }
.pd-svc-menu-item:hover {
    background: rgba(140,47,90,.06);
    color: var(--dr-primary);
}
.pd-svc-menu-item.active {
    background: linear-gradient(135deg,rgba(140,47,90,.10),rgba(232,127,163,.08));
    color: var(--dr-primary);
    font-weight: 600;
}
.pd-svc-menu-icon {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(140,47,90,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--dr-primary);
    flex-shrink: 0;
    transition: background .2s;
}
.pd-svc-menu-item.active .pd-svc-menu-icon {
    background: var(--dr-primary);
    color: #fff;
}
.pd-svc-menu-label { flex: 1; }
.pd-svc-menu-arrow {
    font-size: .65rem;
    color: var(--dr-primary);
    opacity: .7;
}

/* ── Contact Page: Info Cards ───────────────────────────────────── */
.dr-cinfo-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius);
    padding: 1rem 1.1rem;
    margin-bottom: .65rem;
    box-shadow: 0 1px 4px rgba(140,47,90,.06);
    transition: box-shadow .2s, transform .2s;
}
.dr-cinfo-card:hover {
    box-shadow: 0 4px 14px rgba(140,47,90,.13);
    transform: translateY(-1px);
}
.dr-cinfo-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.dr-cinfo-icon-addr  { background: rgba(140,47,90,.12); color: var(--dr-primary); }
.dr-cinfo-icon-tel   { background: rgba(37,99,235,.12);  color: #2563eb; }
.dr-cinfo-icon-wa    { background: rgba(37,211,102,.12); color: #25D366; }
.dr-cinfo-icon-mail  { background: rgba(249,115,22,.12); color: #f97316; }
.dr-cinfo-icon-clock { background: rgba(100,116,139,.12);color: #64748b; }
.dr-cinfo-body { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.dr-cinfo-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--dr-muted);
}
.dr-cinfo-val {
    font-size: .9rem;
    color: var(--dr-text);
    line-height: 1.5;
}
.dr-cinfo-link {
    text-decoration: none;
    color: var(--dr-text);
    font-weight: 600;
    transition: color .2s;
}
.dr-cinfo-link:hover { color: var(--dr-primary); }
.dr-cinfo-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    color: var(--dr-text);
    border-bottom: 1px dashed var(--dr-border);
    padding: .2rem 0;
}
.dr-cinfo-hours-row:last-child { border-bottom: none; }
.dr-cinfo-hours-row span:last-child { font-weight: 600; color: var(--dr-primary); }

/* ── Blog Detail Page ────────────────────────────────────────────── */
.bl-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}
.bl-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(140,47,90,.08);
    color: var(--dr-primary);
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 2rem;
    border: 1px solid rgba(140,47,90,.15);
}
.bl-cover-wrap {
    border-radius: var(--dr-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    aspect-ratio: 16/7;
}
.bl-cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bl-lead-box {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: linear-gradient(135deg,rgba(140,47,90,.06),rgba(232,127,163,.04));
    border-left: 3px solid var(--dr-primary);
    border-radius: 0 var(--dr-radius) var(--dr-radius) 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.75rem;
}
.bl-lead-icon {
    color: var(--dr-primary);
    font-size: 1.1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}
.bl-lead-box p {
    margin: 0;
    font-size: .95rem;
    color: var(--dr-text);
    line-height: 1.65;
}
.bl-article-body { margin-bottom: 2rem; }
.bl-gallery-item {
    display: block;
    border-radius: var(--dr-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.bl-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.bl-gallery-item:hover img { transform: scale(1.05); }

/* Share row */
.bl-share-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 1.1rem 0;
    border-top: 1px solid var(--dr-border);
    border-bottom: 1px solid var(--dr-border);
    margin: 1.5rem 0;
}
.bl-share-label { font-size: .82rem; font-weight: 600; color: var(--dr-muted); }
.bl-share-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .78rem;
    text-decoration: none;
    transition: transform .2s, opacity .2s;
}
.bl-share-btn:hover { transform: scale(1.12); opacity: .9; color: #fff; }
.bl-share-wa { background: #25D366; }
.bl-share-fb { background: #1877F2; }
.bl-share-tw { background: #000; }

/* Author card */
.bl-author-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    background: linear-gradient(135deg,rgba(140,47,90,.05),rgba(253,247,250,.8));
    border: 1px solid rgba(140,47,90,.12);
    border-radius: var(--dr-radius);
    padding: 1.25rem;
    margin-top: 2rem;
}
.bl-author-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--dr-primary);
    flex-shrink: 0;
}
.bl-author-name { font-weight: 700; color: var(--dr-primary); font-size: .95rem; }
.bl-author-title { font-size: .78rem; color: var(--dr-muted); margin-bottom: .4rem; }
.bl-author-bio { font-size: .82rem; color: var(--dr-text); line-height: 1.55; margin: 0; }

/* Sidebar sticky */
.bl-sidebar-sticky {
    position: sticky;
    top: 90px;
}

/* Other posts list in sidebar */
.bl-other-list { display: flex; flex-direction: column; }
.bl-other-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem .9rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
    text-decoration: none;
    transition: background .2s;
}
.bl-other-item:last-child { border-bottom: none; }
.bl-other-item:hover { background: rgba(140,47,90,.04); }
.bl-other-item img, .bl-other-ph {
    width: 56px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.bl-other-ph {
    background: rgba(140,47,90,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dr-primary);
    font-size: .9rem;
}
.bl-other-info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.bl-other-title {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dr-text);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bl-other-item:hover .bl-other-title { color: var(--dr-primary); }
.bl-other-date { font-size: .7rem; color: var(--dr-muted); }

/* Related mobile */
.bl-related-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem;
    background: #fff;
    border: 1px solid var(--dr-border);
    border-radius: var(--dr-radius);
    text-decoration: none;
    color: var(--dr-text);
    font-size: .85rem;
    font-weight: 500;
    transition: background .2s;
}
.bl-related-card:hover { background: rgba(140,47,90,.05); color: var(--dr-primary); }
.bl-related-card img, .bl-related-card-ph {
    width: 52px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

/* ══ Blog Listing Page (blg-) ════════════════════════════════════ */

/* Featured card */
.blg-featured { display: block; border-radius: var(--dr-radius); overflow: hidden; box-shadow: 0 4px 24px rgba(140,47,90,.12); transition: box-shadow .3s; }
.blg-featured:hover { box-shadow: 0 8px 36px rgba(140,47,90,.20); }
.blg-featured-img { position: relative; aspect-ratio: 16/7; overflow: hidden; background: var(--dr-primary); }
.blg-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
.blg-featured:hover .blg-featured-img img { transform: scale(1.03); }
.blg-featured-ph { width: 100%; height: 100%; background: linear-gradient(135deg, var(--dr-primary), var(--dr-accent)); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,.3); }
.blg-featured-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,0,10,.82) 0%, rgba(20,0,10,.35) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; }
.blg-featured-meta { display: flex; align-items: center; gap: .6rem; margin-bottom: .75rem; flex-wrap: wrap; }
.blg-featured-title { font-size: 1.55rem; font-weight: 800; color: #fff; line-height: 1.3; margin: 0 0 .6rem; }
.blg-featured-excerpt { color: rgba(255,255,255,.82); font-size: .9rem; line-height: 1.55; margin: 0 0 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blg-featured-cta { display: inline-flex; align-items: center; gap: .4rem; background: var(--dr-primary); color: #fff; font-size: .82rem; font-weight: 700; padding: .5rem 1.1rem; border-radius: 2rem; transition: background .2s; }
.blg-featured:hover .blg-featured-cta { background: var(--dr-accent); }

/* Badges & chips */
.blg-badge { background: var(--dr-primary); color: #fff; font-size: .68rem; font-weight: 700; padding: .25rem .7rem; border-radius: 2rem; letter-spacing: .05em; text-transform: uppercase; }
.blg-meta-chip-w { color: rgba(255,255,255,.85); font-size: .75rem; }
.blg-meta-chip { color: var(--dr-muted); font-size: .75rem; }

/* Grid cards */
.blg-card { background: #fff; border: 1px solid var(--dr-border); border-radius: var(--dr-radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.blg-card:hover { box-shadow: 0 6px 28px rgba(140,47,90,.13); transform: translateY(-3px); }
.blg-card-img-link { display: block; aspect-ratio: 3/2; overflow: hidden; }
.blg-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.blg-card:hover .blg-card-img-link img { transform: scale(1.05); }
.blg-card-ph { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(140,47,90,.12), rgba(232,127,163,.08)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--dr-accent); }
.blg-card-body { padding: 1.15rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.blg-card-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.blg-card-title { font-size: 1rem; font-weight: 700; color: var(--dr-text); line-height: 1.35; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blg-card-title a { color: inherit; text-decoration: none; transition: color .2s; }
.blg-card:hover .blg-card-title a { color: var(--dr-primary); }
.blg-card-excerpt { font-size: .82rem; color: var(--dr-muted); line-height: 1.55; margin: 0; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blg-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: .65rem; border-top: 1px solid var(--dr-border); margin-top: auto; }
.blg-card-date { font-size: .72rem; color: var(--dr-muted); }
.blg-card-more { font-size: .78rem; font-weight: 700; color: var(--dr-primary); text-decoration: none; display: flex; align-items: center; gap: .3rem; transition: gap .2s; }
.blg-card:hover .blg-card-more { gap: .5rem; }

/* Sidebar */
.blg-sidebar-sticky { position: sticky; top: 90px; }
.blg-doctor-card { background: linear-gradient(135deg, rgba(140,47,90,.07), rgba(253,247,250,.9)); border: 1px solid rgba(140,47,90,.12); border-radius: var(--dr-radius); padding: 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .75rem; }
.blg-doctor-photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--dr-primary); }
.blg-doctor-name { font-weight: 700; color: var(--dr-primary); font-size: .95rem; }
.blg-doctor-spec { font-size: .75rem; color: var(--dr-muted); margin-top: .1rem; }
.blg-doctor-exp { font-size: .78rem; font-weight: 600; color: var(--dr-text); background: rgba(140,47,90,.08); padding: .25rem .75rem; border-radius: 2rem; display: inline-block; margin-top: .3rem; }

@media(max-width:991px) {
    .blg-featured-title { font-size: 1.2rem; }
    .blg-featured-overlay { padding: 1.25rem; }
}

/* ── Hero Bio Card ───────────────────────────────────────────────── */
.hero-bio-col { padding-bottom: 3rem; }
.hero-bio-card {
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hero-bio-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-bottom: 2px solid rgba(255,255,255,.15);
}
.hero-bio-body {
    padding: 1.1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.hero-bio-name {
    font-size: .9rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}
.hero-bio-spec {
    font-size: .72rem;
    color: rgba(255,255,255,.65);
    margin-bottom: .15rem;
}
.hero-bio-text {
    font-size: .73rem;
    color: rgba(255,255,255,.82);
    line-height: 1.55;
    margin: 0;
}
.hero-bio-tags {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .25rem;
}
.hero-bio-tags span {
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    background: rgba(232,127,163,.35);
    border: 1px solid rgba(232,127,163,.5);
    padding: .2rem .6rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
}

/* ── Language Switcher ──────────────────────────────────── */
.dr-lang-switcher {
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-right: .6rem;
}
.dr-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all .2s;
    opacity: .55;
    overflow: hidden;
    padding: 0;
}
.dr-lang-btn:hover { opacity: 1; border-color: rgba(140,47,90,.4); }
.dr-lang-btn.active { opacity: 1; border-color: var(--dr-primary); box-shadow: 0 0 0 2px rgba(140,47,90,.18); }
.dr-flag-img { width: 30px; height: 30px; object-fit: cover; border-radius: 50%; display: block; }
.dr-flag-text { font-size: .72rem; font-weight: 700; color: var(--dr-dark); }

/* ── Navbar Social Icons ────────────────────────────────── */
.dr-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: .95rem;
    text-decoration: none;
    border: 1.5px solid rgba(140,47,90,.25);
    color: var(--dr-primary);
    background: transparent;
    transition: all .2s;
    flex-shrink: 0;
}
.dr-social-btn:hover { background: var(--dr-primary); color: #fff; border-color: var(--dr-primary); }
.dr-social-btn-wa { border-color: rgba(37,211,102,.4); color: #25d366; }
.dr-social-btn-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
@media (max-width:991px) {
    .dr-lang-switcher { margin-right: 0; margin-bottom: .4rem; }
}

/* ── Service Group Tiles (home page) ───────────────────── */
.service-group-tile {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.service-group-tile:hover { box-shadow: 0 8px 32px rgba(140,47,90,.13); transform: translateY(-3px); }
.sgt-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.sgt-icon-wrap {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sgt-icon-wrap i { font-size: 1.4rem; }
.sgt-title { font-size: 1.05rem; font-weight: 700; color: #1a1a2e; margin: 0; line-height: 1.3; }
.sgt-list { list-style: none; padding: 0; margin: 0 0 1.25rem; flex: 1; }
.sgt-list li { border-bottom: 1px solid #f5f0f8; }
.sgt-list li:last-child { border-bottom: none; }
.sgt-list li a {
    display: flex; align-items: center; gap: .5rem;
    padding: .5rem 0; color: #444; text-decoration: none;
    font-size: .88rem; transition: color .15s;
}
.sgt-list li a:hover { color: var(--dr-primary); }
.sgt-list li a i { font-size: .6rem; color: var(--dr-accent); flex-shrink: 0; }
.sgt-more {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .82rem; font-weight: 600; color: var(--dr-primary);
    text-decoration: none; padding: .45rem .9rem;
    border: 1.5px solid var(--dr-primary); border-radius: 8px;
    transition: all .2s; align-self: flex-start;
}
.sgt-more:hover { background: var(--dr-primary); color: #fff; }


/* ── HERO REDESIGN 2026-07 ─────────────────────────────────── */
#hero { min-height: 85vh; }
.hero-slider .swiper-slide { min-height: 85vh; }
.hero-overlay {
    background: linear-gradient(
        to right,
        rgba(18,42,72,0.94) 0%,
        rgba(18,42,72,0.82) 38%,
        rgba(18,42,72,0.50) 65%,
        rgba(18,42,72,0.20) 100%
    );
}

/* Swiper pagination pills */
#heroSwiper .swiper-pagination {
    bottom: 1.5rem;
    left: 1.5rem;
    text-align: left;
}
#heroSwiper .swiper-pagination-bullet {
    background: rgba(255,255,255,.5);
    opacity: 1;
    width: 8px; height: 8px;
    transition: all .3s;
}
#heroSwiper .swiper-pagination-bullet-active {
    background: var(--dr-accent);
    width: 26px;
    border-radius: 4px;
}

/* Form card colored header */
.hero-form-card {
    border-top: none;
    overflow: hidden;
}
.form-card-head {
    background: linear-gradient(135deg, var(--dr-primary) 0%, var(--dr-primary-dark) 100%);
    margin: -2.2rem -2rem 1.5rem;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}
.form-card-head-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.form-card-head-icon i { color: #fff; font-size: 1rem; }
.form-card-head-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 .2rem;
}
.form-card-head-sub {
    font-size: .7rem;
    color: rgba(255,255,255,.75);
    margin: 0;
}

/* Stats strip */
#statsStrip {
    background: linear-gradient(90deg, var(--dr-primary-dark) 0%, var(--dr-primary) 50%, var(--dr-primary-dark) 100%);
    padding: 1.1rem 0;
}
.stats-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-strip-item {
    flex: 1;
    text-align: center;
    padding: .4rem .75rem;
    position: relative;
}
.stat-strip-item + .stat-strip-item::before {
    content: '';
    position: absolute;
    left: 0; top: 12%; bottom: 12%;
    width: 1px;
    background: rgba(255,255,255,.22);
}
.stat-strip-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}
.stat-strip-label {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: .25rem;
}

@media (max-width: 991.98px) {
    #hero { min-height: 90vh; padding-bottom: 3rem; }
    .hero-slider .swiper-slide { min-height: 90vh; }
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(18,42,72,0.92) 0%,
            rgba(18,42,72,0.78) 60%,
            rgba(18,42,72,0.65) 100%
        );
    }
    .form-card-head { margin: -1.5rem -1.25rem 1.2rem; }
    .stat-strip-num { font-size: 1.45rem; }
    .stat-strip-label { font-size: .6rem; }
}
@media (max-width: 575.98px) {
    #heroSwiper .swiper-pagination { text-align: center; left: 0; right: 0; }
    .stat-strip-item { padding: .3rem .4rem; }
}


/* ── HERO SPLIT LAYOUT 2026-07 ─────────────────────────────── */
#hero {
    min-height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: block !important;
    overflow: hidden;
}
.hero-split {
    min-height: calc(100vh - 72px);
}

/* Slider kolonu */
.hero-slider-col {
    position: relative;
    min-height: calc(100vh - 72px);
    overflow: hidden;
}
.hero-slider-col .hero-slider {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
}
.hero-slider-col .hero-slider .swiper-slide {
    min-height: calc(100vh - 72px) !important;
    background-size: cover;
    background-position: center top;
}
/* Siyah-mor alt gradient (metin okunabilirliği) */
.hero-slider-col::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(12,30,55,0.96) 0%,
        rgba(12,30,55,0.70) 35%,
        rgba(12,30,55,0.25) 65%,
        transparent 100%
    );
    pointer-events: none;
}
/* Slider pagination */
#heroSwiper .swiper-pagination {
    bottom: auto;
    top: 1.25rem;
    left: 2.5rem;
    text-align: left;
    z-index: 3;
}

/* Slide içerik (metin + butonlar) */
.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem 2.5rem 2.5rem;
}
.hero-slide-content .hero-h1 { font-size: clamp(1.6rem, 3vw, 2.6rem); margin-bottom: .8rem; }
.hero-slide-content .hero-lead { font-size: .95rem; margin-bottom: 1.2rem; }
.hero-slide-content .trust-badges { margin-bottom: 1.4rem; }

/* Form kolonu */
.hero-form-col {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2.5rem;
    min-height: calc(100vh - 72px);
    border-left: 3px solid var(--dr-accent);
    overflow-y: auto;
}
.hero-form-col .hero-form-card {
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}
.hero-form-col .form-card-head {
    margin: 0 0 1.5rem;
    border-radius: var(--dr-radius-sm);
}

/* ── DOCTOR STATS BAR ─────────────────────────────────────── */
#doctorStatsBar {
    background: linear-gradient(90deg, var(--dr-primary-dark) 0%, var(--dr-primary) 55%, #a03468 100%);
    overflow: hidden;
}
.dbar-inner {
    display: flex;
    align-items: flex-end;
}
.dbar-photo-wrap {
    width: 160px;
    flex-shrink: 0;
    align-self: flex-end;
    overflow: hidden;
}
.dbar-photo {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: brightness(1.05);
}
.dbar-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    flex-wrap: wrap;
}
.dbar-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}
.dbar-title {
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    margin-top: .15rem;
    white-space: nowrap;
}
.dbar-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.22);
    flex-shrink: 0;
}
.dbar-stats {
    display: flex;
    gap: 1.75rem;
    flex-shrink: 0;
}
.dbar-stat { text-align: center; }
.dbar-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}
.dbar-stat-lbl {
    display: block;
    font-size: .6rem;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: .2rem;
}
.dbar-actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-left: auto;
}
.dbar-btn-tel, .dbar-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 50px;
    padding: .5rem 1.1rem;
    font-weight: 600;
    font-size: .82rem;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}
.dbar-btn-tel {
    background: rgba(255,255,255,.14);
    border: 1.5px solid rgba(255,255,255,.32);
    color: #fff;
}
.dbar-btn-tel:hover { background: rgba(255,255,255,.24); color: #fff; }
.dbar-btn-wa {
    background: var(--dr-green);
    color: #fff;
    border: 1.5px solid var(--dr-green);
}
.dbar-btn-wa:hover { background: var(--dr-green-dark); color: #fff; }

/* Mobil */
@media (max-width: 991.98px) {
    .hero-split { min-height: auto; flex-direction: column; }
    .hero-slider-col { min-height: 60vw; }
    .hero-slider-col .hero-slider .swiper-slide { min-height: 60vw !important; }
    .hero-form-col {
        min-height: auto;
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: 3px solid var(--dr-accent);
    }
    .hero-slide-content { padding: 1.5rem 1.5rem 2rem; }
    .dbar-photo-wrap { width: 110px; }
    .dbar-photo { height: 140px; }
    .dbar-stats { gap: 1rem; }
    .dbar-stat-num { font-size: 1.4rem; }
    .dbar-divider { display: none; }
    .dbar-content { padding: 1rem 1.25rem; gap: 1rem; }
    .dbar-actions { margin-left: 0; }
}
@media (max-width: 575.98px) {
    #heroSwiper .swiper-pagination { left: 1.25rem; }
    .hero-slide-content { padding: 1rem 1.25rem 1.5rem; }
    .dbar-photo-wrap { width: 90px; }
    .dbar-photo { height: 120px; }
    .dbar-name { font-size: .95rem; }
    .dbar-actions { width: 100%; }
}


/* ── HERO GLASS FORM 2026-07 ───────────────────────────────── */
/* Eski split layout sınıflarını geri al */
#hero {
    min-height: 82vh !important;
    padding-top: 80px !important;
    padding-bottom: 3rem !important;
    display: flex !important;
    align-items: center !important;
}
.hero-slider { position: absolute !important; inset: 0 !important; z-index: 0 !important; }
.hero-slider .swiper-slide { min-height: 82vh !important; }
.hero-overlay {
    display: block !important;
    background: linear-gradient(
        to right,
        rgba(14,30,60,0.94) 0%,
        rgba(14,30,60,0.80) 40%,
        rgba(14,30,60,0.52) 70%,
        rgba(14,30,60,0.30) 100%
    ) !important;
}
.hero-content-z { position: relative; z-index: 2; }

/* Glass form card */
.hero-form-glass {
    background: rgba(8,18,40,0.62) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    padding: 0 !important;
    overflow: hidden;
}
.hero-form-glass .form-card-head {
    margin: 0 0 1.5rem !important;
    border-radius: 0 !important;
}

/* Glass inputs */
.dr-form-glass .form-label {
    color: rgba(255,255,255,.88) !important;
    font-size: .78rem !important;
    font-weight: 600 !important;
}
.dr-form-glass .form-control,
.dr-form-glass .form-select {
    background: rgba(255,255,255,.10) !important;
    border: 1.5px solid rgba(255,255,255,.22) !important;
    color: #fff !important;
    border-radius: var(--dr-radius-sm) !important;
}
.dr-form-glass .form-control::placeholder { color: rgba(255,255,255,.45) !important; }
.dr-form-glass .form-control:focus,
.dr-form-glass .form-select:focus {
    background: rgba(255,255,255,.16) !important;
    border-color: var(--dr-accent) !important;
    box-shadow: 0 0 0 3px rgba(232,127,163,.22) !important;
    color: #fff !important;
}
.dr-form-glass .form-select option { background: #1a0a14; color: #fff; }

/* Swiper pagination on overlay layout */
#heroSwiper .swiper-pagination {
    bottom: 1.5rem !important;
    top: auto !important;
    left: 0 !important;
    text-align: center !important;
    z-index: 3;
}

@media (max-width: 991.98px) {
    #hero { padding-bottom: 2.5rem !important; }
    .hero-overlay { background: rgba(14,30,60,0.85) !important; }
    .hero-form-glass { margin-top: 1rem; }
}

/* ── GLASS FORM LEGIBILITY FIX 2026-07 ─────────────────────── */
.dr-form-glass .form-label {
    color: #ffffff !important;
    font-size: .80rem !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6) !important;
    margin-bottom: .35rem !important;
}
.dr-form-glass .form-control,
.dr-form-glass .form-select {
    background: rgba(255,255,255,.13) !important;
    border: 1.5px solid rgba(255,255,255,0.55) !important;
    color: #ffffff !important;
    font-weight: 500 !important;
}
.dr-form-glass .form-control::placeholder {
    color: rgba(255,255,255,.60) !important;
}
.dr-form-glass .form-select {
    color: rgba(255,255,255,.75) !important;
}
.dr-form-glass textarea.form-control {
    color: #ffffff !important;
}

/* ── GLASS FORM PADDING + BORDER FIX 2026-07 ───────────────── */
.hero-form-glass .dr-form-glass {
    padding: 0 1.5rem 1.5rem !important;
}
.hero-form-glass > .alert {
    margin: 0 1.5rem .75rem !important;
}
.dr-form-glass .form-control,
.dr-form-glass .form-select {
    border: 2px solid rgba(255,255,255,0.65) !important;
    border-radius: 8px !important;
}
.dr-form-glass .form-control:focus,
.dr-form-glass .form-select:focus {
    border: 2px solid var(--dr-accent) !important;
    box-shadow: 0 0 0 3px rgba(232,127,163,.25) !important;
}
