/* ============================================================
   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: .75rem 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: 80px;
    max-width: 280px;
    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: 100vh;
    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: 100vh;
}
.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; }
