/* ============================================
   DentForum İzmir – Premium Dental Clinic Theme v3
   Professional · Modern · Trust-Inspiring
   ============================================ */

/* ── CSS Custom Properties (Design System) ── */
:root {
    /* Primary – Medical Blue */
    --color-primary:        #1565C0;
    --color-primary-light:  #1E88E5;
    --color-primary-dark:   #0D47A1;
    --color-primary-50:     #E3F2FD;
    --color-primary-100:    #BBDEFB;

    /* Secondary – Clinical Teal */
    --color-secondary:      #00897B;
    --color-secondary-light:#26A69A;
    --color-secondary-dark: #00695C;

    /* Accent – Trust Orange (CTA) */
    --color-accent:         #E65100;
    --color-accent-light:   #FF6D00;
    --color-accent-dark:    #BF360C;

    /* Backgrounds */
    --color-white:          #FFFFFF;
    --color-bg:             #F8FAFC;
    --color-bg-alt:         #F0F4F8;
    --color-bg-dark:        #0A1628;
    --color-surface:        #FFFFFF;
    --color-surface-2:      #F8FAFC;

    /* Borders */
    --color-border:         #DDE3EC;
    --color-border-light:   #EEF2F7;

    /* Text */
    --color-text:           #0F1C2E;
    --color-text-secondary: #4A5568;
    --color-text-muted:     #8A97A8;
    --color-text-inverse:   #FFFFFF;

    /* Status */
    --color-success:        #1B873C;
    --color-success-bg:     #ECFDF5;
    --color-warning:        #D97706;
    --color-warning-bg:     #FFFBEB;
    --color-error:          #DC2626;
    --color-error-bg:       #FEF2F2;
    --color-info:           #1565C0;

    /* Typography */
    --font-heading:  'Outfit', sans-serif;
    --font-body:     'Inter', sans-serif;

    /* Type Scale (fluid) */
    --text-xs:    clamp(0.7rem,   0.65rem + 0.25vw, 0.75rem);
    --text-sm:    clamp(0.8rem,   0.75rem + 0.25vw, 0.875rem);
    --text-base:  clamp(0.9375rem,0.875rem + 0.3vw, 1rem);
    --text-lg:    clamp(1.0625rem,1rem + 0.3vw,     1.125rem);
    --text-xl:    clamp(1.2rem,   1.1rem + 0.5vw,   1.375rem);
    --text-2xl:   clamp(1.45rem,  1.25rem + 0.8vw,  1.875rem);
    --text-3xl:   clamp(1.75rem,  1.45rem + 1.2vw,  2.375rem);
    --text-4xl:   clamp(2.1rem,   1.7rem + 1.5vw,   3.25rem);
    --text-hero:  clamp(2.5rem,   1.9rem + 2.5vw,   4rem);

    /* Spacing */
    --space-xs:  4px;   --space-sm:  8px;   --space-md:  16px;
    --space-lg:  24px;  --space-xl:  36px;  --space-2xl: 56px;
    --space-3xl: 72px;  --space-4xl: 104px;

    /* Radii */
    --radius-xs:   4px;
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   18px;
    --radius-xl:   24px;
    --radius-2xl:  32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-xs:   0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm:   0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:   0 8px 32px rgba(0,0,0,0.10);
    --shadow-xl:   0 20px 56px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 16px rgba(21,101,192,0.07);
    --shadow-hover:0 10px 40px rgba(21,101,192,0.16);
    --shadow-blue: 0 6px 24px rgba(21,101,192,0.22);

    /* Transitions */
    --transition-fast:   150ms ease;
    --transition-base:   280ms cubic-bezier(.4,0,.2,1);
    --transition-slow:   480ms cubic-bezier(.4,0,.2,1);
    --transition-spring: 480ms cubic-bezier(0.34,1.56,0.64,1);

    /* Layout */
    --header-top-height: 40px;
    --header-main-height: 76px;
    --header-height: calc(var(--header-top-height) + var(--header-main-height));
    --container-max: 1240px;
    --container-pad: clamp(16px, 4vw, 32px);
}

[dir="rtl"] { --font-heading: 'Tajawal', sans-serif; --font-body: 'Tajawal', sans-serif; }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-text); }
button { font-family: var(--font-body); }

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px,4vw,32px);
}

/* ── TOP BAR ── */
.header-top-bar {
    background: var(--color-primary-dark);
    height: var(--header-top-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.72);
}
.top-bar-item a { color: rgba(255,255,255,0.72); font-size: 12px; transition: color var(--transition-fast); }
.top-bar-item a:hover { color: #fff; }
.top-bar-item svg { flex-shrink: 0; opacity: 0.65; }
.top-bar-hours { font-size: 12px; color: rgba(255,255,255,0.58); display: flex; align-items: center; gap: 6px; }

/* ── SITE HEADER ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    transition: transform var(--transition-base);
}
.site-header.scrolled .header-top-bar { display: none; }
.site-header.scrolled .header-main {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 24px rgba(21,101,192,0.10);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.header-main {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(221,227,236,0.7);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-main-height);
    gap: var(--space-md);
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 38px; width: auto; max-width: 160px; object-fit: contain; }
.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

/* ── NAVIGATION ── */
.main-nav { display: flex; align-items: center; gap: var(--space-sm); }
.nav-list { display: flex; align-items: center; gap: 1px; }
.nav-item {     width: 100%; position: relative; }
.nav-link {
    position: relative;
    display: block;
    padding: 7px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.nav-link:hover {
    color: var(--color-primary);
    background: var(--color-primary-50);
}
.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
    background: var(--color-primary-50);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    opacity: 0.8;
}
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta { padding: 10px 22px; font-size: var(--text-sm); }
.mobile-nav-ctas { display: none; }

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 9px;
    width: 42px;
    height: 42px;
    z-index: 1101;
    transition: border-color var(--transition-fast);
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
    transform-origin: center;
}
.hamburger.active { border-color: var(--color-primary); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.60);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}
.nav-overlay.active { opacity: 1; pointer-events: auto; display: block; }

/* ── LANGUAGE SWITCHER ── */
/* Desktop'ta sadece #desktop-lang-switcher göster */
#mobile-lang-switcher { display: none; }
.lang-switcher { position: relative; }
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.04em;
    transition: all var(--transition-fast);
}
.lang-current:hover { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-primary-50); }
.lang-current img { border-radius: 2px; }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 200;
    overflow: hidden;
}
.lang-switcher.open .lang-dropdown,
.lang-switcher:hover .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: var(--text-sm);
    color: var(--color-text);
    transition: background var(--transition-fast);
}
.lang-dropdown li a:hover { background: var(--color-primary-50); color: var(--color-primary); }
.lang-dropdown li a img { border-radius: 2px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
    min-height: 44px; /* WCAG touch target */
    -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(0) scale(0.97); }
.btn-sm  { padding: 8px 18px; font-size: var(--text-xs); }
.btn-lg  { padding: 15px 36px; font-size: var(--text-base); }
.btn-xl  { padding: 18px 44px; font-size: var(--text-lg); }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(230,81,0,0.25);
}
.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230,81,0,0.35);
}
.btn-secondary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(21,101,192,0.22);
}
.btn-secondary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(21,101,192,0.32);
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
    transform: translateY(-2px);
}
.btn-ghost { background: transparent; color: var(--color-text-secondary); border-color: transparent; }
.btn-ghost:hover { background: var(--color-bg-alt); color: var(--color-text); }
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; transform: translateY(-2px); }

/* ── HERO SECTION ── */
.hero {
    position: relative;
    /* min-height: 88vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #0D47A1 0%, #1565C0 45%, #00695C 100%);
    margin-top: var(--header-height);
}
.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease;
    z-index: 0;
    pointer-events: none;
    will-change: opacity;
}
.hero-bg-layer.bg-loaded { opacity: 0.32; }
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(13,71,161,0.82) 0%, rgba(21,101,192,0.68) 50%, rgba(0,105,92,0.78) 100%),
        radial-gradient(ellipse 55% 80% at 80% 20%, rgba(255,255,255,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 45% 60% at 15% 80%, rgba(0,137,123,0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: var(--color-bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: var(--space-4xl) 0 calc(var(--space-4xl) + 40px);
}
.hero-content { color: #fff; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}
.hero-badge-dot {
    width: 6px; height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(76,175,80,0.25);
    animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
    50% { box-shadow: 0 0 0 6px rgba(76,175,80,0.1); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    font-weight: 800;
    line-height: 1.07;
    margin-bottom: var(--space-lg);
    color: #fff;
    letter-spacing: -0.025em;
}
.hero-title .highlight {
    background: linear-gradient(90deg, #80DEEA, #B2EBF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: var(--text-lg);
    opacity: 0.84;
    margin-bottom: var(--space-2xl);
    line-height: 1.75;
    max-width: 500px;
    font-weight: 400;
}
.hero-buttons { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-2xl); }
.hero .btn-primary { padding: 14px 32px; font-size: var(--text-base); box-shadow: 0 8px 28px rgba(230,81,0,0.38); }
.hero .btn-outline-white { padding: 14px 28px; font-size: var(--text-base); }

/* Hero Trust Items */
.hero-trust { display: flex; align-items: center; gap: var(--space-xl); flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-trust-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.88);
    flex-shrink: 0;
}
.hero-trust-text strong { display: block; font-size: var(--text-sm); font-weight: 700; color: #fff; line-height: 1.2; }
.hero-trust-text span { font-size: var(--text-xs); color: rgba(255,255,255,0.62); }

/* Hero Right: Stats Card */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero-stats-card {
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 20px;
    padding: var(--space-xl);
}
.hero-stats-title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.hero-stat-item {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* Hero Info Card */
.hero-info-card {
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 16px;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: #fff;
}
.hero-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--color-accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(230,81,0,0.35);
}
.hero-info-text strong { display: block; font-size: var(--text-base); font-weight: 700; }
.hero-info-text span { font-size: var(--text-xs); color: rgba(255,255,255,0.68); }

/* ── SECTIONS ── */
.section { padding: var(--space-4xl) 0; position: relative; }
.section-sm { padding: var(--space-2xl) 0; }
.section-lg { padding: calc(var(--space-4xl) + 24px) 0; }
.section-white { background: var(--color-white); }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: #0A1628; color: #fff; }
.section-primary { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); color: #fff; }

.section-header { text-align: center; margin-bottom: var(--space-3xl); }
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    margin-bottom: var(--space-md);
}
.section-dark .section-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.section-title {
    font-size: var(--text-3xl);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    line-height: 1.15;
    display: block;
}
.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    margin: var(--space-md) auto 0;
}
.section-dark .section-title { color: #fff; }
.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-md);
    line-height: 1.75;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.62); }

/* ── STATS SECTION ── */
.stats-strip {
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: var(--space-2xl) 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}
.stat-card {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform var(--transition-base);
}
.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--color-border-light);
}
.stat-card:hover { transform: translateY(-3px); }
.stat-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-lg);
    background: var(--color-primary-50);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-primary);
    transition: transform var(--transition-spring), background var(--transition-base);
}
.stat-card:hover .stat-icon { transform: scale(1.1) rotate(-5deg); background: var(--color-primary); color: #fff; }
.stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-primary-dark);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.stat-label { font-size: var(--text-sm); color: var(--color-text-secondary); font-weight: 500; }

/* ── FEATURES / WHY US ── */
.feature-card {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-xl);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(21,101,192,0.10);
    border-color: var(--color-primary-100);
}
.feature-icon {
    width: 54px; height: 54px;
    border-radius: var(--radius-lg);
    background: var(--color-primary-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: background var(--transition-base), transform var(--transition-spring);
}
.feature-card:hover .feature-icon { background: var(--color-primary); color: #fff; transform: rotate(-6deg) scale(1.05); }
.feature-body h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: 6px; color: var(--color-text); }
.feature-body p { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.7; margin: 0; }

/* ── CTA BANNER ── */
.cta-section {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 55%, #00695C 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -8%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: var(--space-2xl);
}
.cta-text h2 { font-size: var(--text-3xl); color: #fff; margin-bottom: var(--space-sm); letter-spacing: -0.02em; }
.cta-text p { font-size: var(--text-lg); color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.cta-actions .btn { min-width: 200px; justify-content: center; text-align: center; }

/* ── TESTIMONIALS ── */
.testimonial-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 2px 16px rgba(21,101,192,0.06);
    border: 1px solid var(--color-border-light);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(21,101,192,0.12); }
.testimonial-quote-icon { color: var(--color-primary-100); margin-bottom: var(--space-md); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: var(--space-md); color: #F59E0B; }
.testimonial-text { font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.8; margin-bottom: var(--space-lg); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-md); padding-top: var(--space-md); border-top: 1px solid var(--color-border-light); }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-primary-50);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 800;
    font-size: var(--text-lg); color: var(--color-primary);
    flex-shrink: 0;
    overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name { font-weight: 700; font-size: var(--text-sm); color: var(--color-text); line-height: 1.2; }
.testimonial-author-detail { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 2px; }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }

/* ── SERVICE CARD ── */
.service-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(21,101,192,0.07);
    border: 1px solid var(--color-border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(21,101,192,0.14); border-color: var(--color-primary-100); }
.service-card-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.5s ease infinite;
    flex-shrink: 0;
    transition: background var(--transition-slow);
}
.service-card-image:has(img.loaded) { animation: none; background: none; transition: none; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.service-card:hover .service-card-image img { transform: scale(1.07); }
.service-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}
.service-card-icon {
    position: absolute;
    bottom: var(--space-md); left: var(--space-md);
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    z-index: 1;
    transition: transform var(--transition-spring);
}
.service-card-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}
.service-card:hover .service-card-icon { transform: scale(1.1) rotate(5deg); }
.service-card-body { padding: var(--space-lg) var(--space-lg) var(--space-xl); display: flex; flex-direction: column; flex: 1; }
.service-card-title { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 700; color: var(--color-text); margin-bottom: var(--space-sm); line-height: 1.3; }
.service-card-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: auto;
    transition: gap var(--transition-fast), color var(--transition-fast);
}
.service-card-link svg { transition: transform var(--transition-fast); }
.service-card:hover .service-card-link { gap: 10px; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── DOCTOR CARD ── */
.doctor-card {
    position: relative;
    text-align: center;
    background: var(--color-surface);
    border-radius: 20px;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    box-shadow: 0 2px 16px rgba(21,101,192,0.07);
    border: 1px solid var(--color-border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    overflow: hidden;
}
.doctor-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    opacity: 0;
    transition: opacity var(--transition-base);
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(21,101,192,0.14); border-color: var(--color-primary-100); }
.doctor-card:hover::before { opacity: 1; }
.doctor-card-photo {
    width: 120px; height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--color-primary-50);
    margin: 0 auto var(--space-lg);
    transition: border-color var(--transition-base), transform var(--transition-base), opacity 0.45s ease;
    box-shadow: 0 4px 20px rgba(21,101,192,0.12);
    display: block;
    position: relative;
    z-index: 1;
}
/* Circular skeleton overlay while doctor photo loads */
.doctor-card.photo-loading::after {
    content: '';
    position: absolute;
    top: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.5s ease infinite;
    z-index: 2;
    pointer-events: none;
}
.doctor-card:hover .doctor-card-photo { border-color: var(--color-primary-light); transform: scale(1.04); }
.doctor-card-name { font-family: var(--font-heading); font-size: var(--text-xl); font-weight: 700; margin-bottom: 4px; color: var(--color-text); line-height: 1.25; }
.doctor-card-specialty { font-size: var(--text-sm); color: var(--color-primary); font-weight: 600; margin-bottom: 4px; }
.doctor-card-title-text { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-md); }
.doctor-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    padding: 8px 20px;
    border: 1.5px solid var(--color-primary-100);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    margin-top: var(--space-sm);
}
.doctor-card:hover .doctor-card-cta { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ── BLOG CARD ── */
.blog-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(21,101,192,0.07);
    border: 1px solid var(--color-border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(21,101,192,0.14); border-color: var(--color-primary-100); }
.blog-card-image {
    height: 210px;
    overflow: hidden;
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.5s ease infinite;
    flex-shrink: 0;
    position: relative;
    transition: background var(--transition-slow);
}
.blog-card-image:has(img.loaded) { animation: none; background: none; transition: none; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-body { padding: var(--space-lg) var(--space-lg) var(--space-xl); display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-sm); font-size: var(--text-xs); color: var(--color-text-muted); }
.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}
.blog-card-title a { color: var(--color-text); transition: color var(--transition-fast); }
.blog-card-title a:hover { color: var(--color-primary); }
.blog-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: var(--space-md);
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
    transition: gap var(--transition-fast);
}
.blog-card-link svg { transition: transform var(--transition-fast); }
.blog-card:hover .blog-card-link { gap: 10px; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }

/* ── PAGE HEADER ── */
.page-header {
    position: relative;
    background: linear-gradient(150deg, #0A2E6E 0%, #1565C0 48%, #00796B 100%);
    padding: calc(var(--space-4xl) + var(--space-xl)) 0 calc(var(--space-3xl) + 88px);
    margin-top: var(--header-height);
    text-align: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 90% 15%, rgba(255,255,255,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 5% 85%, rgba(0,121,107,0.22) 0%, transparent 55%);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 88px;
    background: var(--color-white);
    clip-path: ellipse(56% 100% at 50% 100%);
}
.page-header h1 {
    position: relative;
    font-size: var(--text-4xl);
    color: #fff;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.025em;
    line-height: 1.15;
    text-shadow: 0 2px 24px rgba(0,0,0,0.2);
}
.breadcrumb {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    padding: 7px 18px;
    max-width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.breadcrumb a { color: rgba(255,255,255,0.78); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: 0.55; }
.breadcrumb-sep { opacity: 0.45; font-size: 16px; line-height: 1; }
.breadcrumb-current { opacity: 0.75; }
.page-header .breadcrumb { justify-content: center; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.4s ease infinite;
    transition: box-shadow var(--transition-base);
}
.gallery-item:has(img.loaded) { animation: none; background: var(--color-bg-alt); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item:hover { box-shadow: 0 4px 20px rgba(21,101,192,0.16); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(21,101,192,0);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background var(--transition-base);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { background: rgba(21,101,192,0.42); }

/* ── FORMS ── */
.form-group { margin-bottom: var(--space-lg); }
.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}
.form-label .required { color: var(--color-error); margin-left: 3px; }
.form-control {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
    min-height: 44px; /* Touch target */
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-primary-50);
}
.form-control:hover:not(:focus) { border-color: var(--color-text-muted); }
.form-control::placeholder { color: var(--color-text-muted); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-hint { font-size: var(--text-xs); color: var(--color-text-muted); margin-top: 5px; }

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: var(--space-lg);
    border: 1px solid transparent;
}
.alert-success { background: var(--color-success-bg, #ECFDF5); color: #065f46; border-color: #a7f3d0; }
.alert-error { background: var(--color-error-bg, #FEF2F2); color: #991b1b; border-color: #fecaca; }
.alert-warning { background: var(--color-warning-bg, #FFFBEB); color: #92400e; border-color: #fde68a; }

/* Contact Info Card */
.contact-info-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: 0 2px 16px rgba(21,101,192,0.06);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}
.contact-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 42px; height: 42px;
    border-radius: var(--radius-md);
    background: var(--color-primary-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}
.contact-info-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 3px; }
.contact-info-value { font-size: var(--text-sm); color: var(--color-text-secondary); }
.contact-info-value a { color: var(--color-text-secondary); transition: color var(--transition-fast); }
.contact-info-value a:hover { color: var(--color-primary); }

/* Contact Form Header */
.contact-form-title { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -0.02em; color: var(--color-text); margin-bottom: var(--space-sm); }
.contact-form-desc { color: var(--color-text-secondary); font-size: var(--text-sm); margin-bottom: var(--space-xl); }
.contact-info-icon--whatsapp { background: #d1fae5; color: #059669; }

/* Contact Layout */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2xl); align-items: start; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.08); min-height: 280px; }
.map-embed iframe { display: block; width: 100%; min-height: 280px; border: 0; }

/* ── Doctor Detail Layout ── */
.doctor-detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}
.doctor-card--sticky { position: sticky; top: calc(var(--header-height) + 24px); }
.doctor-card-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
    flex-wrap: wrap;
}
.social-link--light {
    background: var(--color-primary-50);
    color: var(--color-primary);
    border-color: var(--color-primary-100);
}
.social-link--light:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.doctor-card-phone { margin-top: var(--space-md); width: 100%; }
@media (max-width: 768px) {
    .doctor-detail-layout { grid-template-columns: 1fr; }
    .doctor-card--sticky { position: static; }
}

/* ── Content (Detail Pages) ── */
.content-area {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
}
.content-area--flush { padding-top: 0; max-width: 100%; }
.content-area h2 { font-size: var(--text-2xl); margin: var(--space-xl) 0 var(--space-md); }
.content-area h3 { font-size: var(--text-xl); margin: var(--space-lg) 0 var(--space-sm); }
.content-area p { margin-bottom: var(--space-md); line-height: 1.8; }
.content-area ul, .content-area ol { margin-bottom: var(--space-md); padding-left: var(--space-lg); }
.content-area li { margin-bottom: var(--space-sm); line-height: 1.6; }
.content-area img { border-radius: var(--radius-md); margin: var(--space-lg) 0; }

/* ── Service Detail Layout ── */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
}
.service-detail-main {
    min-width: 0;
}
.service-detail-cover {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    object-fit: cover;
}
/* ── Service Intro – Soft Kart + Collapse/Expand ── */
.service-intro-wrap {
    position: relative;
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-xl);
    background: var(--color-white);
    border: 1px solid rgba(21,101,192,0.10);
    box-shadow: 0 1px 12px rgba(21,101,192,0.05);
    overflow: hidden;
}

.service-intro {
    font-size: var(--text-base);
    line-height: 1.85;
    color: var(--color-text-secondary);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    background: transparent;
    max-height: calc(1.85em * 4 + var(--space-xl) + var(--space-lg));
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
}
.service-intro p {
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

/* Expanded state */
.service-intro-wrap.expanded .service-intro        { max-height: 2400px; }
.service-intro-wrap.expanded .service-intro-fade   { opacity: 0; pointer-events: none; }
.service-intro-wrap.expanded .service-intro-toggle-icon { transform: rotate(180deg); }

/* Fade overlay */
.service-intro-fade {
    position: absolute;
    bottom: 37px;
    left: 0; right: 0;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.96) 70%, #fff 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Toggle button – subtle link style */
.service-intro-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px var(--space-xl);
    background: transparent;
    border: none;
    border-top: 1px solid rgba(21,101,192,0.08);
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.service-intro-toggle:hover {
    background: var(--color-primary-50);
    color: var(--color-primary-dark);
}
.service-intro-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}
.service-intro-toggle-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    opacity: 0.65;
}
.service-intro-toggle:hover .service-intro-toggle-icon { opacity: 1; }

/* Kısa metin – toggle ve fade gizle */
.service-intro-wrap.no-clamp .service-intro        { max-height: none; overflow: visible; }
.service-intro-wrap.no-clamp .service-intro-fade   { display: none; }
.service-intro-wrap.no-clamp .service-intro-toggle { display: none; }

@media (max-width: 600px) {
    .service-intro { padding: var(--space-md) var(--space-lg) var(--space-sm); font-size: var(--text-sm); }
    .service-intro-toggle { padding: 10px var(--space-lg); }
    .service-intro-fade { bottom: 40px; }
}
.service-content-block {
    margin-bottom: var(--space-xl);
    line-height: 1.8;
    color: var(--color-text);
}
.service-content-block h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary-50);
}
.service-content-block p { margin-bottom: var(--space-md); }
.service-content-block ul, .service-content-block ol {
    margin-bottom: var(--space-md);
    padding-left: 0;
    list-style: none;
}
.service-content-block ul li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--color-text);
}
.service-content-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
}
.service-content-block ol {
    counter-reset: scb-ol;
}
.service-content-block ol li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--color-text);
    counter-increment: scb-ol;
}
.service-content-block ol li::before {
    content: counter(scb-ol);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4em; height: 1.4em;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
/* Nested lists */
.service-content-block ul ul li::before { background: var(--color-primary-light); width: 5px; height: 5px; top: 0.65em; }
.service-content-block img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}
.service-process ol {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}
.service-process ol li {
    counter-increment: step;
    position: relative;
    padding-left: 48px;
    padding-bottom: var(--space-md);
    border-left: 2px solid var(--color-primary-100);
    margin-left: 16px;
}
.service-process ol li::before {
    content: counter(step);
    position: absolute;
    left: -14px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 700;
}
.service-process ol li:last-child { border-left-color: transparent; }
.service-advantages ul {
    list-style: none;
    padding-left: 0;
}
.service-advantages ul li {
    position: relative;
    padding-left: 28px;
}
.service-advantages ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: 700;
}

/* Service Detail Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}
.service-sidebar-cta {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}
.service-sidebar-cta h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}
.service-sidebar-cta p {
    font-size: var(--text-sm);
    opacity: 0.85;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}
.service-sidebar-cta .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.service-sidebar-cta .btn-outline {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}
.service-sidebar-cta .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
}
.service-sidebar-related {
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    margin-top: 25px;
}
.service-sidebar-related h4 {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary-50);
}
.service-sidebar-related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-sidebar-related ul li {
    border-bottom: 1px solid var(--color-border-light);
}
.service-sidebar-related ul li:last-child { border-bottom: none; }
.service-sidebar-related ul li a {
    display: block;
    padding: var(--space-sm) 0;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.service-sidebar-related ul li a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

@media (max-width: 1024px) {
    .service-detail-layout {
        grid-template-columns: 1fr 280px;
        gap: var(--space-xl);
    }
}
@media (max-width: 768px) {
    .service-detail-layout,
    .landing-layout {
        grid-template-columns: 1fr;
    }
    .service-detail-sidebar,
    .landing-sidebar {
        position: static;
    }
}

/* ── Landing Page Layout ── */
.landing-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
}
.landing-main { min-width: 0; }
.landing-cover {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    object-fit: cover;
}
.landing-content {
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}
.landing-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
    margin: var(--space-xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary-50);
}
.landing-content h2:first-child { margin-top: 0; }
.landing-content p { margin-bottom: var(--space-md); }
.landing-content ul, .landing-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}
.landing-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}
.landing-content ol {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}
.landing-content ol li {
    counter-increment: step;
    position: relative;
    padding-left: 48px;
    padding-bottom: var(--space-md);
    border-left: 2px solid var(--color-primary-100);
    margin-left: 16px;
}
.landing-content ol li::before {
    content: counter(step);
    position: absolute;
    left: -14px;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 700;
}
.landing-content ol li:last-child { border-left-color: transparent; }
.landing-service-link {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-align: center;
}
.landing-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--color-surface);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.faq-item.active { border-color: var(--color-primary-100); box-shadow: 0 4px 16px rgba(21,101,192,0.08); }
.faq-question {
    padding: var(--space-lg) var(--space-xl);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: color var(--transition-fast);
    user-select: none;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--color-primary-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-left: var(--space-md);
    transition: background var(--transition-base), transform var(--transition-base);
}
.faq-icon svg { transition: transform var(--transition-base); }
.faq-item.active .faq-icon { background: var(--color-primary); color: #fff; }
.faq-item.active .faq-icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--color-text-secondary);
    line-height: 1.75;
    font-size: var(--text-sm);
    border-top: 1px solid var(--color-border-light);
    padding-top: var(--space-md);
}
.faq-item.active .faq-answer { max-height: 600px; }

/* ── FOOTER ── */
.site-footer {
    background: linear-gradient(180deg, #0D1829 0%, #081018 100%);
    color: #fff;
    position: relative;
}
.footer-top { padding: var(--space-4xl) 0 var(--space-3xl); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
}
.footer-logo { display: inline-block; margin-bottom: var(--space-md); }
.footer-logo img { height: 42px; width: auto; filter: brightness(0) invert(1) opacity(0.9); }
.footer-logo .logo-text {
    color: #fff;
    font-size: var(--text-xl);
    -webkit-text-fill-color: #fff;
    background: none;
    font-family: var(--font-heading);
    font-weight: 800;
}
.footer-desc { color: rgba(255,255,255,0.48); font-size: var(--text-sm); margin-bottom: var(--space-lg); line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
    width: 38px; height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: all var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.06);
}
.social-link:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--color-primary);
}
.footer-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: 12px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-secondary-light));
    border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.48);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.footer-links a::before { content: '›'; color: var(--color-primary-light); font-size: 14px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { margin-bottom: var(--space-md); font-size: var(--text-sm); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary-light);
    flex-shrink: 0;
}
.footer-contact-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.footer-contact-value { color: rgba(255,255,255,0.72); }
.footer-contact-value a { color: rgba(255,255,255,0.72); transition: color var(--transition-fast); }
.footer-contact-value a:hover { color: #fff; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.42);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours li:last-child { border-bottom: none; }
.footer-hours .day { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-hours .time { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: var(--space-lg) 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}
.footer-copyright { font-size: var(--text-xs); color: rgba(255,255,255,0.32); }
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a { font-size: var(--text-xs); color: rgba(255,255,255,0.32); transition: color var(--transition-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* Footer CTA strip */
.footer-cta-strip {
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}
.footer-cta-strip h3 { color: #fff; font-size: var(--text-xl); margin-bottom: 4px; }
.footer-cta-strip p { color: rgba(255,255,255,0.68); font-size: var(--text-sm); margin: 0; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
    position: fixed;
    bottom: 60px; left: 28px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.38);
    z-index: 999;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}
@keyframes wa-pulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.38); }
    50% { box-shadow: 0 6px 36px rgba(37,211,102,0.58), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    z-index: 995;
    bottom: 0; left: 0; right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 12px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-mobile-cta .btn { flex: 1; text-align: center; justify-content: center; }

/* ── Page Transitions (SPA feel) ── */
#main-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#main-content.page-exit { opacity: 0; transform: translateY(10px); }
#main-content.page-enter { opacity: 0.6; }
#main-content.page-visible { opacity: 1; transform: translateY(0); }

/* ── Scroll Animations ── */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].animate-in { opacity: 1; transform: translateY(0); }
[data-animate="fade-left"] { transform: translateX(-28px); }
[data-animate="fade-left"].animate-in { transform: translateX(0); }
[data-animate="fade-right"] { transform: translateX(28px); }
[data-animate="fade-right"].animate-in { transform: translateX(0); }
[data-animate="scale"] { transform: scale(0.94); }
[data-animate="scale"].animate-in { transform: scale(1); }
[data-animate="fade-up"] { transform: translateY(40px); }
[data-animate="fade-up"].animate-in { transform: translateY(0); }

/* ── SKELETON LOADERS ── */
@keyframes sk-loading {
    0%   { background-position: 100% 50%; }
    100% { background-position:   0% 50%; }
}
.sk-shimmer {
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.4s ease infinite;
}
.sk-pulse {
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.4s ease infinite;
    border-radius: var(--radius-sm);
    display: block;
}
.sk-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-card);
}
.sk-card .sk-image {
    height: 210px;
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.4s ease infinite;
}
.sk-card .sk-body { padding: var(--space-lg); }
.sk-card .sk-line {
    height: 13px;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.4s ease infinite;
    margin-bottom: 10px;
}
.sk-card .sk-line.sk-w70 { width: 70%; }
.sk-card .sk-line.sk-w50 { width: 50%; }
.sk-card .sk-line:last-child { width: 55%; margin-bottom: 0; }
.sk-circle {
    border-radius: 50%;
    background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%);
    background-size: 400% 100%;
    animation: sk-loading 1.4s ease infinite;
}
.sk-doctor {
    background: var(--color-surface);
    border-radius: 20px;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    border: 1px solid var(--color-border-light);
}
/* SPA page loading skeleton */
.sk-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
}
@media (max-width: 768px) { .sk-page-grid { grid-template-columns: 1fr; gap: var(--space-lg); } }
@media (max-width: 1024px) { .sk-page-grid { grid-template-columns: repeat(2, 1fr); } }

/* img lazy load fade + skeleton shimmer */
img.lazy {
    opacity: 0;
    transition: opacity 0.45s ease;
}
img.loaded {
    opacity: 1;
    animation: none;
    background: none;
}

/* ── Global focus ring (a11y) ── */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}
a:focus-visible, button:focus-visible { border-radius: var(--radius-sm); }
select:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 0;
    border-radius: var(--radius-sm);
}

/* ── Scroll margin for anchor targets ── */
[id] { scroll-margin-top: calc(var(--header-height) + 24px); }

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 64px; right: 26px;
    width: 42px; height: 42px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-secondary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 997;
    opacity: 0;
    transform: translateY(12px);
    transition: all var(--transition-base);
    pointer-events: none;
    cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: var(--space-4xl) var(--space-lg); color: var(--color-text-muted); }
.empty-state svg { display: block; margin: 0 auto var(--space-md); opacity: 0.35; color: var(--color-text-muted); }
.empty-state h3 { font-size: var(--text-xl); color: var(--color-text-secondary); margin-bottom: var(--space-sm); }
.empty-state p { font-size: var(--text-base); max-width: 400px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1.2fr 0.8fr; }
    .stats-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail-layout { grid-template-columns: 1fr 280px; gap: var(--space-xl); }
    .landing-layout { grid-template-columns: 1fr 280px; gap: var(--space-xl); }
    .cta-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
    .cta-actions { align-items: flex-start; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero { /* min-height: auto; */ }
    .hero-grid { padding: var(--space-4xl) 0 calc(var(--space-4xl) + 40px); }
}
@media (max-width: 768px) {
    :root {
        --header-top-height: 0px;
        --header-main-height: 64px;
        --header-height: 64px;
    }
    .header-top-bar { display: none; }
    .hamburger { display: flex; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: min(85%, 380px);
        height: 100vh; height: 100dvh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 72px var(--space-lg) var(--space-xl);
        box-shadow: 0 0 0 100vw transparent;
        transition: right var(--transition-base);
        z-index: 1100;
        overflow-y: auto;
        gap: 0;
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; width: 100%; gap: 0; }
    .nav-link {
        width: 100%;
        padding: 14px var(--space-sm);
        border-bottom: 1px solid var(--color-border-light);
        font-size: var(--text-base);
        border-radius: 0;
    }
    .nav-link.active::after { display: none; }
    .lang-switcher { margin: var(--space-lg) 0 var(--space-sm); width: 100%; }
    .lang-current { width: 100%; justify-content: space-between; }
    .nav-cta { display: none; }
    .mobile-nav-ctas {
        display: flex;
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        margin-top: auto;
        padding-top: var(--space-lg);
        border-top: 1px solid var(--color-border-light);
    }
    .mobile-nav-cta-btn { width: 100%; justify-content: center; padding: 13px; }
    .header-actions .lang-switcher { display: flex; }
    .header-actions .lang-current { padding: 6px 8px; gap: 4px; font-size: 11px; }
    .header-actions .lang-current span { font-size: 11px; }
    #mobile-lang-switcher { display: none !important; }

    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; padding: var(--space-3xl) 0 calc(var(--space-3xl) + 50px); gap: var(--space-xl); }
    .hero-visual { display: block; }
    .hero-visual::before { display: none; }
    .hero-info-card { display: none; }
    .hero-stats-card { padding: var(--space-md) var(--space-lg); background: rgba(255,255,255,0.07); }
    .hero-stats-title { display: none; }
    .hero-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .hero-stat-item { padding: 10px 6px; background: rgba(255,255,255,0.06); }
    .hero-stat-num { font-size: var(--text-2xl); margin-bottom: 2px; }
    .hero-stat-label { font-size: 10px; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.75rem); }
    .hero-subtitle { font-size: var(--text-base); margin-bottom: var(--space-lg); }
    .hero-trust { gap: var(--space-lg); }
    .hero::after { height: 50px; }

    .section { padding: var(--space-3xl) 0; }
    .cards-grid, .cards-grid-2, .cards-grid-4 { grid-template-columns: 1fr; gap: var(--space-lg); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .footer-desc { max-width: 100%; }
    .service-detail-layout, .landing-layout { grid-template-columns: 1fr; }
    .service-detail-sidebar, .landing-sidebar { position: static; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
    .cta-actions { align-items: stretch; flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; justify-content: center; text-align: center; min-width: 0; }
    .cta-text h2 { font-size: var(--text-2xl); }
    .cta-text p { font-size: var(--text-base); }
    .cta-section { padding: var(--space-2xl) 0; }

    .page-header {
        /* padding: var(--space-2xl) 0 calc(var(--space-md) + 58px); */
    }
    .page-header::after {
        height: 58px;
        clip-path: ellipse(70% 100% at 50% 100%);
    }
    .page-header h1 { font-size: var(--text-2xl); letter-spacing: -0.01em; }
    .breadcrumb { font-size: 11px; padding: 5px 14px; }

    .whatsapp-float { bottom: 80px; left: 20px; width: 50px; height: 50px; }
    .back-to-top { bottom: 86px; right: 20px; }
    .sticky-mobile-cta { display: flex; }
    #main-content { padding-bottom: 72px; }

    .section-title { font-size: var(--text-2xl); }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .step-label { display: none; }
}
@media (max-width: 600px) {
    .form-row-page { grid-template-columns: 1fr; }
    input[type="date"].form-control-page,
    input[type="time"].form-control-page { -webkit-appearance: none; appearance: none; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-trust { flex-direction: column; gap: var(--space-md); }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card:not(:last-child)::after { display: none; }
    .footer-social { gap: 6px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
    .randevu-page-form-col { padding: var(--space-md); }
    .randevu-steps { padding: var(--space-md); }
    .step-label { display: none; }
}

/* Touch cihazlarda hover transform kaldır – mobil tıklama sorunlarını önler */
@media (hover: none) {
    .btn:hover,
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-outline:hover,
    .btn-outline-white:hover,
    .btn-whatsapp:hover { transform: none !important; }
    .service-card:hover { transform: none; box-shadow: var(--shadow-card); }
    .doctor-card:hover  { transform: none; box-shadow: var(--shadow-card); }
    .review-card:hover  { transform: none; box-shadow: var(--shadow-sm); }
    .ba-card:hover      { transform: none; box-shadow: var(--shadow-card); }
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-primary { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: #fff; }
.font-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.w-full { width: 100%; }
.inherit-link { color: inherit; text-decoration: none; }
.inherit-link:hover { color: var(--color-primary); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-card { box-shadow: var(--shadow-card); }

/* ── PAGE COVER IMAGE ── */
.page-cover-wrap { margin-bottom: var(--space-2xl); border-radius: var(--radius-xl); overflow: hidden; }
.page-cover-img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

/* ── BLOG DETAIL (legacy – moved to v2.6 block) ── */
.blog-detail-cover {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    object-fit: cover;
    max-height: 460px;
}
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-xl);
}
.blog-tag {
    padding: 4px 14px;
    background: var(--color-primary-50);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    transition: background var(--transition-fast), color var(--transition-fast);
    text-decoration: none;
}
.blog-tag:hover { background: var(--color-primary); color: #fff; }

/* ── PAGINATION ── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}
.pagination .btn { min-width: 38px; padding: 8px 12px; font-size: var(--text-sm); }

/* ── GALLERY VIDEO ITEM ── */
.gallery-item-video {
    width: 100%; height: 100%;
    background: var(--color-bg-alt);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
}

/* ── MINI BILGI KUTULARI ── */
.mini-bilgi-section { margin-top: var(--space-xl); }
.mini-bilgi-section h2 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--space-lg); color: var(--color-text); }
.mini-bilgi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mini-bilgi-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.mini-bilgi-card:hover {
    border-color: var(--color-primary-100);
    box-shadow: 0 2px 12px rgba(21,101,192,0.06);
}
.mini-bilgi-baslik {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.mini-bilgi-deger {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .mini-bilgi-grid { grid-template-columns: 1fr; }
}

/* ── RANDEVU FORM WIDGET ── */
.randevu-form-widget {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border-light);
}
.randevu-form-title { font-size: var(--text-lg); font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.randevu-form-desc { font-size: var(--text-sm); color: var(--color-text-secondary); margin: 0 0 var(--space-md); }
.randevu-form .form-group { margin-bottom: 12px; }
.randevu-form .form-control { padding: 11px 14px; font-size: var(--text-sm); }
.randevu-form select.form-control { appearance: auto; }
.randevu-form textarea.form-control { resize: vertical; min-height: 60px; }
/* randevu-result – definition moved to v2.7 block */

/* ═══════════════════════════════════════════
   YORUM SİSTEMİ – Reviews Section
   ═══════════════════════════════════════════ */

/* Grid Layout */
.reviews-section { background: var(--color-bg); }
.reviews-section.section-white { background: var(--color-white); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* Review Card */
.review-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    box-shadow: var(--shadow-sm);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.review-card--featured {
    border-color: var(--color-primary-100);
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    box-shadow: 0 4px 24px rgba(21, 101, 192, 0.10);
}

/* Featured ribbon */
.review-featured-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border: 1px solid var(--color-primary-100);
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

/* Card top */
.review-card-top {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

/* Avatar */
.review-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-border-light);
}
.review-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.review-avatar-initials {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-primary-50);
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Meta */
.review-meta { flex: 1; min-width: 0; }
.review-name {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-meta-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.review-stars { display: inline-flex; gap: 1px; align-items: center; }
.review-star { flex-shrink: 0; }
.review-date {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Source badge */
.review-source { flex-shrink: 0; }
.review-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--badge-color, #64748b) 10%, white);
    border: 1px solid color-mix(in srgb, var(--badge-color, #64748b) 20%, white);
    font-size: 10px;
    font-weight: 600;
    color: var(--badge-color, #64748b);
    white-space: nowrap;
}
.review-source-logo {
    height: 14px; width: auto; object-fit: contain;
}
.review-source-icon { flex-shrink: 0; }
.review-source-name { font-size: 10px; }

/* Card title */
.review-card-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
}

/* Content */
.review-content { flex: 1; }
.review-text {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}
.review-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary);
    padding: 0;
    transition: color var(--transition-base);
}
.review-readmore-btn:hover { color: var(--color-primary-dark); }

/* ── SLIDER LAYOUT ── */
.reviews-slider-wrap { margin-top: var(--space-xl); }
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}
.reviews-slider-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text-secondary);
}
.reviews-slider-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}
.reviews-slider-dots {
    display: flex;
    gap: 6px;
}
.reviews-slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: background var(--transition-base);
}
.reviews-slider-dot.active {
    background: var(--color-primary);
    width: 20px;
    border-radius: 4px;
}

/* ── CTA BAR ── */
.reviews-cta-bar {
    margin-top: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
}
.reviews-cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}
.reviews-cta-text {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    font-size: var(--text-base);
    font-weight: 600;
}
.reviews-cta-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}
.reviews-cta-bar .btn-primary {
    background: white;
    color: var(--color-primary-dark);
    border-color: white;
}
.reviews-cta-bar .btn-primary:hover {
    background: var(--color-primary-50);
    color: var(--color-primary-dark);
}
.reviews-cta-bar .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: white;
}
.reviews-cta-bar .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-slider { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .reviews-slider { grid-template-columns: 1fr; }
    .reviews-cta-bar { padding: var(--space-lg); }
    .reviews-cta-bar-inner { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
}

/* ═══════════════════════════════════════════════════════════
   RANDEVU SAYFASI
   ═══════════════════════════════════════════════════════════ */
.randevu-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: start;
}

/* Form sütunu kart */
.randevu-page-form-col {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-2xl);
    box-shadow: var(--shadow-card);
    min-width: 0;
}

/* Adım göstergesi */
.randevu-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}
.randevu-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    font-weight: 500;
}
.randevu-step.active { color: var(--color-primary); }
.randevu-step.done   { color: var(--color-success); }
.step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}
.randevu-step.active .step-num {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 0 3px var(--color-primary-100);
}
.randevu-step.done .step-num {
    background: var(--color-success);
    color: white;
    font-size: 0;
}
.randevu-step.done .step-num::after {
    content: '✓';
    font-size: 13px;
    font-weight: 700;
}
.randevu-step.done + .randevu-step-line { background: var(--color-success); }
.randevu-step-line {
    flex: 1;
    height: 1px;
    background: var(--color-border);
    margin: 0 var(--space-sm);
}

/* Form adımları */
.randevu-form-step { display: none; }
.randevu-form-step.active { display: block; }
.randevu-step-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}
.form-label-page {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}
.form-label-page .req { color: var(--color-error); }
.form-control-page {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}
.form-control-page:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-100);
}
.form-row-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}
.form-control-page { min-width: 0; width: 100%; box-sizing: border-box; }

/* Kategori kartları */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}
.service-card-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}
.service-card-opt:hover { border-color: var(--color-primary); background: var(--color-primary-50); }
.service-card-opt.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-50);
    box-shadow: 0 0 0 2px var(--color-primary-100);
}
.service-card-icon { font-size: 22px; }
.service-card-name { font-size: var(--text-xs); font-weight: 600; color: var(--color-text); line-height: 1.3; }

/* Hekim grid */
.doctor-select-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}
.doctor-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.doctor-opt:hover  { border-color: var(--color-primary); background: var(--color-primary-50); }
.doctor-opt.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-50);
    box-shadow: 0 0 0 2px var(--color-primary-100);
}
.doctor-opt-icon  { font-size: 20px; }
.doctor-opt-photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.doctor-opt-name  { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }

/* Navigasyon butonları */
.randevu-step-nav {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border-light);
}
.randevu-step-nav .btn-primary { margin-left: auto; }

/* Zaman notu */
.randevu-time-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-top: var(--space-md);
    line-height: 1.5;
}
.randevu-time-note svg { flex-shrink: 0; margin-top: 1px; color: var(--color-primary); }

/* KVKK */
.randevu-kvkk-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    cursor: pointer;
    line-height: 1.5;
}
.randevu-kvkk-check input { margin-top: 3px; width: 15px; height: 15px; flex-shrink: 0; accent-color: var(--color-primary); }

/* Özet kutusu */
.randevu-summary {
    background: var(--color-primary-50);
    border: 1px solid var(--color-primary-100);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}
.summary-title {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: var(--text-sm);
    padding: 4px 0;
    border-bottom: 1px solid var(--color-primary-100);
    color: var(--color-text-secondary);
}
.summary-row:last-child { border-bottom: none; }
.summary-row strong { color: var(--color-text); font-weight: 600; }

/* Bilgi paneli */
.randevu-trust-box, .randevu-contact-box, .randevu-doctors-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
    margin-bottom: var(--space-md);
}
.randevu-trust-box h4, .randevu-contact-box h4, .randevu-doctors-box h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}
.randevu-trust-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.randevu-trust-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.5;
}
.trust-icon {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--color-success-bg); color: var(--color-success);
    font-size: 11px; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.randevu-phone-link {
    display: flex; align-items: center; gap: 8px;
    font-size: var(--text-lg); font-weight: 700; color: var(--color-primary);
    text-decoration: none; margin-bottom: var(--space-sm);
}
.randevu-phone-link:hover { color: var(--color-primary-dark); }
.randevu-address {
    display: flex; align-items: flex-start; gap: 6px;
    font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.5; margin: 0;
}
.randevu-doctor-list { display: flex; flex-direction: column; gap: 10px; }
.randevu-doctor-item {
    display: flex; align-items: center; gap: 10px;
}
.randevu-doctor-item img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.randevu-doctor-name { font-size: var(--text-sm); font-weight: 600; color: var(--color-text); }
.randevu-doctor-title { font-size: var(--text-xs); color: var(--color-text-muted); }

/* Form result */
.randevu-result {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    display: flex; align-items: center; gap: 8px;
    margin-top: var(--space-lg);
}
.randevu-result.success { background: var(--color-success-bg); color: var(--color-success); border: 1px solid #bbf7d0; }
.randevu-result.error   { background: var(--color-error-bg); color: var(--color-error); border: 1px solid #fecaca; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Randevu info col sticky (desktop) */
.randevu-page-info-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

/* Randevu responsive */
@media (max-width: 1024px) {
    .randevu-page-layout { grid-template-columns: 1fr 280px; gap: var(--space-xl); }
}
@media (max-width: 768px) {
    .randevu-page-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
    .randevu-page-info-col {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
    .randevu-doctors-box { display: none; }
    .randevu-page-form-col { padding: var(--space-lg); border-radius: var(--radius-lg); }
    .service-card-grid { grid-template-columns: repeat(2, 1fr); }
    .randevu-steps { padding: var(--space-sm) var(--space-md); gap: 0; margin-bottom: var(--space-lg); }
    .randevu-step-title { font-size: var(--text-lg); margin-bottom: var(--space-md); }
    .doctor-select-grid { gap: 6px; }
    .doctor-opt { padding: 8px 10px; font-size: var(--text-sm); }
    .doctor-opt-photo { width: 40px; height: 40px; }
    .randevu-trust-box, .randevu-contact-box { padding: var(--space-md); margin-bottom: 0; }
	
	
    .randevu-step-nav { display: inline; }
    .randevu-step-nav .btn { width: 100%; justify-content: center; margin-bottom:7px; margin-top:10px;}
    .service-card-opt { padding: 12px 8px; }
}
@media (max-width: 480px) {
    .randevu-page-info-col { grid-template-columns: 1fr; }
    .service-card-grid { grid-template-columns: repeat(2, 1fr); }
    .randevu-trust-list li { font-size: var(--text-xs); }
}

/* ═══════════════════════════════════════════════════════════
   BEFORE / AFTER MODÜLÜ
   ═══════════════════════════════════════════════════════════ */

/* Inline mode – ayrı section değil, içerik akışı içinde */
.ba-inline-wrap {
    margin-top: var(--space-3xl);
    padding-top: var(--space-3xl);
    border-top: 2px solid var(--color-border-light);
}
.ba-inline-wrap .section-header { margin-bottom: var(--space-2xl); }
@media (max-width: 768px) {
    .ba-inline-wrap { margin-top: var(--space-2xl); padding-top: var(--space-2xl); }
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
}
.ba-grid-single { grid-template-columns: minmax(0, 660px); justify-content: center; }

.ba-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    display: flex; flex-direction: column;
    position: relative;
}
.ba-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); z-index: 5; }

/* Card header */
.ba-card-header { padding: var(--space-md) var(--space-lg) 0; }
.ba-card-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-sm);
}
.ba-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

/* Info / Popover button */
.ba-info-btn {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--color-primary-ultra-light, #EFF6FF);
    color: var(--color-primary);
    border: 1px solid var(--color-primary-light, #BFDBFE);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    transition: background var(--transition-fast), color var(--transition-fast);
    padding: 0;
}
.ba-info-btn:hover, .ba-info-btn.open {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.ba-popover {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    width: 230px;
    background: var(--color-text);
    color: #fff;
    font-size: var(--text-xs);
    line-height: 1.6;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
    text-align: left;
    font-weight: 400;
    white-space: normal;
}
.ba-popover::after {
    content: '';
    position: absolute;
    top: 100%; right: 8px;
    border: 6px solid transparent;
    border-top-color: var(--color-text);
}
.ba-info-btn:hover .ba-popover,
.ba-info-btn.open  .ba-popover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Comparison Slider */
.ba-comparison {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-y;
    background: var(--color-bg);
    margin-top: var(--space-sm);
    flex: 1;
}
.ba-before, .ba-after {
    position: absolute;
    inset: 0;
}
.ba-before img, .ba-after img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}
.ba-after {
    clip-path: inset(0 0 0 50%);
    will-change: clip-path;
}
.ba-label {
    position: absolute;
    bottom: var(--space-sm);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: var(--radius-full);
    pointer-events: none;
    z-index: 2;
}
.ba-label-before { left: var(--space-sm);  background: rgba(0,0,0,.55); color: #fff; }
.ba-label-after  { right: var(--space-sm); background: var(--color-primary); color: #fff; }

.ba-divider {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    will-change: left;
    z-index: 3;
    box-shadow: 0 0 6px rgba(0,0,0,.25);
}
.ba-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 14px rgba(0,0,0,.28);
    display: flex; align-items: center; justify-content: center;
    cursor: ew-resize;
    pointer-events: all;
    color: var(--color-primary);
    transition: transform .12s ease, box-shadow .12s ease;
}
.ba-comparison:active .ba-handle,
.ba-comparison:hover  .ba-handle {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0,0,0,.32);
}

/* Drag hint overlay */
.ba-drag-hint {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) translateY(28px);
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    pointer-events: none;
    letter-spacing: .04em;
    transition: opacity .3s ease;
    z-index: 4;
    white-space: nowrap;
}

/* CTA */
.ba-card-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid var(--color-border-light);
    margin-top: auto;
}
.ba-card-actions .btn-primary { margin-left: auto; }
.ba-cta-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .ba-comparison { aspect-ratio: 1/1; }
    .ba-handle { width: 48px; height: 48px; }
    .ba-card-header { padding: var(--space-sm) var(--space-md) 0; }
    .ba-card-actions { padding: var(--space-sm) var(--space-md); }
    .ba-popover { right: auto; left: 0; }
    .ba-popover::after { right: auto; left: 8px; }
}
@media (max-width: 480px) {
    .ba-comparison { aspect-ratio: 5/4; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG – TEPKİLER / YAZAR KARTI / YORUMLAR
   ═══════════════════════════════════════════════════════════ */

/* Tepkiler */
.blog-reactions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}
.blog-reactions-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    margin-right: var(--space-xs);
}
.reaction-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-white);
    cursor: pointer;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}
.reaction-btn:hover { border-color: var(--color-primary); background: var(--color-primary-50); color: var(--color-primary); }
.reaction-btn.active { border-color: var(--color-primary); background: var(--color-primary-50); color: var(--color-primary); }
.reaction-btn.active .reaction-count { color: var(--color-primary); font-weight: 700; }
.reaction-emoji { font-size: 18px; line-height: 1; }
.reaction-count { min-width: 16px; text-align: center; }

/* Yazar Kartı */
.blog-author-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
}
.blog-author-photo {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary-50);
    flex-shrink: 0;
}
.blog-author-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--color-primary-50);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.blog-author-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-text-muted); margin-bottom: 4px; }
.blog-author-name { font-size: var(--text-base); font-weight: 700; color: var(--color-text); }
.blog-author-name a { color: var(--color-primary); text-decoration: none; }
.blog-author-name a:hover { text-decoration: underline; }
.blog-author-title { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: 3px; }

/* Yorumlar */
.blog-comments-list { display: flex; flex-direction: column; gap: var(--space-lg); margin-bottom: var(--space-2xl); }
.blog-comment {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}
.blog-comment-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-primary-50);
    color: var(--color-primary);
    font-weight: 800;
    font-size: var(--text-lg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.blog-comment-body {
    flex: 1;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
}
.blog-comment-header { display: flex; align-items: baseline; gap: var(--space-md); margin-bottom: var(--space-sm); flex-wrap: wrap; }
.blog-comment-name { font-size: var(--text-sm); font-weight: 700; color: var(--color-text); }
.blog-comment-date { font-size: var(--text-xs); color: var(--color-text-muted); }
.blog-comment-text { margin: 0; font-size: var(--text-sm); color: var(--color-text-secondary); line-height: 1.7; }

/* Yorum Formu */
.blog-comment-form-wrap {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}
.blog-comment-form-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--space-lg);
}

@media (max-width: 600px) {
    .blog-author-card { flex-direction: column; text-align: center; }
    .blog-comment { gap: var(--space-sm); }
    .blog-comment-avatar { width: 36px; height: 36px; font-size: var(--text-base); }
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 22, 40, 0.96);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-lg);
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    max-width: min(94vw, 1100px);
    cursor: default;
}
.lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: var(--radius-lg);
    object-fit: contain;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    display: block;
    user-select: none;
}
.lightbox-caption {
    color: rgba(255,255,255,0.7);
    font-size: var(--text-sm);
    text-align: center;
    max-width: 600px;
    line-height: 1.5;
    padding: 0 var(--space-xl);
}
.lightbox-counter {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    background: rgba(255,255,255,0.08);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    z-index: 10;
}
.lightbox-close {
    position: fixed;
    top: 16px; right: 20px;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
    z-index: 10;
    padding: 0;
    font-size: 0;
    line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav-btn {
    position: fixed;
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
    z-index: 10;
    padding: 0;
    font-size: 0;
}
.lightbox-nav-btn:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }
.gallery-item { cursor: pointer; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Lightbox loader / spinner */
.lb-loader {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 15;
}
.lb-loader.active { display: flex; }
.lb-spinner {
    width: 44px; height: 44px;
    border: 3px solid rgba(255,255,255,0.18);
    border-top-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    animation: lb-spin 0.65s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* Image transitions */
.lightbox-img { transition: opacity 0.2s ease; }
.lightbox-img.lb-out { opacity: 0; }
.lightbox-inner { transition: transform 0.18s ease, opacity 0.18s ease; will-change: transform; }

/* Swipe-down hint (mobile) */
.lb-swipe-hint {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    letter-spacing: 0.04em;
    pointer-events: none;
    z-index: 10;
    animation: lb-hint-fade 4s ease forwards;
}
.lb-swipe-hint svg { animation: lb-hint-bounce 1.5s ease-in-out infinite; }
@keyframes lb-hint-bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes lb-hint-fade { 0%,60% { opacity: 1; } 100% { opacity: 0; } }

@media (max-width: 768px) {
    .lightbox-nav-btn { width: 40px; height: 40px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
    .lightbox-img { max-height: 68vh; }
    .lb-swipe-hint { display: flex; }
}
@media (min-width: 769px) {
    .lb-swipe-hint { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   RANDEVU FORM WIDGET – DATE/TIME RESPONSIVE GRID
   ═══════════════════════════════════════════════════════════ */
.randevu-form-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
@media (max-width: 380px) {
    .randevu-form-date-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   HİZMET KATEGORİ LANDING SAYFASI (ana hizmet, alt hizmetsiz)
   ═══════════════════════════════════════════════════════════ */
.hizmet-kategori-hero {
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-white) 100%);
    border: 1px solid var(--color-primary-100);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}
.hizmet-kategori-hero-icon {
    width: 80px; height: 80px;
    border-radius: var(--radius-xl);
    background: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 36px;
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}
.hizmet-kategori-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 var(--space-sm);
}
.hizmet-kategori-hero-desc {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
}
.hizmet-alt-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}
.hizmet-alt-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}
.hizmet-alt-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    color: inherit;
}
.hizmet-alt-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-primary-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    font-size: 22px;
    margin-bottom: var(--space-xs);
}
.hizmet-alt-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}
.hizmet-alt-card-desc {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}
.hizmet-alt-card-arrow {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-sm);
}
/* ── Ana Kategori Landing Layout ── */
.hizmet-kat-landing {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-items: start;
}
.hizmet-kat-main { min-width: 0; }
.hizmet-kat-intro {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-primary-50);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.hizmet-kat-sub-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-border);
}
.hizmet-kat-sidebar { min-width: 0; }
.hizmet-kat-sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
@media (max-width: 1024px) {
    .hizmet-kat-landing { grid-template-columns: 1fr 300px; }
}
@media (max-width: 768px) {
    .hizmet-kat-landing { grid-template-columns: 1fr; }
    .hizmet-kat-sidebar-sticky { position: static; }
    .hizmet-kategori-hero { flex-direction: column; text-align: center; padding: var(--space-xl); }
    .hizmet-kategori-hero-icon { width: 64px; height: 64px; font-size: 28px; }
    .hizmet-alt-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hizmet-alt-cards-grid { grid-template-columns: 1fr; }
    .hizmet-kat-intro { padding: var(--space-md); font-size: var(--text-base); }
}

/* ═══════════════════════════════════════════════════════════
   RANDEVU SAYFASI – HEKİM SEÇIMI İYİLEŞTİRME
   ═══════════════════════════════════════════════════════════ */
.doctor-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-sm);
}
.doctor-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-md) var(--space-sm);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--color-white);
    text-align: center;
    position: relative;
}
.doctor-opt:hover { border-color: var(--color-primary); background: var(--color-primary-50); }
.doctor-opt.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-50);
    box-shadow: 0 0 0 2px var(--color-primary-100);
}
.doctor-opt.selected::after {
    content: '✓';
    position: absolute;
    top: 6px; right: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
}
.doctor-opt-photo {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    transition: border-color var(--transition-fast);
}
.doctor-opt.selected .doctor-opt-photo { border-color: var(--color-primary); }
.doctor-opt-icon { font-size: 28px; line-height: 1; }
.doctor-opt-name {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}
@media (max-width: 480px) {
    .doctor-select-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM UI KATMANI v2.5
   ═══════════════════════════════════════════════════════════ */

/* ── Section arka plan dokusu ── */
.section-alt {
    background-color: var(--color-bg-alt);
    background-image: radial-gradient(circle, rgba(180,192,210,0.45) 1px, transparent 1px);
    background-size: 28px 28px;
}
.section-white { background: var(--color-white); }

/* Section-header underline büyüme animasyonu */
@keyframes line-grow {
    from { width: 0; opacity: 0; }
    to   { width: 52px; opacity: 1; }
}
[data-animate].animate-in .section-title::after {
    animation: line-grow 0.55s cubic-bezier(.4,0,.2,1) forwards;
}
[data-animate]:not(.animate-in) .section-title::after { width: 0; opacity: 0; }

/* ── Service card üst gradient çizgi ── */
.service-card { position: relative; }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}
.service-card:hover::before { opacity: 1; }

/* ── Blog card üst çizgi ── */
.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-secondary));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}
.blog-card { position: relative; }
.blog-card:hover::before { opacity: 1; }

/* ── Stat icon renk paleti ── */
.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    color: var(--color-primary);
}
.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
}
.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: var(--color-accent);
}
.stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #EDE7F6 0%, #D1C4E9 100%);
    color: #6A1B9A;
}
.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) !important;
    color: #fff !important;
}

/* ── Feature card icon renk paleti ── */
.feature-card:nth-child(1) .feature-icon { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); color: var(--color-primary); }
.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #E0F7FA, #B2EBF2); color: #00838F; }
.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); color: #2E7D32; }
.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); color: #E65100; }
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) !important;
    color: #fff !important;
}

/* ── Btn primary gradient ── */
.btn-primary {
    background: linear-gradient(135deg, #FF6D00 0%, #E65100 100%);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #E65100 0%, #BF360C 100%);
}

/* ── Btn secondary gradient ── */
.btn-secondary {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* ── Social link brand renkleri ── */
.social-link[aria-label="Facebook"]:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-link[aria-label="Instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; color: #fff; }
.social-link[aria-label="YouTube"]:hover   { background: #FF0000; border-color: #FF0000; color: #fff; }
.social-link[aria-label="LinkedIn"]:hover  { background: #0077B5; border-color: #0077B5; color: #fff; }
.social-link[aria-label="WhatsApp"]:hover  { background: #25D366; border-color: #25D366; color: #fff; }
.social-link[aria-label="X (Twitter)"]:hover { background: #000; border-color: #000; color: #fff; }

/* ── Footer radyal glow overlay ── */
.footer-top { position: relative; overflow: hidden; }
.footer-top::before {
    content: '';
    position: absolute;
    top: -150px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(21,101,192,0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}
.footer-top::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
    pointer-events: none;
}
.footer-top .container { position: relative; z-index: 1; }

/* ── Back to top butonu premium ── */
.back-to-top {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(21,101,192,0.32);
}
.back-to-top:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    box-shadow: 0 8px 24px rgba(21,101,192,0.45);
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
}

/* ── Sticky mobile CTA premium ── */
.sticky-mobile-cta {
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    background: rgba(255,255,255,0.95);
    border-top: 1px solid rgba(221,227,236,0.8);
}

/* ── Section label daha belirgin ── */
.section-label {
    font-size: 11px;
    letter-spacing: 0.10em;
    background: linear-gradient(135deg, var(--color-primary-50), rgba(0,137,123,0.08));
    border: 1px solid var(--color-primary-100);
    color: var(--color-primary);
}

/* ── Testimonial büyük tırnak ── */
.testimonial-quote-icon {
    font-size: 5rem;
    line-height: 0.75;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--color-primary-100);
    margin-bottom: var(--space-sm);
    display: block;
    user-select: none;
}

/* ── Mobile nav header bar + contact + chevron ── */
.mobile-nav-header-bar {
    display: none;
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
    z-index: 2;
    flex-shrink: 0;
}
 
.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-primary);
}
.mobile-nav-brand svg { flex-shrink: 0; color: var(--color-primary); }
.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-close:hover { background: var(--color-primary-50); color: var(--color-primary); }

.mobile-nav-contact {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-sm) var(--space-sm) var(--space-md);
    border-top: 1px solid var(--color-border-light);
    background: var(--color-bg);
    margin-top: auto;
}
.mobile-nav-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), color var(--transition-fast);
    line-height: 1.4;
}
a.mobile-nav-contact-item:hover { background: var(--color-primary-50); color: var(--color-primary); }
.mobile-nav-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); opacity: 0.7; }

.nav-chevron { display: none; margin-left: auto; opacity: 0.35; flex-shrink: 0; }
.nav-link.active .nav-chevron,
.nav-link:hover .nav-chevron { opacity: 0.7; }

/* ── Mobil nav: panel stilleri ── */
@media (max-width: 768px) {
    .mobile-nav-header-bar { display: flex; }
    .mobile-nav-contact { display: flex; }
    .nav-chevron { display: flex; align-items: center; }

    .main-nav {
        padding-top: 64px;
        border-left: 4px solid var(--color-primary);
        display: flex;
        flex-direction: column;
    }
    .nav-list { margin-top: 30px; flex: 0 0 auto; }
    .nav-link {
        display: flex;
        align-items: center;
        border-left: 3px solid transparent;
        padding: 14px var(--space-md) 14px calc(var(--space-md) - 3px);
        font-size: var(--text-sm);
        color: var(--color-text);
        border-radius: 0;
        border-bottom: 1px solid var(--color-border-light);
        width: 100%;
        gap: var(--space-sm);
    }
    .nav-link:hover {
        border-left-color: var(--color-primary);
        background: var(--color-primary-50);
        color: var(--color-primary);
    }
    .nav-link.active {
        border-left-color: var(--color-primary);
        background: var(--color-primary-50);
        color: var(--color-primary);
        font-weight: 600;
    }
    .nav-link.active::after { display: none; }
    .mobile-nav-ctas { flex-direction: column; padding: var(--space-md); gap: 10px; }
    .mobile-nav-cta-btn { width: 100%; justify-content: center; }
}

/* ── Doctor card photo daha geniş ── */
.doctor-card-photo { width: 130px; height: 130px; }
.doctor-card.photo-loading::after { width: 130px; height: 130px; }

/* ── Kart grid: 600px'de 2 kolon (tablet arası) ── */
@media (min-width: 481px) and (max-width: 767px) {
    .cards-grid, .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Hero section daha güçlü depth ── */
.hero::before {
    background:
        radial-gradient(ellipse 60% 90% at 85% 15%, rgba(255,255,255,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 65% at 10% 85%, rgba(0,137,123,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 35% 50% at 50% 50%, rgba(21,101,192,0.06) 0%, transparent 70%);
}

/* ── WhatsApp float premium ── */
.whatsapp-float {
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0.3);
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 30px rgba(37,211,102,0.52);
}

/* ── Section-white / section-alt soft gölge geçiş ── */
.section-white + .section-alt,
.section-alt  + .section-white {
    box-shadow: inset 0 4px 16px rgba(0,0,0,0.025);
}

/* ── Hizmet kategorisi landing ── wider sidebar only on desktop ── */
@media (min-width: 769px) {
    .hizmet-kat-landing { grid-template-columns: 1fr 340px; align-items: start; }
    .hizmet-kat-sidebar-sticky { position: sticky; top: calc(var(--header-height) + var(--space-lg)); }
}

/* ── Blog card tarih etiketi ── */
.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    padding: 3px 10px;
    margin-bottom: var(--space-sm);
}

/* ── Mini bilgi grid geniş ── */
@media (min-width: 769px) {
    .mini-bilgi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   INDEX İLETİŞİM FORMU + HARİTA
   ═══════════════════════════════════════════════════════════ */
.home-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}
.home-contact-form-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
}
.home-contact-cards { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-lg); }
.home-contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    color: var(--color-text);
}
.home-contact-card:hover { border-color: var(--color-primary-100); box-shadow: var(--shadow-sm); }
.home-contact-card-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-primary-50), var(--color-primary-100));
    color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.home-contact-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: 2px; }
.home-contact-card-value { font-weight: 600; font-size: var(--text-sm); color: var(--color-text); }
.home-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-card);
    background: var(--color-bg-alt);
}
.home-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-md);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--color-bg);
    border: 1px solid var(--color-border-light);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}
.home-hours-dot {
    width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.home-hours-dot.open  { background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.home-hours-dot.closed { background: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.2); }
@media (max-width: 768px) {
    .home-contact-layout { grid-template-columns: 1fr; gap: var(--space-xl); }
    .home-map-wrap { height: 220px; }
    .home-contact-form-card { padding: var(--space-lg); }
}

/* ── Trust Bar ── */
.trust-bar {
    background: linear-gradient(135deg, #0D47A1 0%, #1565C0 50%, #00695C 100%);
    padding: var(--space-xl) 0;
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
    align-items: center;
}
.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
}
.trust-bar-item svg { flex-shrink: 0; opacity: 0.85; }
.trust-bar-item strong { display: block; font-size: var(--text-sm); font-weight: 700; color: #fff; line-height: 1.2; }
.trust-bar-item span { font-size: 11px; color: rgba(255,255,255,0.6); }
@media (max-width: 1024px) { .trust-bar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); } }

/* ═══════════════════════════════════════════════════════════
   BLOG KATEGORİ PILLS + LAYOUT
   ═══════════════════════════════════════════════════════════ */
.blog-cat-bar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
    padding: var(--space-md) 0;
    position: sticky;
    top: var(--header-height);
    z-index: 40;
}
.blog-cat-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.blog-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
    background: var(--color-bg-alt);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.blog-cat-pill:hover { background: var(--color-primary-50); color: var(--color-primary); border-color: var(--color-primary-100); }
.blog-cat-pill.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.blog-cat-pill-count {
    background: rgba(255,255,255,0.25);
    border-radius: 20px;
    padding: 1px 6px;
    font-size: 10px;
    font-weight: 700;
}
.blog-cat-pill.active .blog-cat-pill-count { background: rgba(255,255,255,0.25); }
.blog-cat-pill:not(.active) .blog-cat-pill-count { background: var(--color-border-light); color: var(--color-text-muted); }

/* Blog layout (liste + sidebar) */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
    align-items: start;
}
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}
/* Featured (ilk kart) */
.blog-card-featured { grid-column: 1 / -1; }
.blog-card-featured .blog-card-image { height: 320px; }
.blog-card-featured .blog-card-title { font-size: var(--text-xl); }

/* Blog card iyileştirmeleri */
.blog-card-cat-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    z-index: 2;
    pointer-events: none;
}
.blog-card-date, .blog-card-read-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: var(--space-lg); }
.blog-sidebar-widget {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}
.blog-sidebar-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary-100);
}
.blog-sidebar-cats { list-style: none; padding: 0; margin: 0; }
.blog-sidebar-cats li { border-bottom: 1px solid var(--color-border-light); }
.blog-sidebar-cats li:last-child { border-bottom: none; }
.blog-sidebar-cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 4px;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.blog-sidebar-cats a:hover, .blog-sidebar-cats a.active { color: var(--color-primary); padding-left: 6px; }
.blog-sidebar-cats a span {
    background: var(--color-bg-alt);
    border-radius: var(--radius-full);
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
}
.blog-sidebar-cats a.active span { background: var(--color-primary-50); color: var(--color-primary); }
.blog-sidebar-posts { display: flex; flex-direction: column; gap: 12px; }
.blog-sidebar-post {
    display: flex;
    gap: var(--space-sm);
    text-decoration: none;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border-light);
}
.blog-sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.blog-sidebar-post:hover .blog-sidebar-post-title { color: var(--color-primary); }
.blog-sidebar-post-img {
    width: 72px; height: 56px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-alt);
}
.blog-sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-sidebar-post-info { display: flex; flex-direction: column; gap: 4px; }
.blog-sidebar-post-title { font-size: var(--text-xs); font-weight: 600; color: var(--color-text); line-height: 1.4; transition: color var(--transition-fast); }
.blog-sidebar-post-date { font-size: 11px; color: var(--color-text-muted); }
.blog-sidebar-cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: transparent;
    text-align: center;
    color: #fff;
}
.blog-sidebar-cta-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-md);
    color: rgba(255,255,255,0.9);
}
.blog-sidebar-cta h4 { color: #fff; font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-sm); }
.blog-sidebar-cta p { color: rgba(255,255,255,0.72); font-size: var(--text-xs); margin-bottom: var(--space-md); line-height: 1.6; }
.blog-sidebar-cta .btn-primary { background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); }
.blog-sidebar-cta .btn-primary:hover { background: rgba(255,255,255,0.32); }

/* Responsive blog layout */
@media (max-width: 1024px) { .blog-layout { grid-template-columns: 1fr 260px; gap: var(--space-2xl); } }
@media (max-width: 768px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { display: none; }
    .blog-list-grid { grid-template-columns: 1fr; }
    .blog-card-featured .blog-card-image { height: 220px; }
    .blog-cat-bar { position: static; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG DETAY LAYOUT + READING PROGRESS
   ═══════════════════════════════════════════════════════════ */
.reading-progress {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    width: 0%;
    z-index: 1000;
    transition: width 0.1s linear;
    transform-origin: left;
}
.blog-detay-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-3xl);
    align-items: start;
}
.blog-detay-sidebar { position: sticky; top: calc(var(--header-height) + 28px); }
.blog-sidebar-share-sticky .blog-sidebar-share-btns {
    display: flex; gap: 8px; margin-bottom: var(--space-md);
}
.blog-sidebar-share-btn {
    width: 42px; height: 42px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    flex: 1;
}
.blog-sidebar-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
.blog-sidebar-share-btn.fb { background: #1877F2; }
.blog-sidebar-share-btn.x  { background: #000; }
.blog-sidebar-share-btn.wa { background: #25D366; }
.blog-sidebar-read-time {
    display: flex; align-items: center; gap: 6px;
    font-size: var(--text-xs); color: var(--color-text-muted);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border-light);
}
.blog-sidebar-cat-link {
    display: flex; align-items: center; gap: 6px;
    font-size: var(--text-sm); color: var(--color-primary); text-decoration: none;
    font-weight: 500; transition: color var(--transition-fast);
    padding: 4px 0;
}
.blog-sidebar-cat-link:hover { color: var(--color-primary-dark); }

/* Blog detail meta */
.blog-detail-meta {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: var(--space-sm); margin-bottom: var(--space-xl);
}
.blog-detail-cat-badge {
    display: inline-flex; align-items: center;
    background: var(--color-primary-50);
    color: var(--color-primary);
    border: 1px solid var(--color-primary-100);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
    text-decoration: none; transition: background var(--transition-fast);
}
.blog-detail-cat-badge:hover { background: var(--color-primary); color: #fff; }
.blog-detail-meta-item {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: var(--text-xs); color: var(--color-text-muted);
    padding: 4px 10px; background: var(--color-bg-alt);
    border-radius: var(--radius-full); border: 1px solid var(--color-border-light);
}

/* Blog rich content typography */
.blog-rich-content { line-height: 1.85; color: var(--color-text-secondary); }
.blog-rich-content h2 { font-size: var(--text-2xl); font-family: var(--font-heading); font-weight: 700; margin: var(--space-2xl) 0 var(--space-md); color: var(--color-text); }
.blog-rich-content h3 { font-size: var(--text-xl); font-family: var(--font-heading); font-weight: 700; margin: var(--space-xl) 0 var(--space-sm); color: var(--color-text); }
.blog-rich-content p { margin-bottom: var(--space-lg); }
.blog-rich-content ul, .blog-rich-content ol { padding-left: var(--space-xl); margin-bottom: var(--space-lg); }
.blog-rich-content li { margin-bottom: 8px; }
.blog-rich-content blockquote {
    border-left: 4px solid var(--color-primary);
    background: var(--color-primary-50);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--color-text);
}
.blog-rich-content img { max-width: 100%; border-radius: var(--radius-lg); margin: var(--space-lg) 0; }
.blog-rich-content a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.blog-rich-content strong { color: var(--color-text); font-weight: 700; }

/* Share buttons (inline) */
.blog-share {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: var(--space-md); margin: var(--space-2xl) 0;
    padding: var(--space-lg); background: var(--color-bg-alt);
    border-radius: var(--radius-lg); border: 1px solid var(--color-border-light);
}
.blog-share > strong { font-size: var(--text-sm); color: var(--color-text); }
.blog-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: var(--radius-full);
    font-size: var(--text-xs); font-weight: 600; text-decoration: none;
    color: #fff; border: none; cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
}
.blog-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.blog-share-fb   { background: #1877F2; }
.blog-share-x    { background: #000; }
.blog-share-wa   { background: #25D366; }
.blog-share-copy { background: var(--color-text-secondary); color: #fff; }

.blog-detail-back { margin-top: var(--space-xl); }

@media (max-width: 1024px) { .blog-detay-layout { grid-template-columns: 1fr 240px; gap: var(--space-2xl); } }
@media (max-width: 768px) {
    .blog-detay-layout { grid-template-columns: 1fr; }
    .blog-detay-sidebar { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   v2.7 – MOBİL FİX + TEMA POLISH
   ═══════════════════════════════════════════════════════════ */

/* 1 ▸ Global overflow / layout guard */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* Tüm görseller ve embed'ler container'dan taşmasın */
img, iframe, video, embed { max-width: 100%; }

/* 2 ▸ randevu-result flex düzelt */
.randevu-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    line-height: 1.5;
}
.randevu-result.success { background: var(--color-success-bg); color: #065f46; border: 1px solid #a7f3d0; }
.randevu-result.error   { background: var(--color-error-bg);   color: #991b1b; border: 1px solid #fecaca; }

/* 3 ▸ Blog card cat badge – position relative guard */
.blog-card-image { position: relative; }

/* 4 ▸ Blog cat pills – scrollable on mobile */
@media (max-width: 600px) {
    .blog-cat-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .blog-cat-pills::-webkit-scrollbar { display: none; }
    .blog-cat-pill { flex-shrink: 0; }
    .blog-cat-bar  { position: static; } /* iOS sticky sürükleme bug */
}

/* 5 ▸ Trust bar – 3 cols 768px / 2 cols 480px / 1 col 360px */
@media (max-width: 768px) { .trust-bar-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-md); } }
@media (max-width: 480px) { .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 360px) { .trust-bar-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .trust-bar-item { gap: 8px; } .trust-bar-item strong { font-size: 12px; } }

/* 6 ▸ Spacing: azalt büyük boşlukları mobilede */
@media (max-width: 768px) {
    :root {
        --space-3xl: 48px;
        --space-4xl: 72px;
        --space-2xl: 40px;
    }
}
@media (max-width: 480px) {
    :root {
        --space-2xl: 32px;
        --space-3xl: 40px;
        --space-xl:  28px;
    }
}

/* 7 ▸ iOS form input zoom önleme (font-size < 16px zoom tetikler) */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="date"],
    input[type="time"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* 8 ▸ Hero section mobile polish */
@media (max-width: 768px) {
    .hero-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .hero-stat-num { font-size: var(--text-xl); }
    .hero-trust-item span { font-size: 12px; }
}
@media (max-width: 480px) {
    .hero-grid { padding: var(--space-2xl) 0 calc(var(--space-2xl) + 50px); }
    .hero-badges { flex-wrap: wrap; gap: 6px; }
    .hero-trust { gap: var(--space-sm); }
    .hero-subtitle { font-size: var(--text-sm); }
}

/* 9 ▸ Section header mobile */
@media (max-width: 480px) {
    .section-title { font-size: var(--text-xl); }
    .section-subtitle { font-size: var(--text-sm); }
    .section-label { font-size: 10px; }
}

/* 10 ▸ Stats strip mobile */
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card { padding: var(--space-md); }
    .stat-num  { font-size: var(--text-2xl); }
    .stat-icon { width: 40px; height: 40px; }
}

/* 11 ▸ Kart grid düzeltme – tek sütuna 480'de geç */
@media (max-width: 480px) {
    .cards-grid, .cards-grid-2, .cards-grid-3, .cards-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* 12 ▸ Blog listing mobile layout */
@media (max-width: 768px) {
    .blog-list-grid     { grid-template-columns: 1fr; }
    .blog-card-featured { grid-column: auto; }
    .blog-card-featured .blog-card-image { height: 200px; }
    .blog-card-featured .blog-card-title { font-size: var(--text-lg); }
}

/* 13 ▸ Blog sidebar: on mobile show as horizontal scroll bar at top */
@media (max-width: 768px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { display: flex; flex-direction: row; overflow-x: auto; gap: var(--space-md); padding-bottom: var(--space-sm); }
    .blog-sidebar-widget { min-width: 260px; flex-shrink: 0; }
    .blog-sidebar-widget:last-child { min-width: auto; width: 100%; }
    .blog-sidebar-cta { min-width: 220px; }
}
@media (max-width: 480px) {
    .blog-sidebar { display: none; } /* çok küçük ekranlarda sidebar tamamen gizle */
}

/* 14 ▸ Blog detay mobile layout */
@media (max-width: 768px) {
    .blog-detay-layout  { grid-template-columns: 1fr; gap: var(--space-xl); }
    .blog-detay-sidebar { position: static; display: none; }
    .reading-progress   { top: var(--header-height); }
}

/* 15 ▸ Blog detail meta overflow */
@media (max-width: 480px) {
    .blog-detail-meta   { gap: 6px; }
    .blog-detail-meta-item { font-size: 11px; padding: 3px 8px; }
    .blog-detail-cat-badge { font-size: 10px; padding: 3px 10px; }
}

/* 16 ▸ Blog share butonları wrap + küçültme */
@media (max-width: 600px) {
    .blog-share { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
    .blog-share-btns { width: 100%; }
    .blog-share-btn  { flex: 1; justify-content: center; padding: 8px 10px; }
}

/* 17 ▸ Blog rich content mobile typography */
@media (max-width: 768px) {
    .blog-rich-content h2 { font-size: var(--text-xl); }
    .blog-rich-content h3 { font-size: var(--text-lg); }
    .blog-rich-content blockquote { padding: var(--space-md); }
}

/* 18 ▸ Home contact layout mobile */
@media (max-width: 768px) {
    .home-contact-layout { grid-template-columns: 1fr; gap: var(--space-xl); }
    .home-contact-form-card { padding: var(--space-lg); }
    .home-map-wrap { height: 220px; }
}
@media (max-width: 480px) {
    .home-contact-form-card { padding: var(--space-md); }
    .home-contact-cards { gap: 10px; }
    .home-contact-card { padding: var(--space-sm) var(--space-md); gap: 10px; }
    .home-contact-card-icon { width: 38px; height: 38px; }
    .home-map-wrap { height: 180px; }
}

/* 19 ▸ Page header – 480px alt çok küçük ekran */
@media (max-width: 480px) {
    .page-header {
        /* padding: var(--space-lg) var(--space-sm) calc(var(--space-sm) + 44px); */
    }
    .page-header::after {
        height: 44px;
        clip-path: ellipse(80% 100% at 50% 100%);
    }
    .page-header h1 {
        font-size: clamp(1.05rem, 5.5vw, 1.35rem);
        letter-spacing: -0.01em;
        padding: 0 var(--space-sm);
    }
    .breadcrumb { font-size: 10.5px; padding: 4px 10px; max-width: calc(100% - 2rem); }
}

/* 20 ▸ Testimonial cards mobile */
@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .review-card { padding: var(--space-md); }
}

/* 21 ▸ CTA banner mobile */
@media (max-width: 480px) {
    .cta-inner { gap: var(--space-xl); text-align: center; }
    .cta-text h2 { font-size: var(--text-xl); }
    .cta-text p  { font-size: var(--text-sm); }
    .cta-actions { align-items: stretch; flex-direction: column; width: 100%; }
    .cta-actions .btn { width: 100%; text-align: center; justify-content: center; }
}

/* 22 ▸ Footer mobile */
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-contact-item { font-size: var(--text-xs); }
    .footer-hours-row { font-size: var(--text-xs); }
}

/* 23 ▸ Btn touch – min-height zaten 44px, small buton için de zorunlu tut */
@media (max-width: 768px) {
    .btn-sm { min-height: 40px; padding: 9px 16px; }
}

/* 24 ▸ Sticky header – ios safari fix */
.site-header { -webkit-transform: translateZ(0); transform: translateZ(0); }

/* 25 ▸ Container küçük ekran padding */
@media (max-width: 360px) {
    .container { padding-left: 12px; padding-right: 12px; }
}

/* 26 ▸ Pagination mobile */
@media (max-width: 480px) {
    .pagination { gap: 4px; }
    .pagination .btn { min-width: 34px; padding: 7px 10px; font-size: 12px; }
}

/* 27 ▸ Doctor card image height mobile */
@media (max-width: 480px) {
    .doctor-photo { height: 220px; }
}

/* 28 ▸ Gallery grid mobile */
@media (max-width: 360px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}

/* 29 ▸ FAQ accordion mobile */
@media (max-width: 480px) {
    .faq-question { font-size: var(--text-sm); padding: var(--space-md); }
    .faq-answer-inner { font-size: var(--text-sm); padding: 0 var(--space-md) var(--space-md); }
}

/* 30 ▸ Before-After slider handle (touch target büyüt) */
@media (max-width: 768px) {
    .ba-handle { width: 44px; height: 44px; }
}

/* 31 ▸ Theme polish: smooth scrollbar rengi */
@media (min-width: 769px) {
    ::-webkit-scrollbar { width: 8px; height: 8px; }
    ::-webkit-scrollbar-track { background: var(--color-bg); }
    ::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--color-primary-100); }
}

/* 32 ▸ Text overflow guard (long unbreakable strings) */
.blog-card-title a,
.blog-sidebar-post-title,
.blog-rich-content p,
.home-contact-card-value {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* 33 ▸ Image lazy placeholder animasyonu düzelt */
img.lazy { background: linear-gradient(90deg, var(--color-bg-alt) 25%, #e2e8f0 50%, var(--color-bg-alt) 75%); background-size: 400% 100%; animation: sk-loading 1.4s ease infinite; }
img.loaded { animation: none; background: none; }

/* 34 ▸ Focus visible global improvement */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* 35 ▸ Reading progress bar fix for sticky header */
.reading-progress { top: var(--header-height); }

/* ═══════════════════════════════════════════════════════════
   v2.7b – EK MOBİL DÜZELTMELER
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Service process steps – mobil overflow ── */
@media (max-width: 600px) {
    .service-process ol li {
        padding-left: 36px;
        margin-left: 12px;
    }
    .service-process ol li::before {
        left: -12px;
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    .landing-content ol li {
        padding-left: 36px;
        margin-left: 12px;
    }
    .landing-content ol li::before {
        left: -12px;
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    .service-content-block ol li {
        padding-left: 36px;
    }
}

/* ── 2. Content-area padding mobilde azalt ── */
@media (max-width: 768px) {
    .content-area { padding: var(--space-xl) 0; }
    .content-area--flush { padding-top: 0; }
    .content-area h2 { font-size: var(--text-xl); }
    .content-area h3 { font-size: var(--text-lg); }
}

/* ── 3. Doctor detail: profil kartı önce gelsin mobilde ── */
@media (max-width: 768px) {
    .doctor-detail-layout { grid-template-columns: 1fr; gap: var(--space-xl); }
    .doctor-card--sticky { position: static; }
}
/* Doctor card: tek sütun düzeninde ortala */
@media (max-width: 480px) {
    .cards-grid .doctor-card { max-width: 340px; margin: 0 auto; width: 100%; }
}
/* 2-sütun grid'de doctor kartları eşit genişlik */
@media (min-width: 481px) and (max-width: 767px) {
    .cards-grid .doctor-card { max-width: 100%; margin: 0; width: 100%; }
}

/* ── 4. Hizmet alt kartları – minmax mobil düzelt ── */
@media (max-width: 540px) {
    .hizmet-alt-cards-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (min-width: 541px) and (max-width: 768px) {
    .hizmet-alt-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── 5. Blog sidebar 768px – yatay scroll gizle scrollbar ── */
@media (max-width: 768px) {
    .blog-layout .blog-sidebar {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .blog-layout .blog-sidebar::-webkit-scrollbar { display: none; }
}

/* ── 6. Hero stats grid çakışma – v2.7 kuralını destekle ── */
@media (max-width: 768px) {
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 7. Nav overlay z-index ve görünürlük ── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-base);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; opacity: 1; }
@media (max-width: 768px) {
    body.nav-open { overflow: hidden; }
}

/* ── 8. Sticky mobile CTA z-index ── (rule consolidated, z-index eklendi ana tanımda) */

/* ── 9. Service detail sidebar mobil: içerik altında göster ── */
@media (max-width: 768px) {
    /* grid zaten 1fr'a dönüyor (satır 1971), sadece sidebar'ı düzelt */
    .service-detail-sidebar {
        position: static;
        width: 100%;
    }
    /* Sidebar randevu formunu mobilde kompakt göster */
    .service-detail-sidebar .randevu-form-widget {
        padding: var(--space-md);
    }
    /* ilgili tedaviler widget'i mobilde yatay scroll ile */
    .service-sidebar-related ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .service-sidebar-related ul li {
        border-bottom: none;
    }
    .service-sidebar-related ul li a {
        background: var(--color-bg-alt);
        border: 1px solid var(--color-border-light);
        border-radius: var(--radius-full);
        padding: 5px 12px;
        font-size: var(--text-xs);
        white-space: nowrap;
    }
    /* hizmet kategorisi landing – sidebar da içerik altında */
    .hizmet-kat-sidebar-sticky { position: static; }
    .hizmet-kat-sidebar { width: 100%; }
}

/* ── 10. Service content + sidebar küçük ekran ── */
@media (max-width: 480px) {
    .service-content-block h2 { font-size: var(--text-xl); }
    .service-sidebar-cta { padding: var(--space-md); }
    .service-sidebar-cta h3 { font-size: var(--text-lg); }
}

/* ── 11. Randevu formu + steps mobil düzelt ── */
@media (max-width: 768px) {
    .randevu-steps  { overflow-x: auto; }
    .step-connector { display: none; }
}
@media (max-width: 480px) {
    .randevu-page-layout { grid-template-columns: 1fr !important; }
    .randevu-page-sidebar { display: none; }
    .randevu-page-form-col { padding: var(--space-md) !important; }
}

/* ── 12. İletişim sayfası mobil ── */
@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr !important; gap: var(--space-xl); }
    .contact-map { height: 240px; }
}
@media (max-width: 480px) {
    .contact-info-item { flex-direction: column; gap: var(--space-sm); align-items: flex-start; }
}

/* ── 13. Genel tablo taşma koruması ── */
table { width: 100%; border-collapse: collapse; }
@media (max-width: 768px) {
    .service-content-block table,
    .content-area table,
    .blog-rich-content table,
    .landing-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

/* ── 14. Sticky üst bar taşma koruması ── */
@media (max-width: 360px) {
    .site-logo img { max-width: 120px; height: auto; }
    .logo-text { font-size: var(--text-base); }
    .header-inner { gap: 8px; }
}

/* ── 15. Galeri lightbox mobil ── */
@media (max-width: 480px) {
    .lightbox-nav { width: 36px; height: 36px; }
    .lightbox-close { top: 8px; right: 8px; width: 36px; height: 36px; }
}

/* ── 16. Hakkımızda + diğer içerik sayfası ── */
@media (max-width: 768px) {
    .about-layout, .iletisim-layout { grid-template-columns: 1fr !important; }
    .hakkimizda-features { grid-template-columns: 1fr !important; }
}

/* ── 17. Blog card link arrow düzeltme ── */
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: var(--space-sm);
    transition: gap var(--transition-fast), color var(--transition-fast);
}
.blog-card-link:hover { gap: 8px; color: var(--color-primary-dark); }

/* ── 18. Section padding tablet (769-1024) ── */
@media (min-width: 769px) and (max-width: 1024px) {
    .section { padding: var(--space-2xl) 0; }
    .section-lg { padding: var(--space-3xl) 0; }
}

/* ═══════════════════════════════════════════════════════════
   v2.8 – TOC, HARİTA CTA, BREADCRUMB MOBİL
   ═══════════════════════════════════════════════════════════ */

/* ── İçindekiler (TOC) – Soft Card ── */
.service-toc {
    background: linear-gradient(135deg, rgba(21,101,192,0.03) 0%, rgba(0,121,107,0.02) 100%);
    border: 1px solid rgba(21,101,192,0.10);
    border-radius: var(--radius-xl);
    padding: var(--space-lg) var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: 0 1px 8px rgba(21,101,192,0.04);
}
.service-toc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(21,101,192,0.08);
}
.service-toc-title svg { color: var(--color-primary); flex-shrink: 0; }
.service-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.service-toc-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    line-height: 1.5;
    padding: 6px 8px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}
.service-toc-list li a:hover {
    background: var(--color-primary-50);
    color: var(--color-primary);
    transform: translateX(3px);
}
.service-toc-num {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: var(--radius-sm);
    background: rgba(21,101,192,0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.service-toc-list li a:hover .service-toc-num {
    background: var(--color-primary);
    color: #fff;
}
@media (max-width: 480px) {
    .service-toc { padding: var(--space-md); }
    .service-toc-list li a { font-size: var(--text-xs); }
}

/* ── Harita + İletişim CTA ── */
.service-map-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}
.service-map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    background: var(--color-bg-alt);
}
.service-map-embed iframe {
    width: 100%; height: 100%;
    display: block; border: 0;
}
.service-map-embed--placeholder {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-50), var(--color-bg-alt));
}
.service-map-placeholder-link {
    display: flex; flex-direction: column; align-items: center; gap: var(--space-md);
    color: var(--color-primary); text-decoration: none; font-weight: 600;
    padding: var(--space-xl);
}
.service-map-placeholder-link:hover { color: var(--color-primary-dark); }

.service-map-info { padding: var(--space-lg) 0; }
.service-map-label {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}
.service-map-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}
.service-map-contacts { display: flex; flex-direction: column; gap: var(--space-md); margin-bottom: var(--space-xl); }
.service-map-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-decoration: none;
    color: var(--color-text);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    background: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.service-map-contact-item:is(a):hover { border-color: var(--color-primary-100); box-shadow: var(--shadow-sm); }
.service-map-contact-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-primary-50);
    color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.service-map-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin-bottom: 3px;
}
.service-map-contact-value {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}
.service-map-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

@media (max-width: 1024px) {
    .service-map-cta-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .service-map-embed { height: 300px; }
    .service-map-title { font-size: var(--text-2xl); }
}
@media (max-width: 480px) {
    .service-map-embed { height: 240px; border-radius: var(--radius-lg); }
    .service-map-title { font-size: var(--text-xl); }
    .service-map-actions { flex-direction: column; }
    .service-map-actions .btn { width: 100%; justify-content: center; }
}

/* ── Breadcrumb – Kapsamlı Mobil Fix ── */
/* Temel: wrap'i kapat, yatay kaydırmaya geç */
.breadcrumb {
    flex-wrap: nowrap;   /* wrap → nowrap: taşma yerine scroll */
    max-width: calc(100vw - 48px);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
}
.breadcrumb::-webkit-scrollbar { display: none; }

/* Mobil: daha küçük padding ve font */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 11px;
        padding: 6px 14px;
        gap: 3px 5px;
        max-width: calc(100vw - 32px);
    }
    .breadcrumb-sep { font-size: 13px; }
}
@media (max-width: 480px) {
    .breadcrumb {
        font-size: 10px;
        padding: 5px 10px;
        max-width: calc(100vw - 24px);
    }
    /* Çok küçük ekranda orta adımları gizle, sadece ilk ve son göster */
    .breadcrumb .breadcrumb-mid { display: none; }
    .breadcrumb .breadcrumb-sep:not(:last-of-type) { display: none; }
}
/* Page header'daki breadcrumb – desktop'ta ortala, mobilde scroll */
.page-header .breadcrumb { justify-content: center; margin: 0 auto; }
@media (max-width: 768px) {
    .page-header .breadcrumb { justify-content: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   HAKKIMIZDA SAYFASI
═══════════════════════════════════════════════════════════ */

/* İki kolonlu hero grid */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-3xl);
    align-items: start;
}
.about-stats-col {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}
.about-content-col { min-width: 0; }
.about-section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.25;
    margin: var(--space-sm) 0 var(--space-lg);
}
.about-content-text {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}
.about-cta-row {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Stats kart */
.about-stats-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 8px 32px rgba(21,101,192,0.25);
}
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl) var(--space-lg);
}
.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.about-stat-num::after { content: '+'; font-size: 0.6em; opacity: 0.8; }
.about-stat-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* Neden biz – özellik kartları */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.about-feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.about-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.about-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--color-primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}
.about-feature-card h3 {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}
.about-feature-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Section CTA satırı */
.section-cta-row {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* Harita embed */
.harita-embed { border-radius: var(--radius-xl); overflow: hidden; height: 100%; }
.harita-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.harita-placeholder-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    height: 340px;
    border-radius: var(--radius-xl);
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}
.harita-placeholder-link:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* İletişim grid */
.about-contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}
.about-map-wrap { border-radius: var(--radius-xl); overflow: hidden; height: 380px; }
.about-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.about-contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}
.about-contact-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--color-primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}
.about-contact-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.about-contact-item strong {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about-contact-item span {
    font-size: var(--text-sm);
    color: var(--color-text);
    word-break: break-word;
}
.about-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-grid { grid-template-columns: 1fr 300px; gap: var(--space-2xl); }
    .about-features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-contact-grid { grid-template-columns: 1fr 320px; }
}
@media (max-width: 768px) {
    .about-hero-grid { grid-template-columns: 1fr; }
    .about-stats-col { order: -1; position: static; }
    .about-stats-card { padding: var(--space-xl); }
    .about-features-grid { grid-template-columns: 1fr 1fr; }
    .about-contact-grid { grid-template-columns: 1fr; }
    .about-map-wrap { height: 260px; }
}
@media (max-width: 480px) {
    .about-section-title { font-size: var(--text-2xl); }
    .about-features-grid { grid-template-columns: 1fr; }
    .about-cta-row { flex-direction: column; }
    .about-cta-row .btn { width: 100%; justify-content: center; }
}

/* CSS version bump */
/* v2.7 – mobile fixes + polish */
/* v2.7b – hizmet/hekim/randevu mobile */
/* v2.8 – TOC, harita CTA, breadcrumb mobile */
/* v2.8d – hakkimizda page, hizmet-kat-intro toggle */
/* v2.9 – logo/nav/page-header/doctor-card/service-intro/TOC redesign */
