/* ═══════════════════════════════════════════════════════════════════════════
   Natura Dental — Ana Sayfa CSS
   Design System: "Editorial Clinical Excellence" (DESIGN.md)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CLASS ALIASES (index.php uyumluluğu) ─── */
.nd-btn-sage       { /* → nd-btn-primary */ display:inline-flex;align-items:center;gap:10px;font-size:var(--t-body);font-weight:700;color:#fff;background:var(--nd-primary);padding:12px 32px;border-radius:var(--r-full);transition:background .25s,box-shadow .25s;text-decoration:none; }
.nd-btn-sage svg   { width:17px;height:17px;transition:transform .22s; }
.nd-btn-sage:hover { background:var(--nd-primary-ctr);box-shadow:0 8px 24px rgba(68,65,204,.4); }
.nd-btn-sage:hover svg { transform:translateX(4px); }

.nd-btn-outline       { /* → nd-btn-ghost */ display:inline-flex;align-items:center;gap:8px;font-size:var(--t-body);font-weight:600;color:rgba(255,255,255,.85);border:1.5px solid rgba(255,255,255,.28);padding:12px 28px;border-radius:var(--r-full);transition:all .25s;text-decoration:none; }
.nd-btn-outline:hover { border-color:#fff;color:#fff;background:rgba(255,255,255,.08); }

.nd-btn-sage-outline       { /* → nd-btn-outline-light */ display:inline-flex;align-items:center;gap:8px;font-size:.875rem;font-weight:700;color:var(--nd-surface-high);border:2px solid rgba(225,224,255,.45);padding:12px 28px;border-radius:var(--r-full);transition:all .25s;text-decoration:none; }
.nd-btn-sage-outline:hover { background:rgba(225,224,255,.12);border-color:var(--nd-surface-high);color:#fff; }

.nd-about-text { font-size:var(--t-body);color:var(--nd-secondary);line-height:1.8;margin-bottom:var(--space-4); }

/* ─── DESIGN TOKENS ─── */
:root {
    --nd-primary:      #4441cc;
    --nd-primary-ctr:  #5e5ce6;
    --nd-secondary:    #575993;
    --nd-surface:      #fcf8ff;
    --nd-surface-low:  #f5f2ff;
    --nd-surface-high: #e1e0ff;
    --nd-on-bg:        #13134b;
    --nd-outline:      rgba(199, 196, 215, 0.3);

    /* Radius */
    --r-xl:   1.5rem;
    --r-full: 9999px;

    /* Typography scale (Plus Jakarta Sans) */
    --t-display: clamp(2.5rem, 5vw, 3.5rem);
    --t-headline: clamp(1.6rem, 3vw, 2rem);
    --t-title:  1.375rem;
    --t-body:   1rem;
    --t-label:  0.75rem;

    /* Ambient shadow */
    --shadow-ambient: 0 8px 24px rgba(19, 19, 75, 0.06);
    --shadow-float:   0 24px 48px rgba(19, 19, 75, 0.08);
}

/* ── Body surface ── */
body { background: var(--nd-surface); }

/* ── Marquee overrides ── */
.marquee { background: var(--nd-on-bg) !important; }

/* ── Nav CTA (home page) ── */
body.home-page .nav-cta {
    background: var(--nd-primary) !important;
    border-radius: var(--r-full) !important;
}

/* ══════════════════════════════════════════════════════════════
   SVC-IMG BASE (not in style.css)
   ══════════════════════════════════════════════════════════════ */
.svc-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-img-card {
    overflow: hidden;
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-ambient);
    transition: box-shadow .3s, transform .3s;
}
.svc-img-card:hover {
    box-shadow: var(--shadow-float);
    transform: translateY(-6px);
}
.svc-img-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.svc-img-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .55s;
}
.svc-img-card:hover .svc-img-thumb img { transform: scale(1.07); }
.svc-img-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--nd-on-bg); color: var(--nd-surface-high);
    font-size: var(--t-label); font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--r-full);
    letter-spacing: .06em; text-transform: uppercase;
}
.svc-img-body { padding: 24px; }
.svc-img-title {
    font-family: var(--font-body);
    font-size: var(--t-title); font-weight: 700;
    color: var(--nd-on-bg);
    margin-bottom: 10px; line-height: 1.3;
}
.svc-img-desc {
    font-size: var(--t-body); color: var(--nd-secondary);
    line-height: 1.75; margin-bottom: 16px;
}
.svc-img-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: var(--t-body); font-weight: 700;
    color: var(--nd-primary);
    padding-bottom: 1px;
    transition: gap .2s;
}
.svc-img-link svg { width: 14px; height: 14px; transition: transform .2s; }
.svc-img-card:hover .svc-img-link { gap: 10px; }
.svc-img-card:hover .svc-img-link svg { transform: translateX(3px); }

@media (max-width: 1024px) { .svc-img-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px)  { .svc-img-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   1. HERO
   ══════════════════════════════════════════════════════════════ */
.nd-hero {
    background: linear-gradient(135deg, var(--nd-on-bg) 0%, #1e1b6e 60%, var(--nd-primary-ctr) 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 32px);
    align-items: center;
    gap: var(--space-12);
    padding: var(--space-20) 11%;
    position: relative;
    overflow: hidden;
}
.nd-hero::before {
    content: '';
    position: absolute; right: -80px; top: -80px;
    width: 420px; height: 420px; border-radius: 50%;
    background: rgba(94,92,230,.15);
    pointer-events: none;
}
.nd-hero::after {
    content: '';
    position: absolute; left: 30%; bottom: -120px;
    width: 320px; height: 320px; border-radius: 50%;
    background: rgba(94,92,230,.1);
    pointer-events: none;
}

/* ── H1 with inline image chips ── */
.nd-hero-title {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: var(--space-5);
}
.nd-hero-title-em {
    color: var(--nd-surface-high);
    font-weight: 700;
}

/* Inline image chips inside H1 */
.nd-title-chip {
    display: inline-block;
    width: 72px; height: 42px;
    border-radius: 21px;
    overflow: hidden;
    vertical-align: middle;
    margin: 0 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
    flex-shrink: 0;
}
.nd-title-chip--wide { width: 100px; }
.nd-title-chip img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

.nd-hero-desc {
    font-size: var(--t-body);
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 480px;
}

/* ── Stats row (replaces chips) ── */
.nd-hero-stats {
    display: flex;
    gap: 0;
    margin: var(--space-8) 0;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,.15);
}
.nd-hero-stat {
    flex: 1;
    padding-right: var(--space-6);
    margin-right: var(--space-6);
    border-right: 1px solid rgba(255,255,255,.15);
}
.nd-hero-stat:last-child {
    border-right: none;
    padding-right: 0; margin-right: 0;
}
.nd-hero-stat-num {
    font-size: 2rem; font-weight: 800;
    color: #fff; line-height: 1;
    margin-bottom: 5px;
}
.nd-hero-stat-lbl {
    font-size: .8rem; font-weight: 500;
    color: rgba(255,255,255,.58);
    line-height: 1.3;
}

/* ── Buttons ── */
.nd-hero-actions {
    display: flex; align-items: center;
    gap: 14px; flex-wrap: wrap;
}
.nd-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: var(--t-body); font-weight: 700; color: #fff;
    background: var(--nd-primary);
    padding: 13px 32px;
    border-radius: var(--r-full);
    transition: background .25s, box-shadow .25s;
    text-decoration: none;
}
.nd-btn-primary:hover {
    background: var(--nd-primary-ctr);
    box-shadow: 0 8px 24px rgba(68,65,204,.4);
}

.nd-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: var(--t-body); font-weight: 600;
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.28);
    padding: 13px 28px;
    border-radius: var(--r-full);
    transition: all .25s;
    text-decoration: none;
}
.nd-btn-ghost:hover {
    border-color: #fff; color: #fff;
    background: rgba(255,255,255,.08);
}

/* ── Right: image column ── */
.nd-hero-visual {
    position: relative; z-index: 2;
    display: flex; justify-content: flex-end;
}
.nd-hero-img-wrap {
    width: 100%; max-width: 520px;
    aspect-ratio: 4/5; overflow: hidden;
    border-radius: var(--r-xl);
    box-shadow: 0 40px 80px rgba(0,0,0,.36);
}
.nd-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════════
   2. INFO BAR
   ══════════════════════════════════════════════════════════════ */
.nd-info-bar {
    padding: 0 5%;
    background: var(--nd-surface-low);
    position: relative; z-index: 10;
}
.nd-info-bar-inner {
    max-width: var(--container); margin: 0 auto;
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-float);
    display: flex;
    align-items: center;
    padding: var(--space-6) var(--space-8);
    gap: var(--space-6);
    transform: translateY(-32px);
}
.nd-info-item {
    display: flex; align-items: center; gap: var(--space-4);
    flex: 1;
    position: relative;
}
.nd-info-item::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 1px; background: var(--nd-outline);
}
.nd-info-item:last-of-type::after { display: none; }
.nd-info-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--nd-primary);
    border-radius: 50%;
}
.nd-info-icon svg { width: 22px; height: 22px; stroke: #fff; }
.nd-info-title {
    font-size: var(--t-body); font-weight: 700;
    color: var(--nd-on-bg); margin-bottom: 3px;
}
.nd-info-desc {
    font-size: .875rem; color: var(--nd-secondary); line-height: 1.4;
}

/* CTA button — third element */
.nd-info-appt-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .875rem; font-weight: 700; color: #fff;
    background: var(--nd-on-bg);
    padding: 14px 28px;
    border-radius: var(--r-full);
    white-space: nowrap;
    text-decoration: none;
    transition: background .25s, box-shadow .25s;
    flex-shrink: 0;
}
.nd-info-appt-btn:hover {
    background: var(--nd-primary);
    box-shadow: 0 8px 20px rgba(68,65,204,.35);
}

/* ══════════════════════════════════════════════════════════════
   3. ABOUT
   ══════════════════════════════════════════════════════════════ */
.nd-about {
    padding: var(--space-24) 5%;
    background: var(--nd-surface);
}
.nd-about-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-16); align-items: center;
}
/* Image column */
.nd-about-img-wrap { position: relative; }
.nd-about-img-accent {
    position: absolute;
    top: -16px; left: -16px;
    width: 72%; height: 72%;
    background: var(--nd-surface-high);
    border-radius: var(--r-xl);
    z-index: 0;
}
.nd-about-img-main {
    width: 100%; aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-float);
    position: relative; z-index: 1;
}
.nd-about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.nd-about-badge {
    position: absolute; bottom: 28px; right: -20px;
    background: var(--nd-on-bg);
    color: var(--nd-surface-high);
    padding: 16px 20px; text-align: center; z-index: 2;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-float);
}
.nd-about-badge-num {
    display: block; font-size: 1.75rem; font-weight: 800; line-height: 1;
    color: #fff;
}
.nd-about-badge-lbl {
    display: block; font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--nd-surface-high); margin-top: 3px;
}

/* Shared section labels */
.nd-section-badge {
    display: inline-block;
    font-size: var(--t-label); font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--nd-primary);
    background: var(--nd-surface-low);
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: var(--space-4);
}
.nd-section-title {
    font-size: var(--t-headline); font-weight: 800;
    color: var(--nd-on-bg); line-height: 1.2;
    margin-bottom: var(--space-5);
    letter-spacing: -.02em;
}
.nd-section-title .nd-accent-text { color: var(--nd-primary); }
.nd-body-text {
    font-size: var(--t-body); color: var(--nd-secondary);
    line-height: 1.8; margin-bottom: var(--space-4);
}

/* Stats row */
.nd-about-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin: var(--space-8) 0;
    padding: var(--space-6) 0;
    border-top: 1px solid var(--nd-outline);
    border-bottom: 1px solid var(--nd-outline);
}
.nd-stat-item {
    text-align: center; padding: var(--space-4);
    background: var(--nd-surface-low);
    border-radius: var(--r-xl);
}
.nd-stat-num {
    display: block; font-size: 2rem; font-weight: 800;
    color: var(--nd-primary); line-height: 1; margin-bottom: 4px;
}
.nd-stat-lbl {
    font-size: var(--t-label); font-weight: 600;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--nd-secondary);
}

/* Doctor chips */
.nd-doctors { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.nd-doctor-chip {
    display: flex; align-items: center; gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: #fff;
    border-radius: var(--r-full);
    box-shadow: var(--shadow-ambient);
    transition: box-shadow .25s;
}
.nd-doctor-chip:hover { box-shadow: var(--shadow-float); }
.nd-doctor-avatar-placeholder {
    width: 40px; height: 40px;
    background: var(--nd-on-bg);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--nd-surface-high);
    font-size: .875rem; font-weight: 700;
    flex-shrink: 0;
}
.nd-doctor-name {
    font-size: .875rem; font-weight: 700; color: var(--nd-on-bg);
    line-height: 1.3;
}
.nd-doctor-spec { font-size: 11px; color: var(--nd-secondary); }

/* ══════════════════════════════════════════════════════════════
   4. SERVICES (new card design)
   ══════════════════════════════════════════════════════════════ */
.nd-services {
    padding: var(--space-24) 5%;
    background: var(--nd-surface-low);
}
.nd-services-inner { max-width: var(--container); margin: 0 auto; }

/* Section top row */
.nd-svc-top {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-8);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}
.nd-svc-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: var(--t-label); font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--nd-primary);
    margin-bottom: var(--space-3);
}
.nd-svc-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800; color: var(--nd-on-bg);
    line-height: 1.2; letter-spacing: -.02em;
}
.nd-svc-all-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .875rem; font-weight: 700; color: #fff;
    background: var(--nd-primary);
    padding: 12px 24px; border-radius: var(--r-full);
    white-space: nowrap; text-decoration: none;
    transition: background .25s, box-shadow .25s;
    flex-shrink: 0;
    align-self: flex-end;
}
.nd-svc-all-btn:hover {
    background: var(--nd-primary-ctr);
    box-shadow: 0 8px 20px rgba(68,65,204,.35);
}

/* 3-column grid */
.nd-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Individual card */
.nd-svc-card {
    background: #fff;
    border-radius: var(--r-xl);
    padding: 28px 28px 0;
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-ambient);
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
}
.nd-svc-card:hover {
    box-shadow: var(--shadow-float);
    transform: translateY(-5px);
}

/* Card header: icon + title + arrow */
.nd-svc-card-header {
    display: flex; align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.nd-svc-card-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--nd-primary);
    border-radius: 14px;
}
.nd-svc-card-icon svg { stroke: #fff; }
.nd-svc-card-title {
    flex: 1;
    font-size: 1.05rem; font-weight: 700;
    color: var(--nd-on-bg); line-height: 1.3;
}
.nd-svc-card-arrow {
    width: 30px; height: 30px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--nd-primary);
    text-decoration: none;
    transform: rotate(45deg);
    transition: transform .2s;
}
.nd-svc-card-arrow:hover { transform: rotate(45deg) scale(1.2); }
.nd-svc-card-arrow svg { stroke: var(--nd-primary); }

/* Description */
.nd-svc-card-desc {
    font-size: .875rem; color: var(--nd-secondary);
    line-height: 1.75; flex: 1;
    margin-bottom: 24px;
}

/* Photo at bottom — fills card width */
.nd-svc-card-img {
    margin: 0 -28px; /* bleed to card edges */
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
}
.nd-svc-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.nd-svc-card:hover .nd-svc-card-img img { transform: scale(1.06); }

/* Keep shared section header for other sections */
.nd-section-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-12);
    flex-wrap: wrap; gap: var(--space-4);
}
.nd-view-all {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .875rem; font-weight: 700;
    color: var(--nd-primary);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: var(--r-full);
    background: var(--nd-surface-high);
    transition: background .2s, gap .2s;
}
.nd-view-all:hover { background: var(--nd-primary); color: #fff; }
.nd-view-all svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════════════
   5. MISSION
   ══════════════════════════════════════════════════════════════ */
.nd-mission {
    padding: var(--space-24) 5%;
    background: var(--nd-surface);
}
.nd-mission-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-16); align-items: center;
}
.nd-mission-checks {
    display: flex; flex-direction: column;
    gap: var(--space-3); margin: var(--space-6) 0 var(--space-8);
}
.nd-mission-check {
    display: flex; align-items: flex-start; gap: var(--space-3);
    padding: var(--space-4);
    background: var(--nd-surface-low);
    border-radius: var(--r-xl);
}
.nd-mission-check-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--nd-primary);
    border-radius: 50%;
}
.nd-mission-check-icon svg { width: 16px; height: 16px; stroke: #fff; }
.nd-mission-check-text {
    font-size: var(--t-body); color: var(--nd-on-bg);
    font-weight: 500; line-height: 1.5; padding-top: 4px;
}
.nd-mission-phone {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: var(--t-body); font-weight: 700;
    color: var(--nd-primary);
    border: 2px solid var(--nd-primary);
    padding: 12px 28px; border-radius: var(--r-full);
    transition: all .25s; text-decoration: none;
}
.nd-mission-phone svg { width: 18px; height: 18px; stroke: var(--nd-primary); }
.nd-mission-phone:hover {
    background: var(--nd-primary); color: #fff;
}
.nd-mission-phone:hover svg { stroke: #fff; }

.nd-mission-gallery {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; gap: 12px;
}
.nd-mission-img {
    overflow: hidden; aspect-ratio: 4/3;
    border-radius: var(--r-xl);
}
.nd-mission-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nd-mission-img:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════════════════════
   6. WHY CHOOSE US — 3-col: text | doctor photo | features
   ══════════════════════════════════════════════════════════════ */
.nd-why {
    /* No vertical padding on section — text col carries its own padding */
    padding: 0 5%;
    background: #0d1147;
    overflow: hidden;
    position: relative;
}
/* Subtle dot-grid texture overlay */
.nd-why::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}
.nd-why-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;   /* 2 cols — doctor is absolute */
    gap: 0;
    align-items: stretch;
    min-height: 560px;
    position: relative; z-index: 1;  /* contains absolute doctor-col */
}
/* ── Left text column ── */
.nd-why-text {
    display: flex; flex-direction: column; align-items: flex-start;
    justify-content: center;
    padding: 72px 200px 72px 0; /* right padding keeps text clear of center doctor */
    min-width: 0;
}
.nd-why-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: rgba(255,255,255,.75);
    margin-bottom: var(--space-4);
}
.nd-why-badge svg { color: rgba(255,255,255,.5); }
.nd-why-title {
    font-size: clamp(2rem,3.5vw,2.75rem); font-weight: 800;
    color: #fff; line-height: 1.15; margin-bottom: var(--space-5);
    letter-spacing: -.025em;
}
.nd-why-desc {
    font-size: .925rem; color: rgba(255,255,255,.55);
    line-height: 1.8; margin-bottom: var(--space-8);
}
/* Filled indigo pill button — matches ref's "Contact Us" */
.nd-why-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .875rem; font-weight: 700;
    color: #fff;
    background: var(--nd-primary);
    border: none;
    padding: 14px 28px; border-radius: var(--r-full);
    transition: background .25s, transform .2s; text-decoration: none;
}
.nd-why-cta-btn:hover {
    background: var(--nd-primary-ctr);
    transform: translateY(-1px);
}
.nd-why-cta-btn svg { flex-shrink: 0; }

/* ── Doctor: absolute center, not a grid item ── */
.nd-why-doctor-col {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    transform: translateX(-50%);
    width: 320px;
    display: flex; justify-content: center; align-items: flex-start;
    z-index: 3;
    pointer-events: none;
    padding-top: 0;
}
.nd-why-doctor-circle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 460px; height: 460px;
    border-radius: 50%;
    background: rgba(68,65,204,.2);
    border: 1px solid rgba(100,97,230,.15);
}
.nd-why-doctor-img {
    position: relative; z-index: 1;
    height: 688px; width: auto; max-width: none;
    object-fit: contain; object-position: center bottom;
    filter:
        drop-shadow(0 0 56px rgba(68,65,204,.6))
        drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* ── Right features column ── */
.nd-why-feats {
    display: flex; flex-direction: column; justify-content: center;
    padding: 72px 0 72px 200px; /* left padding clears doctor */
    min-width: 0;
}
.nd-why-feat-row {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px 0;
}
.nd-why-feat-icon-wrap {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(68,65,204,.45);
    border-radius: 12px;
    color: #c5c3ff;
}
.nd-why-feat-body { flex: 1; }
.nd-why-feat-title {
    font-size: 1rem; font-weight: 700; color: #fff;
    margin-bottom: 6px;
}
.nd-why-feat-desc { font-size: .825rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.nd-why-feat-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
}

/* ══════════════════════════════════════════════════════════════
   7. JOURNEY + FAQ
   ══════════════════════════════════════════════════════════════ */
.nd-journey {
    padding: var(--space-24) 5%;
    background: var(--nd-surface-low);
}
.nd-journey-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--space-16); align-items: start;
}
.nd-journey-img-collage {
    display: grid; grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto; gap: 12px;
    position: sticky; top: var(--space-8);
}
.nd-journey-img {
    overflow: hidden; aspect-ratio: 4/3;
    border-radius: var(--r-xl);
}
.nd-journey-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nd-journey-img:hover img { transform: scale(1.05); }
.nd-journey-img.span2 { grid-column: span 2; aspect-ratio: 16/7; }

/* Shared FAQ styles */
.nd-faq-list {
    display: flex; flex-direction: column;
    margin-top: var(--space-8);
}
.nd-faq-item {
    border-bottom: 1px solid var(--nd-outline);
}
.nd-faq-toggle {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: var(--space-4);
    padding: var(--space-5) 0;
    background: none; border: none; cursor: pointer; text-align: left;
}
.nd-faq-q {
    font-size: var(--t-body); font-weight: 600;
    color: var(--nd-on-bg); line-height: 1.4;
}
.nd-faq-icon {
    width: 30px; height: 30px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--nd-surface-low);
    border-radius: 50%;
    transition: background .2s;
}
.nd-faq-icon svg { width: 14px; height: 14px; stroke: var(--nd-primary); transition: transform .3s; }
.nd-faq-item.open .nd-faq-icon { background: var(--nd-primary); }
.nd-faq-item.open .nd-faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.nd-faq-body { display: none; padding: 0 0 var(--space-5); }
.nd-faq-item.open .nd-faq-body { display: block; }
.nd-faq-body p {
    font-size: .875rem; color: var(--nd-secondary); line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   8. HEKIM SÖZÜ
   ══════════════════════════════════════════════════════════════ */
.nd-quote-section {
    padding: var(--space-24) 5%;
    background: linear-gradient(135deg, var(--nd-on-bg) 0%, #1e1b6e 55%, var(--nd-primary-ctr) 100%);
    text-align: center;
}
.nd-quote-inner { max-width: 820px; margin: 0 auto; }
.nd-quote-badge {
    display: inline-block;
    font-size: var(--t-label); font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--nd-surface-high);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 6px 16px; border-radius: var(--r-full);
    margin-bottom: var(--space-5);
}
.nd-quote-section-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800;
    color: #fff; margin-bottom: var(--space-10);
    letter-spacing: -.02em; line-height: 1.25;
}
.nd-quote-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    padding: var(--space-12) var(--space-10);
    border-radius: var(--r-xl);
}
.nd-quote-mark { display: none; } /* karakter kodlama sorunu — CSS ::before ile yönetilir */
.nd-quote-card::before {
    content: '\201C'; /* " LEFT DOUBLE QUOTATION MARK */
    display: block;
    font-size: 5rem; line-height: .8;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--nd-surface-high); opacity: .45;
    margin-bottom: var(--space-2); text-align: left;
}
.nd-quote-text {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-style: italic; color: rgba(255,255,255,.9);
    line-height: 1.65; margin-bottom: var(--space-8);
}
.nd-quote-author {
    display: flex; align-items: center; justify-content: center;
    gap: var(--space-4); flex-wrap: wrap;
}
.nd-quote-avatar-placeholder {
    width: 52px; height: 52px;
    background: var(--nd-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; font-weight: 700;
}
.nd-quote-author-name { font-size: var(--t-body); font-weight: 700; color: #fff; }
.nd-quote-author-role { font-size: .875rem; color: rgba(255,255,255,.55); }
.nd-quote-cta { margin-top: var(--space-8); }

/* ══════════════════════════════════════════════════════════════
   9. SSS — 2 kolon (ref: Image #12 style)
   ══════════════════════════════════════════════════════════════ */
.nd-faq2 {
    padding: var(--space-24) 5%;
    background: #eef1f8;
}
.nd-faq2-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.3fr;
    gap: var(--space-20); align-items: start;
}

/* ── Sol kolon ── */
.nd-faq2-left { display: flex; flex-direction: column; }
.nd-faq2-overline {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .14em;
    color: var(--nd-primary);
    margin-bottom: var(--space-4);
}
.nd-faq2-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800;
    color: var(--nd-on-bg); line-height: 1.2;
    letter-spacing: -.025em; margin-bottom: var(--space-5);
}
.nd-faq2-desc {
    font-size: .9rem; color: var(--nd-secondary);
    line-height: 1.75; margin-bottom: var(--space-8);
}

/* Telefon kartı */
.nd-faq2-phone-card {
    display: flex; align-items: center; gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--r-xl);
    box-shadow: 0 2px 20px rgba(19,19,75,.07);
    max-width: 360px;
}
.nd-faq2-phone-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--nd-primary);
    border-radius: 14px;
    color: #fff;
}
.nd-faq2-phone-body {
    display: flex; flex-direction: column; gap: 2px;
}
.nd-faq2-phone-sub {
    font-size: .75rem; color: var(--nd-secondary); line-height: 1.4;
}
.nd-faq2-phone-title {
    font-size: 1rem; font-weight: 800; color: var(--nd-on-bg);
}
.nd-faq2-phone-num {
    font-size: .875rem; color: var(--nd-primary);
    font-weight: 600; text-decoration: none;
}
.nd-faq2-phone-num:hover { text-decoration: underline; }

/* ── Sağ accordion listesi ── */
.nd-faq2-right {}
.nd-faq2-list {
    display: flex; flex-direction: column; gap: 10px;
}
.nd-faq2-item {
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: 0 1px 12px rgba(19,19,75,.06);
    overflow: hidden;
}
.nd-faq2-toggle {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none; border: none; cursor: pointer; text-align: left;
    font-size: .975rem; font-weight: 700;
    color: var(--nd-on-bg);
}
.nd-faq2-plus {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: var(--nd-surface-low);
    border-radius: 50%;
    color: var(--nd-primary);
    transition: background .2s, transform .3s;
}
.nd-faq2-item.open .nd-faq2-plus {
    background: var(--nd-primary);
    color: #fff;
    transform: rotate(45deg);
}
.nd-faq2-body {
    display: none;
    padding: 0 24px 20px;
}
.nd-faq2-item.open .nd-faq2-body { display: block; }
.nd-faq2-body p {
    font-size: .875rem; color: var(--nd-secondary); line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   11. BLOG
   ══════════════════════════════════════════════════════════════ */
.nd-blog {
    padding: var(--space-24) 5%;
    background: var(--nd-surface);
}
.nd-blog-inner { max-width: var(--container); margin: 0 auto; }
.nd-blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8); margin-top: var(--space-10);
}
.nd-blog-card {
    overflow: hidden; background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-ambient);
    transition: box-shadow .25s, transform .25s;
}
.nd-blog-card:hover { box-shadow: var(--shadow-float); transform: translateY(-4px); }
.nd-blog-thumb {
    position: relative; height: 200px; overflow: hidden;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.nd-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.nd-blog-card:hover .nd-blog-thumb img { transform: scale(1.06); }
.nd-blog-cat {
    position: absolute; top: 14px; left: 14px;
    background: var(--nd-on-bg); color: var(--nd-surface-high);
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    padding: 5px 14px; border-radius: var(--r-full);
}
.nd-blog-body { padding: var(--space-6); }
.nd-blog-date { font-size: var(--t-label); color: var(--nd-secondary); margin-bottom: var(--space-2); }
.nd-blog-title {
    font-size: var(--t-title); font-weight: 700;
    color: var(--nd-on-bg); line-height: 1.4;
    margin-bottom: var(--space-3); transition: color .2s;
}
.nd-blog-card:hover .nd-blog-title { color: var(--nd-primary); }
.nd-blog-excerpt {
    font-size: .875rem; color: var(--nd-secondary);
    line-height: 1.7; margin-bottom: var(--space-4);
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.nd-blog-read {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .875rem; font-weight: 700;
    color: var(--nd-primary); text-decoration: none; transition: gap .2s;
}
.nd-blog-read svg { width: 13px; height: 13px; }
.nd-blog-read:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   12. RANDEVU
   ══════════════════════════════════════════════════════════════ */
.nd-appointment {
    padding: var(--space-24) 5%;
    background: linear-gradient(135deg, var(--nd-on-bg) 0%, #1e1b6e 55%, var(--nd-primary-ctr) 100%);
    position: relative;
}
.nd-appointment-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: var(--space-16); align-items: start;
    position: relative; z-index: 1;
}
.nd-appt-title {
    font-size: var(--t-headline); font-weight: 800;
    color: #fff; line-height: 1.2; margin-bottom: var(--space-5);
    letter-spacing: -.02em;
}
.nd-appt-desc {
    font-size: var(--t-body); color: rgba(255,255,255,.65);
    line-height: 1.75; margin-bottom: var(--space-8);
}
.nd-appt-hours {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    padding: var(--space-6); border-radius: var(--r-xl);
    margin-bottom: var(--space-6);
}
.nd-appt-hours-title {
    font-size: var(--t-label); font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    color: var(--nd-surface-high); margin-bottom: var(--space-4);
}
.nd-appt-hours-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .875rem;
}
.nd-appt-hours-row:last-child { border-bottom: none; }
.nd-appt-hours-day { color: rgba(255,255,255,.65); }
.nd-appt-hours-time { color: #fff; font-weight: 600; }
.nd-appt-hours-time.closed { color: rgba(255,255,255,.35); }
.nd-appt-phone {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: var(--t-body); font-weight: 700;
    color: var(--nd-surface-high); text-decoration: none;
    transition: opacity .2s;
}
.nd-appt-phone svg { width: 18px; height: 18px; stroke: var(--nd-surface-high); }
.nd-appt-phone:hover { opacity: .8; }

/* Form card */
.nd-appt-form-wrap {
    background: #fff;
    padding: var(--space-8);
    border-radius: var(--r-xl);
    box-shadow: 0 32px 64px rgba(0,0,0,.2);
}
.nd-appt-form-title {
    font-size: 1.5rem; font-weight: 800;
    color: var(--nd-on-bg); margin-bottom: var(--space-6);
}
.nd-appt-form-title span { color: var(--nd-primary); }

.nd-form-success {
    padding: var(--space-4);
    background: rgba(68,65,204,.08); border-radius: var(--r-xl);
    color: var(--nd-primary);
    font-size: .875rem; font-weight: 600;
    margin-bottom: var(--space-4); display: none;
}
.nd-form-success.show { display: block; }
.nd-form-error {
    padding: var(--space-4);
    background: rgba(239,68,68,.08); border-radius: var(--r-xl);
    color: #dc2626;
    font-size: .875rem; font-weight: 600;
    margin-bottom: var(--space-4); display: none;
}
.nd-form-error.show { display: block; }

/* Override form-input/select for this page */
.nd-appt-form-wrap .form-input,
.nd-appt-form-wrap .form-select {
    border-radius: var(--r-xl) !important;
    background: var(--nd-surface) !important;
    border-color: rgba(199,196,215,.35) !important;
}
.nd-appt-form-wrap .form-input:focus,
.nd-appt-form-wrap .form-select:focus {
    border-color: var(--nd-primary) !important;
}

.nd-form-submit {
    width: 100%;
    padding: 14px var(--space-6);
    background: var(--nd-primary); color: #fff;
    font-size: var(--t-body); font-weight: 700;
    border: none; cursor: pointer;
    border-radius: var(--r-full);
    transition: background .25s, box-shadow .25s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.nd-form-submit:hover {
    background: var(--nd-primary-ctr);
    box-shadow: 0 8px 24px rgba(68,65,204,.35);
}
.nd-form-submit:disabled { opacity: .65; cursor: not-allowed; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nd-svc-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-img-grid { grid-template-columns: repeat(2, 1fr); }
    .nd-hero { grid-template-columns: 1fr; gap: var(--space-10); min-height: auto; padding-top: var(--space-16); }
    .nd-hero-visual { display: none; }
    .nd-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .nd-about-inner { grid-template-columns: 1fr; }
    .nd-about-img-wrap { max-width: 480px; }
    .nd-mission-inner { grid-template-columns: 1fr; }
    .nd-why-inner { grid-template-columns: 1fr 1fr; min-height: auto; }
    .nd-why-doctor-col { display: none; }
    .nd-why-text { padding: 56px 32px 56px 0; }
    .nd-why-feats { padding: 56px 0 56px 32px; }
    .nd-faq2-inner { grid-template-columns: 1fr; }
    .nd-journey-inner { grid-template-columns: 1fr; }
    .nd-journey-img-collage { position: static; }
    .nd-faq2-inner { grid-template-columns: 1fr; }
    .nd-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .nd-appointment-inner { grid-template-columns: 1fr; }
    .nd-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .nd-gallery-item:first-child { grid-column: span 2; }
    .nd-info-bar-inner { flex-wrap: wrap; transform: translateY(-24px); }
    .nd-info-item { flex: 1 1 200px; }
    .nd-info-appt-btn { width: 100%; justify-content: center; }
}
@media (max-width: 768px) {
    .nd-svc-grid { grid-template-columns: 1fr; }
    .nd-svc-top { flex-direction: column; align-items: flex-start; }
    .svc-img-grid { grid-template-columns: 1fr; }
    .nd-info-bar-inner { flex-direction: column; align-items: stretch; padding: var(--space-5); transform: translateY(-16px); }
    .nd-info-item::after { display: none; }
    .nd-info-item { padding-bottom: var(--space-4); border-bottom: 1px solid var(--nd-outline); }
    .nd-info-item:last-of-type { border-bottom: none; padding-bottom: 0; }
    .nd-why-inner { grid-template-columns: 1fr !important; min-height: auto !important; }
    .nd-why-text { padding: 48px 0 32px; }
    .nd-why-feats { padding: 0 0 48px; }
    .nd-blog-grid { grid-template-columns: 1fr; }
    .nd-section-header { flex-direction: column; align-items: flex-start; }
    .nd-faq2-inner { grid-template-columns: 1fr !important; }
    .nd-faq2-phone-card { max-width: 100%; }
    .nd-about-stats { grid-template-columns: 1fr 1fr; }
    .nd-journey-img.span2 { grid-column: span 1; aspect-ratio: 4/3; }
    .nd-appt-form-wrap { padding: var(--space-5); }
    .nd-quote-card { padding: var(--space-6); }
    .nd-hero-stats { flex-wrap: wrap; }
    .nd-hero-stat { flex: 1 1 80px; border-right: none; padding-right: 0; margin-right: 0; padding-bottom: var(--space-3); }
}
@media (max-width: 480px) {
    .nd-hero { padding: var(--space-10) 5%; }
    .nd-hero-actions { flex-direction: column; align-items: stretch; }
    .nd-about-badge { right: 0; }
    .nd-doctors { flex-direction: column; }
    .nd-title-chip { width: 56px; height: 34px; border-radius: 17px; }
    .nd-title-chip--wide { width: 80px; }
}
