/* ─── SINOP.INFO — Design System ─────────────────────────────────────────── */

/* Tokens */
:root {
    --bg:          #F6F4F0;
    --bg-alt:      #EDEAE4;
    --white:       #FFFFFF;
    --navy:        #0C1D2E;
    --ocean:       #1A4A6E;
    --sky:         #1E7EA1;
    --sky-light:   #E1F2F9;
    --amber:       #C07D1E;
    --amber-light: #FEF4E0;
    --sage:        #196B3A;
    --sage-light:  #DFFAEC;
    --sand:        #E8DCC8;
    --stone:       #8D99AE;
    --border:      #E0DDD7;
    --text:        #1A2B3C;
    --text-muted:  #607080;
    --text-light:  #94A3B0;

    --radius-sm:   8px;
    --radius:      16px;
    --radius-lg:   24px;

    --shadow-xs:   0 1px 3px rgba(13,27,42,.06);
    --shadow-sm:   0 2px 8px rgba(13,27,42,.08);
    --shadow:      0 4px 24px rgba(13,27,42,.10);
    --shadow-lg:   0 12px 40px rgba(13,27,42,.13);

    --header-h:    72px;
    --container:   1320px;
    --gap:         32px;
    --section-gap: 88px;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Container */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ─── HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,247,244,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 40px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.logo-img { height: 40px; width: auto; display: block; }
.logo-img-footer { filter: brightness(0) invert(1); opacity: .92; }

/* Main Nav */
.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    display: block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: color .15s, background .15s;
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--text);
    background: rgba(13,27,42,.05);
}
.main-nav .has-mega { position: relative; }
.main-nav .has-mega > a svg { vertical-align: middle; margin-left: 2px; }

/* Mega Menu — wrapper transparan, görsel boşluk padding ile, hover kesintisiz */
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 12px;
    min-width: 580px;
}
.mega-inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 28px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu { display: block; }
.mega-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* (grid override — background/border/padding yukarıda .mega-inner bloğunda) */
.mega-col { display: flex; flex-direction: column; gap: 4px; }
.mega-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 8px;
}
.mega-col a {
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color .15s;
}
.mega-col a:hover { color: var(--sky); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.btn-search-trigger {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    border-radius: 50%;
    transition: background .15s, color .15s;
}
.btn-search-trigger:hover { background: var(--bg-alt); color: var(--text); }

.btn-login {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: background .2s, transform .15s;
}
.btn-login:hover { background: var(--ocean); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* Search Overlay */
.search-overlay {
    position: fixed; inset: 0;
    z-index: 200;
    background: rgba(13,27,42,.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.search-overlay[hidden] { display: none !important; }
.search-overlay-inner {
    width: min(680px, 90vw);
    position: relative;
}
.search-close {
    position: absolute;
    top: -40px; right: 0;
    color: rgba(255,255,255,.7);
    font-size: 20px;
    transition: color .15s;
}
.search-close:hover { color: white; }
.search-form-big .search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px 24px;
    box-shadow: var(--shadow-lg);
}
.search-form-big svg { color: var(--stone); flex-shrink: 0; }
.search-form-big input {
    flex: 1; border: none; outline: none;
    font-family: var(--font-body);
    font-size: 18px;
    background: transparent;
    color: var(--text);
}
.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.search-sugg-label {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    margin-right: 4px;
}
.search-suggestions a {
    font-size: 13px;
    color: white;
    background: rgba(255,255,255,.15);
    padding: 6px 14px;
    border-radius: 100px;
    transition: background .15s;
}
.search-suggestions a:hover { background: rgba(255,255,255,.25); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: min(88vh, 680px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('/assets/images/sinop-hero.webp') center/cover no-repeat;
    transform: scale(1.03);
    transition: transform 8s ease-out;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(13,27,42,.88) 0%,
        rgba(13,27,42,.45) 40%,
        rgba(13,27,42,.15) 80%,
        transparent 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
    width: 100%;
}
.hero-content .container { display: flex; flex-direction: column; gap: 0; }
.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(64px, 9vw, 120px);
    color: var(--white);
    line-height: .95;
    letter-spacing: -.02em;
    margin-bottom: 10px;
}
.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 36px);
    color: rgba(255,255,255,.88);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 12px;
}
.hero-desc {
    max-width: 520px;
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.65;
    margin-bottom: 28px;
}
.hero-search {
    max-width: 680px;
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,.22);
}
.hero-search svg { color: var(--stone); flex-shrink: 0; }
.hero-search input {
    flex: 1;
    border: none; outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    background: transparent;
    color: var(--text);
    padding: 10px 16px;
}
.hero-search input::placeholder { color: var(--text-light); }
.hero-search button {
    background: var(--navy);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 100px;
    transition: background .2s;
    white-space: nowrap;
}
.hero-search button:hover { background: var(--sky); }

/* Hero cursive overlay */
.hero-cursive {
    position: absolute;
    top: 36px;
    right: 40px;
    z-index: 3;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    color: rgba(255,255,255,.72);
    line-height: 1.35;
    text-align: right;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
    pointer-events: none;
    letter-spacing: .01em;
}

/* ─── QUICK CATEGORIES ────────────────────────────────────────────────────── */
.quick-cats {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
}
.quick-cats-inner {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0;
}
.quick-cats-inner::-webkit-scrollbar { display: none; }
.quick-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 22px;
    border-right: 1px solid var(--border);
    transition: background .15s;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    color: var(--text-muted);
    white-space: nowrap;
    min-width: 100px;
}
.quick-cat:hover { background: #FAFAF8; color: var(--amber); }
.qc-icon {
    width: 52px; height: 52px;
    background: #F2F4F7;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.quick-cat:hover .qc-icon { background: var(--amber-light); }
.qc-icon svg { color: var(--navy); }
.quick-cat:hover .qc-icon svg { color: var(--amber); }
.quick-cat span { font-size: 12px; font-weight: 600; }

/* ─── SECTION BASICS ─────────────────────────────────────────────────────── */
section { padding-block: var(--section-gap); }
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
}
.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 6px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.02em;
}
.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 8px;
    max-width: 560px;
}
.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--amber);
    border: 1.5px solid var(--amber);
    padding: 8px 18px;
    border-radius: 100px;
    transition: background .2s, color .2s;
    flex-shrink: 0;
}
.btn-see-all:hover { background: var(--amber); color: white; }
.btn-see-all::after { content: '→'; }

/* ─── SINOP'TA BUGÜN ─────────────────────────────────────────────────────── */
.today-section { background: var(--bg); padding-block: 72px; }
.today-grid {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: var(--gap);
    align-items: start;
}

/* Weather Card */
.weather-card {
    background: linear-gradient(160deg, #0A1E35 0%, #0D3A5C 55%, #0E5A80 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: white;
    position: relative;
    overflow: hidden;
}
.weather-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,130,30,.18) 0%, transparent 70%);
    pointer-events: none;
}
.weather-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80'%3E%3Cpath d='M0,40 C100,10 200,70 300,30 C360,10 390,40 400,35 L400,80 L0,80Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") bottom/cover no-repeat;
    pointer-events: none;
}
.weather-card-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .55; margin-bottom: 20px; position: relative; z-index: 1; }
.weather-main { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; position: relative; z-index: 1; }
.weather-icon { font-size: 52px; line-height: 1; }
.weather-temp { font-family: var(--font-display); font-size: 64px; line-height: 1; letter-spacing: -2px; }
.weather-temp sup { font-family: var(--font-body); font-size: 22px; vertical-align: super; letter-spacing: 0; }
.weather-condition { font-size: 14px; opacity: .75; margin-top: 4px; font-weight: 500; }
.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 16px;
    position: relative; z-index: 1;
}
.weather-detail { font-size: 11.5px; color: rgba(255,255,255,.6); }
.weather-detail strong { display: block; font-size: 15px; font-weight: 700; color: white; margin-bottom: 2px; }
.weather-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 12.5px;
    font-weight: 700;
    color: #F0C060;
    letter-spacing: .02em;
    transition: opacity .2s;
    position: relative; z-index: 1;
}
.weather-link:hover { opacity: .8; }

/* Today section link */
.today-see-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--sky);
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s;
}
.today-see-all:hover { color: var(--ocean); }

/* Events Today */
.events-today { display: flex; flex-direction: column; gap: 0; }
.events-today-title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.events-today-title h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 24px);
    color: var(--navy);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
}
.event-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.event-row:last-child { border-bottom: none; }
.event-row-img {
    width: 72px; height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}
.event-row-body { flex: 1; min-width: 0; }
.event-row-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.event-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.event-row-meta span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.event-row-cat {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 4px;
}
.event-row-img--placeholder {
    background: var(--bg); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
}
.event-row-name a { color: inherit; text-decoration: none; }
.event-row-name a:hover { color: var(--sky); }

/* Pharmacy */
.pharmacy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.pharmacy-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.pharmacy-card-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 24px);
    color: var(--navy);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.01em;
}
.pharmacy-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.pharmacy-row:last-child { border-bottom: none; }
.pharmacy-icon {
    width: 34px; height: 34px;
    background: #C11B1B;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 800;
    font-size: 16px;
}
.pharmacy-info { flex: 1; min-width: 0; }
.pharmacy-name { font-size: 14px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.pharmacy-sub { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.pharmacy-addr { font-size: 11px; color: var(--text-light); margin-top: 2px; opacity: .8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-ok-badge { font-size: 10px; font-weight: 700; color: #166534; background: #dcfce7; border: 1px solid #bbf7d0; padding: 2px 6px; border-radius: 10px; white-space: nowrap; }
.pharmacy-phone {
    margin-left: auto;
    display: flex;
    align-items: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--sage-light);
    justify-content: center;
    color: var(--sage);
    transition: background .2s;
}
.pharmacy-phone:hover { background: var(--sage); color: white; }
.btn-pharmacy-all {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--sage);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-top: 14px;
    transition: border-color .15s, background .15s;
}
.btn-pharmacy-all:hover { border-color: var(--sage); background: var(--sage-light); }

/* ─── ÖNEÇIKANLAR / PLACES GRID ──────────────────────────────────────────── */
.places-section { background: var(--white); }
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.place-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
    display: block;
}
.place-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.place-card-img {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}
.place-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.place-card:hover .place-card-img img { transform: scale(1.06); }
.place-card-fav {
    position: absolute;
    top: 12px; right: 12px;
    width: 34px; height: 34px;
    background: rgba(255,255,255,.88);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--stone);
    font-size: 16px;
    transition: color .15s, background .15s;
}
.place-card-fav:hover { color: #e74c3c; background: white; }
.place-card-cat {
    position: absolute;
    bottom: 12px; left: 12px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: rgba(13,27,42,.55);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: .04em;
}
.place-card-body { padding: 16px 18px 18px; }
.place-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.35;
}
.place-card-loc {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ─── ROTALAR ────────────────────────────────────────────────────────────── */
.routes-section { background: var(--bg); }
.routes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.route-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: transform .3s;
}
.route-card:hover { transform: scale(1.01); }
.route-card-bg {
    position: absolute; inset: 0;
    object-fit: cover;
    width: 100%; height: 100%;
    transition: transform .5s ease;
}
.route-card:hover .route-card-bg { transform: scale(1.06); }
.route-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,.85) 0%, rgba(13,27,42,.3) 55%, transparent 100%);
}
.route-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: white;
}
.route-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
}
.route-card-title {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 10px;
}
.route-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
    line-height: 1.6;
}
.btn-route {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    border: 2px solid rgba(255,255,255,.4);
    padding: 10px 22px;
    border-radius: 100px;
    transition: background .2s, border-color .2s;
}
.btn-route:hover { background: rgba(255,255,255,.15); border-color: white; }

/* ─── HABERLER ───────────────────────────────────────────────────────────── */
.news-section { background: var(--bg); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.news-card {
    display: block;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.news-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.news-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 16px; }
.news-card-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 8px;
}
.news-card-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}
.news-card-date { font-size: 12px; color: var(--text-light); }

/* ─── İLÇELER ────────────────────────────────────────────────────────────── */
.districts-section { background: var(--white); }
.districts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.district-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}
.district-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}
.district-num {
    font-size: 20px;
    font-weight: 800;
    color: var(--amber);
    opacity: .55;
    width: 36px;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.district-card:hover .district-num { opacity: 1; }
.district-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.district-desc {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.district-arrow {
    margin-left: auto;
    color: var(--text-light);
    transition: color .15s, transform .15s;
}
.district-card:hover .district-arrow { color: var(--amber); transform: translateX(3px); }

/* ─── NEWSLETTER ──────────────────────────────────────────────────────────── */
.newsletter-section {
    background: var(--navy);
    padding-block: 72px;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.newsletter-text { flex: 1; }
.newsletter-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #F0C060;
    margin-bottom: 10px;
}
.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}
.newsletter-desc { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }
.newsletter-form-wrap { flex-shrink: 0; width: 440px; max-width: 100%; }
.newsletter-input-wrap {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    overflow: hidden;
    padding: 4px 4px 4px 20px;
}
.newsletter-input-wrap input {
    flex: 1; border: none; outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: white;
    padding: 10px 0;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-input-wrap button {
    background: var(--amber);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 100px;
    transition: background .2s;
    white-space: nowrap;
}
.newsletter-input-wrap button:hover { background: #a86918; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: #0A1520; }
.footer-top {
    display: grid;
    grid-template-columns: 260px repeat(3, 1fr) 280px;
    gap: var(--gap);
    padding-block: 64px;
}
.footer-brand .logo-footer { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--sky); color: white; }
.footer-nav-group h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    transition: color .15s;
}
.footer-nav-group a:hover { color: white; }
.footer-newsletter h3 {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-block: 24px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-bottom nav a { font-size: 12px; color: rgba(255,255,255,.35); transition: color .15s; }
.footer-bottom nav a:hover { color: rgba(255,255,255,.7); }

/* Dark mode disabled — light-only site */

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .today-grid { grid-template-columns: 1fr 1fr; }
    .pharmacy-card { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand, .footer-newsletter { grid-column: span 3; }
}

@media (max-width: 1024px) {
    :root { --section-gap: 64px; }
    .places-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .districts-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form-wrap { width: 100%; }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; --section-gap: 56px; }
    .main-nav, .header-actions .btn-login { display: none; }
    .hamburger { display: flex; }
    .hero { height: min(75vh, 520px); }
    .hero-title { font-size: clamp(52px, 12vw, 72px); }
    .today-grid { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .places-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .news-grid { grid-template-columns: 1fr; }
    .districts-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .footer-newsletter { grid-column: span 2; }
}

@media (max-width: 480px) {
    .places-grid { grid-template-columns: 1fr; }
    .hero-search { border-radius: var(--radius-lg); flex-direction: column; padding: 14px 16px; }
    .hero-search button { width: 100%; text-align: center; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand, .footer-newsletter { grid-column: span 1; }
    .route-card { height: 320px; }
}

/* ─── MOBILE NAV OPEN STATE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .main-nav.open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100vh - var(--header-h));
        background: var(--white);
        overflow-y: auto;
        z-index: 98;
        padding: 0 0 48px;
    }
    .main-nav.open ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
    }
    .main-nav.open > ul > li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    .main-nav.open > ul > li > a {
        padding: 15px 20px;
        font-size: 15px;
        white-space: normal;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--text);
    }
    .main-nav.open > ul > li > a:hover { background: var(--bg-alt); }
    .main-nav.open .mega-menu {
        position: static;
        transform: none;
        min-width: auto;
        padding-top: 0;
        width: 100%;
        display: none;
    }
    .main-nav.open .has-mega.mega-open > .mega-menu { display: block !important; }
    .main-nav.open .mega-inner {
        border: none;
        border-top: 1px solid var(--border);
        box-shadow: none;
        border-radius: 0;
        grid-template-columns: 1fr 1fr;
        background: var(--bg-alt);
        padding: 16px 20px 24px;
    }
    .main-nav.open .mega-col a {
        padding: 6px 0;
        font-size: 14px;
    }
    /* Hamburger → X animation */
    .hamburger[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hamburger[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* Desktop mega-menu z-index + click toggle support */
.mega-menu { z-index: 50; }
.has-mega.mega-open > .mega-menu { display: block; }

/* ─── LIVE SEARCH RESULTS ───────────────────────────────────────────────── */
.search-spinner {
    width: 18px; height: 18px;
    border: 2px solid var(--border);
    border-top-color: var(--sky);
    border-radius: 50%;
    animation: spin .6s linear infinite;
    flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.live-results {
    margin-top: 12px;
    max-height: 420px;
    overflow-y: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
}
.live-group { padding: 12px 0 4px; }
.live-group:not(:first-child) { border-top: 1px solid var(--border); }
.live-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--stone);
    padding: 0 16px 6px;
}
.live-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    text-decoration: none;
    transition: background .12s;
}
.live-item:hover { background: var(--bg-alt); }
.live-thumb {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-alt);
}
.live-thumb-ph {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--stone);
    font-size: 18px;
}
.live-info { min-width: 0; }
.live-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.live-empty {
    text-align: center;
    padding: 24px 16px;
    color: var(--text-muted);
    font-size: 14px;
}
.live-all-link {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--sky);
    border-top: 1px solid var(--border);
    text-decoration: none;
}
.live-all-link:hover { background: var(--bg-alt); }
