/* =================================================================
   Shadow Transfer — Stil
   Mobil-öncelikli, animasyon minimum, sadeleştirilmiş.
   ================================================================= */

*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #f5f5f5;
    background: #0a0a0a;
    line-height: 1.5;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

:root {
    --bg-black:    #0a0a0a;
    --bg-header:   #111111;
    --bg-card:     rgba(15,15,15,0.85);
    --bg-input:    #1c1c1c;
    --border:      #2a2a2a;
    --border-soft: #333;
    --text:        #f5f5f5;
    --text-muted:  #9aa0a6;
    --text-dim:    #6b7280;
    --accent:      #ff6a00;
    --accent-hover:#ff7d1c;
    --accent-soft: rgba(255,106,0,0.12);
    --container:   1280px;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
    border-bottom: 1px solid #232323;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
    position: relative;
    z-index: 50;
}
/* Üst ince turuncu accent çizgi */
.site-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
    opacity: 0.85;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 10px 20px;
    width: 100%;
}

/* Logo + brand text */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    line-height: 1;
}
.brand-logo {
    height: 38px;
    width: auto;
    display: block;
}
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #fff;
}
.brand-overline {
    color: var(--accent);
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: 1.6px;
    line-height: 1;
}
.brand-headline {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1;
    display: flex;
    gap: 4px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.brand-vip      { color: #fff; }
.brand-transfer { color: var(--accent); }
[dir="rtl"] .brand-headline { flex-direction: row-reverse; }
/* Navigation — pill stil */
.nav-main {
    display: flex;
    gap: 4px;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.nav-main a {
    color: #d4d4d4;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 16px;
    border-radius: 8px;
    white-space: nowrap;
    position: relative;
    transition: color 120ms ease, background-color 120ms ease;
}
.nav-main a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.nav-main a.is-active {
    color: var(--accent);
    background: var(--accent-soft);
}

/* Header right cluster */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 9px 16px;
    border-radius: 999px;
    line-height: 1;
    transition: background-color 140ms ease, border-color 140ms ease, transform 140ms ease;
}
.header-phone:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: #25D366;
}
.header-phone svg { width: 18px; height: 18px; flex-shrink: 0; color: #25D366; }

/* =================================================================
   ÖZEL DROPDOWN (dil + para birimi)
   ================================================================= */
.dd {
    position: relative;
    display: inline-flex;
    flex-shrink: 0;
}
.dd-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid #2c2c2c;
    color: var(--text);
    border-radius: 8px;
    padding: 8px 10px 8px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1;
    font-family: inherit;
    transition: background-color 120ms ease, border-color 120ms ease;
}
.dd-trigger:hover,
.dd[data-open] .dd-trigger {
    background-color: rgba(255,255,255,0.08);
    border-color: #3a3a3a;
}
.dd-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.dd-curr-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--accent);
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
}
.dd-trigger-label { letter-spacing: 0.4px; }
.dd-chevron {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    transition: transform 140ms ease;
}
.dd[data-open] .dd-chevron { transform: rotate(180deg); }

.dd-panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 220px;
    background: #181818;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    padding: 6px;
    margin: 0;
    list-style: none;
    z-index: 100;
    box-shadow: 0 12px 28px rgba(0,0,0,0.5);
    max-height: 360px;
    overflow-y: auto;
}
[dir="rtl"] .dd-panel { right: auto; left: 0; }

.dd-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #e5e5e5;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 100ms ease;
    white-space: nowrap;
}
.dd-option:hover,
.dd-option:focus { background: rgba(255,255,255,0.06); outline: none; }
.dd-option.is-selected {
    background: var(--accent-soft);
    color: var(--accent);
}
.dd-option.is-selected .dd-curr-symbol { background: rgba(255,106,0,0.18); }
.dd-option-code {
    font-weight: 700;
    letter-spacing: 0.4px;
    min-width: 32px;
}
.dd-option-name {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 12.5px;
}
.dd-option.is-selected .dd-option-name { color: var(--accent); opacity: 0.85; }

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ff7a1a 0%, #e85a00 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 20px;
    border: none;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(255,106,0,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: box-shadow 160ms ease, background 160ms ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
    line-height: 1;
}
.btn-login:hover {
    background: linear-gradient(180deg, #ff8a35 0%, #ff6a00 100%);
    box-shadow: 0 6px 20px rgba(255,106,0,0.48), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-login svg { width: 16px; height: 16px; flex-shrink: 0; }
[dir="rtl"] .btn-login svg { transform: scaleX(-1); }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px; height: 40px;
    border-radius: 8px;
    align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* =================================================================
   HERO + ARKA PLAN SLIDER
   ================================================================= */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #0a0a0a;
    /* Hero ekranı tamamen kaplamasın — kullanıcı aşağı scroll
       edince diğer bölümler görünsün. Form ne kadar yer
       gerektiriyorsa o kadar büyür ama makul sınırda kalır. */
    min-height: 868px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #0a0a0a;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1400ms ease-in-out;
    will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }
/* Hero'nun en-boy oranı resmin oranıyla aynı olduğu için
   cover ile resim kırpılmadan tam dolar. */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Video arka plan (admin video yüklediğinde) */
.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Medya yoksa hero koyu zemin (overlay'siz) */
.hero.is-no-media { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }
.hero.is-no-media .hero-bg { display: none; }
/* Sol tarafa odaklı overlay — başlık okunsun, resim görünür kalsın */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.45) 30%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 100px 20px;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text { max-width: 620px; }

/* Hero overline (small accent above title) */
.hero-overline {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255,106,0,0.1);
    border: 1px solid rgba(255,106,0,0.28);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}
[dir="rtl"] .hero-overline { letter-spacing: 0; }

/* Hero başlık — duvar grafitisi efekti */
@font-face {
    font-family: 'Permanent Marker';
    src: url('/assets/fonts/permanent-marker.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.hero-title {
    font-size: clamp(42px, 6vw, 88px);
    font-weight: 800;
    line-height: 0.95;
    margin: 0;
    letter-spacing: -0.01em;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-title-graffiti,
.is-graffiti {
    font-family: 'Permanent Marker', Impact, 'Arial Black', system-ui, sans-serif;
    text-transform: uppercase;
}
.hero-title-line-1 {
    transform: rotate(-2.5deg);
    transform-origin: left center;
    align-self: flex-start;
    color: #fff;
}
.hero-title-line-1.is-graffiti {
    color: #fff;
    text-shadow:
        2px 2px 0 var(--accent),
        3px 3px 0 #c84500,
        5px 5px 0 #8b3000,
        6px 8px 18px rgba(0,0,0,0.55);
}
.hero-title-line-2 {
    transform: rotate(-1.2deg) translateX(14px);
    transform-origin: left center;
    align-self: flex-start;
    color: var(--accent);
}
.hero-title-line-2.is-graffiti {
    color: var(--accent);
    text-shadow:
        2px 2px 0 #fff,
        3px 3px 0 #e0e0e0,
        5px 5px 0 #aaa,
        6px 8px 18px rgba(0,0,0,0.55);
}
[dir="rtl"] .hero-title-line-1 { transform: rotate(2.5deg); transform-origin: right center; align-self: flex-end; }
[dir="rtl"] .hero-title-line-2 { transform: rotate(1.2deg) translateX(-14px); transform-origin: right center; align-self: flex-end; }

.hero-title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 24px 0 22px;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255,106,0,0.5);
}
.hero-subtitle {
    font-size: 16px;
    color: #e2e2e2;
    line-height: 1.7;
    margin: 0;
    max-width: 540px;
    font-weight: 500;
}

/* =================================================================
   BOOKING FORM CARD — modern
   ================================================================= */
.booking-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(28,28,28,0.92) 0%, rgba(15,15,15,0.96) 100%);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 22px;
    width: 100%;
    max-width: 480px;
    justify-self: end;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.5),
        0 4px 14px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06);
}
/* Top orange accent stripe — kart yuvarlağına göre clip için inherit border-radius */
.booking-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 35%, var(--accent) 65%, transparent 100%);
    opacity: 0.95;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.booking-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 14px;
}
.booking-head-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255,106,0,0.22) 0%, rgba(255,106,0,0.08) 100%);
    border: 1px solid rgba(255,106,0,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255,106,0,0.18), inset 0 1px 0 rgba(255,255,255,0.1);
}
.booking-head-icon svg { width: 20px; height: 20px; }
.booking-head-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 1.5px;
}

/* Trip type tabs */
.trip-tabs {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 12px;
}
.trip-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 7px;
    cursor: pointer;
    transition: color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
    font-family: inherit;
    line-height: 1;
}
.trip-tab:hover { color: var(--text); }
.trip-tab.is-active {
    color: #fff;
    background: linear-gradient(180deg, #2a2a2a 0%, #1c1c1c 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

.field { margin-bottom: 10px; }
.field-input-wrap {
    position: relative;
    display: flex; align-items: center;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 11px;
    padding: 0 14px;
    transition: border-color 120ms ease, background-color 120ms ease;
}
.field-input-wrap:hover { background: rgba(0,0,0,0.45); }
.field-input-wrap:focus-within {
    border-color: var(--accent);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 3px rgba(255,106,0,0.12);
}
/* Custom alert modal — alert() yerine */
.shadow-alert-modal {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 200ms ease;
}
.shadow-alert-modal.is-open { opacity: 1; }
.shadow-alert-modal.is-closing { opacity: 0; }
.shadow-alert-inner {
    background: linear-gradient(180deg, #1f1f1f 0%, #181818 100%);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 14px;
    padding: 26px 28px 22px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(239,68,68,0.1);
    transform: scale(0.96) translateY(-8px);
    transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.shadow-alert-modal.is-open .shadow-alert-inner { transform: scale(1) translateY(0); }
.shadow-alert-modal.is-closing .shadow-alert-inner { transform: scale(0.96) translateY(-8px); }
.shadow-alert-icon {
    width: 56px; height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(239,68,68,0.08));
    border: 2px solid rgba(239,68,68,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    animation: shadowAlertPulse 1.4s ease-in-out infinite;
}
.shadow-alert-icon svg { width: 28px; height: 28px; }
@keyframes shadowAlertPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.35); }
    50%      { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
}
.shadow-alert-msg {
    color: #f5f5f5;
    font-size: 14.5px;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 18px;
    word-break: break-word;
}
.shadow-alert-btn {
    background: var(--accent, #ff6a00);
    color: #fff;
    border: 0;
    padding: 11px 38px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 160ms;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(255,106,0,0.35);
}
.shadow-alert-btn:hover {
    background: #e85e00;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255,106,0,0.5);
}
.shadow-alert-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Shadow Dialog — alert/confirm yerine geçen kütüphane (assets/js/shadow-dialog.js) */
.shadow-dialog {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 200ms ease;
}
.shadow-dialog.is-open { opacity: 1; }
.shadow-dialog.is-closing { opacity: 0; }
.shadow-dialog-inner {
    background: linear-gradient(180deg, #1f1f1f 0%, #181818 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 28px 22px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
    transform: scale(0.96) translateY(-8px);
    transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.shadow-dialog.is-open .shadow-dialog-inner { transform: scale(1) translateY(0); }
.shadow-dialog.is-closing .shadow-dialog-inner { transform: scale(0.96) translateY(-8px); }
.shadow-dialog.is-danger .shadow-dialog-inner {
    border-color: rgba(239,68,68,0.35);
    box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(239,68,68,0.12);
}
.shadow-dialog-icon {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}
.shadow-dialog-icon svg { width: 30px; height: 30px; }
.shadow-dialog-icon[data-icon="warning"] {
    background: linear-gradient(135deg, rgba(255,170,0,0.22), rgba(255,170,0,0.06));
    border-color: rgba(255,170,0,0.45);
    color: #ffb020;
}
.shadow-dialog-icon[data-icon="info"] {
    background: linear-gradient(135deg, rgba(56,139,253,0.22), rgba(56,139,253,0.06));
    border-color: rgba(56,139,253,0.45);
    color: #4ea3ff;
}
.shadow-dialog-icon[data-icon="success"] {
    background: linear-gradient(135deg, rgba(34,197,94,0.22), rgba(34,197,94,0.06));
    border-color: rgba(34,197,94,0.45);
    color: #22c55e;
}
.shadow-dialog-icon[data-icon="danger"] {
    background: linear-gradient(135deg, rgba(239,68,68,0.22), rgba(239,68,68,0.06));
    border-color: rgba(239,68,68,0.45);
    color: #ef4444;
}
.shadow-dialog-icon[data-icon="question"] {
    background: linear-gradient(135deg, rgba(255,106,0,0.22), rgba(255,106,0,0.06));
    border-color: rgba(255,106,0,0.45);
    color: #ff8a3d;
}
.shadow-dialog.is-danger .shadow-dialog-icon {
    background: linear-gradient(135deg, rgba(239,68,68,0.22), rgba(239,68,68,0.06));
    border-color: rgba(239,68,68,0.45);
    color: #ef4444;
}
.shadow-dialog-title {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.35;
}
.shadow-dialog-message {
    color: #e6e6e6;
    font-size: 14.5px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 22px;
    word-break: break-word;
    white-space: pre-line;
}
.shadow-dialog-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.shadow-dialog-btn {
    border: 0;
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 160ms;
    min-width: 110px;
}
.shadow-dialog-btn-primary {
    background: var(--accent, #ff6a00);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255,106,0,0.35);
}
.shadow-dialog-btn-primary:hover {
    background: #e85e00;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255,106,0,0.5);
}
.shadow-dialog.is-danger .shadow-dialog-btn-primary {
    background: #ef4444;
    box-shadow: 0 4px 12px rgba(239,68,68,0.35);
}
.shadow-dialog.is-danger .shadow-dialog-btn-primary:hover {
    background: #dc2626;
    box-shadow: 0 6px 18px rgba(239,68,68,0.5);
}
.shadow-dialog-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #f0f0f0;
    border: 1px solid rgba(255,255,255,0.12);
}
.shadow-dialog-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.shadow-dialog-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Boş bırakılan zorunlu alan — kırmızı uyarı kenarı + nazik shake */
.field-input-wrap:has(input.is-error),
input.is-error {
    animation: bookFieldShake 360ms ease-out;
}
.field-input-wrap:has(input.is-error) {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.18) !important;
    background: rgba(239,68,68,0.06) !important;
}
@keyframes bookFieldShake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-4px); }
    40%      { transform: translateX(4px); }
    60%      { transform: translateX(-2px); }
    80%      { transform: translateX(2px); }
}
.field-icon {
    color: var(--text-muted);
    width: 18px; height: 18px;
    flex-shrink: 0;
    transition: color 120ms ease;
}
.field-input-wrap:focus-within .field-icon { color: var(--accent); }
.field-icon-dest { color: var(--accent); }
.field-input-wrap input,
.field-input-wrap select {
    background: transparent;
    border: 0;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 13px 12px;
    outline: none;
    font-family: inherit;
}
.field-input-wrap input::placeholder { color: var(--text-dim); }

/* Havalimanı hızlı seç chip'leri (FROM input üstünde) */
.airport-chips {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}
.airport-chips-label {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.airport-chip-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}
.airport-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    color: #f0f0f0;
    font-size: 11.5px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease, transform 80ms ease;
    line-height: 1.1;
    letter-spacing: 0.2px;
    overflow: hidden;
    min-width: 0;
}
.airport-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.airport-chip:hover {
    background: var(--accent-soft);
    border-color: rgba(255,106,0,0.45);
    color: var(--accent);
}
.airport-chip:active { transform: translateY(1px); }
.airport-chip svg {
    width: 13px; height: 13px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Locations + swap */
.locations {
    position: relative;
    margin-bottom: 10px;
}
.locations-field { margin-bottom: 8px; }
.locations-field:last-child { margin-bottom: 0; }
.locations-swap {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--text);
    cursor: default;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    pointer-events: none;
}
.locations-swap svg { width: 16px; height: 16px; }

/* Collapsible return date */
.is-collapsible { display: none; }
.is-collapsible:not([hidden]) { display: block; }

/* Counters */
.counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
    margin-top: 10px;
}
.counter {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 11px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.counter-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}
.counter-icon { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.counter-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.counter-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.counter-btn {
    width: 28px; height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
    font-family: inherit;
}
.counter-btn:hover {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: rgba(255,106,0,0.4);
}
.counter-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    border-color: rgba(255,255,255,0.08);
}
.counter-controls input[type="number"] {
    width: 100%;
    flex: 1;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: inherit;
}
.counter-controls input[type="number"]::-webkit-inner-spin-button,
.counter-controls input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Passenger dropdown counter */
.counter-passengers {
    position: relative;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
}
.pass-trigger {
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 11px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
    cursor: pointer;
    color: var(--text);
    font-family: inherit;
    text-align: start;
    transition: background-color 120ms ease, border-color 120ms ease;
}
.pass-trigger:hover { background: rgba(0,0,0,0.45); }
.counter-passengers[data-open] .pass-trigger {
    background: rgba(0,0,0,0.5);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,106,0,0.12);
}
.pass-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    min-width: 0;
}
.pass-summary {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #fff;
    font-size: 13.5px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}
.pass-sum-part {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}
.pass-sum-num {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.pass-sum-word {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}
.pass-sum-sep {
    color: var(--text-dim);
    margin: 0 2px;
    font-weight: 400;
}
.pass-chevron {
    width: 14px; height: 14px;
    color: var(--text-muted);
    transition: transform 140ms ease;
}
.counter-passengers[data-open] .pass-chevron { transform: rotate(180deg); color: var(--accent); }

.pass-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 280px;
    background: #181818;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 8px;
    z-index: 80;
    box-shadow: 0 14px 32px rgba(0,0,0,0.55);
}
/* Dar konteynerlerde panel sağa doğru genişler */
.ag-booking-card .pass-panel { right: auto; }
.pass-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 10px;
}
.pass-row-text { flex: 1; min-width: 0; }
.pass-row-ctrls { flex-shrink: 0; }
.pass-row + .pass-row {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.pass-row-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.2;
}
.pass-row-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.pass-row-sub {
    color: var(--text-muted);
    font-size: 11.5px;
    font-weight: 500;
}
.pass-row-ctrls {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pass-row-ctrls input[type="number"] {
    width: 32px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: inherit;
    padding: 0;
}
.pass-row-ctrls input[type="number"]::-webkit-inner-spin-button,
.pass-row-ctrls input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Number input okları gizle (tasarım sadeliği için) */
.field-input-wrap input[type="number"]::-webkit-outer-spin-button,
.field-input-wrap input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.field-input-wrap input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

/* Date input'un takvim ikonu yerine kendi ikonumuz var */
.field-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
    filter: invert(1);
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.6px;
    margin: 0 0 6px 4px;
    text-transform: uppercase;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(180deg, #ff8a30 0%, #e85a00 100%);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 15px 22px;
    border: none;
    border-radius: 13px;
    margin-top: 4px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow:
        0 8px 24px rgba(255,106,0,0.42),
        inset 0 1px 0 rgba(255,255,255,0.22);
    transition: box-shadow 180ms ease, background 180ms ease, transform 80ms ease;
    letter-spacing: 0.3px;
    font-family: inherit;
}
.btn-submit:hover {
    background: linear-gradient(180deg, #ff9a45 0%, #ff6a00 100%);
    box-shadow:
        0 12px 32px rgba(255,106,0,0.55),
        inset 0 1px 0 rgba(255,255,255,0.32);
}
.btn-submit:active { transform: translateY(1px); }
.btn-submit svg { width: 20px; height: 20px; }

/* Trust signals */
.trust {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.trust li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1;
}
.trust svg {
    width: 12px; height: 12px;
    color: #25D366;
    flex-shrink: 0;
}

/* =================================================================
   POPÜLER TRANSFERLER (hero'dan sonraki bölüm)
   ================================================================= */
.popular {
    background: #ececef;
    padding: 70px 0 80px;
    color: #1a1a1a;
}
.popular-inner {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 32px;
}
.section-title {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0 0 36px;
    color: #2a2a2a;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}
.section-title strong {
    font-weight: 800;
    color: #111;
    letter-spacing: 1.5px;
}
.section-title span {
    color: #6b7280;
    font-weight: 500;
}

.transfer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.transfer-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 22px 28px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    color: #2a2a2a;
    text-decoration: none;
    transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.transfer-card:hover {
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.3);
    transform: translateY(-1px);
}

.transfer-pin {
    color: var(--accent);
    flex-shrink: 0;
    line-height: 0;
}
.transfer-pin svg { width: 30px; height: 30px; }

.transfer-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}
.transfer-from {
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.transfer-to {
    font-size: 13px;
    color: #8b95a3;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transfer-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    color: #1a1a1a;
    flex-shrink: 0;
    line-height: 1;
}
.transfer-currency {
    font-size: 15px;
    font-weight: 700;
    color: #555;
}
.transfer-amount {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.transfer-amount-full {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.transfer-cents {
    font-size: 11px;
    font-weight: 700;
    color: #555;
    align-self: flex-start;
    margin-top: 3px;
}

@media (max-width: 1100px) {
    .transfer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
    .transfer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
    .transfer-grid { grid-template-columns: 1fr; }
    .popular { padding: 50px 0 60px; }
}

/* =================================================================
   MÜŞTERİ YORUMLARI (slider)
   ================================================================= */
.testimonials {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #d63031 0%, #b71c1c 100%);
    color: #fff;
    padding: 44px 0 50px;
}
.testimonials-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.18;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.testimonials-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1) contrast(1.1);
}
.testimonials::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(214,48,49,0.4) 0%, rgba(183,28,28,0.7) 100%);
    pointer-events: none;
}
.testimonials-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.section-title-light {
    color: #fff;
}
.section-title-light strong { color: #fff; }
.section-title-light span { color: rgba(255,255,255,0.78); }

.testimonials-track {
    position: relative;
    min-height: 180px;
    margin-top: 18px;
}
.testimonial {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 700ms ease, transform 700ms ease;
    pointer-events: none;
    padding: 0 8px;
}
.testimonial.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}
.testimonial-quote {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    font-weight: 400;
    margin: 0 0 22px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}
.testimonial-quote .quote-mark {
    font-size: 22px;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    margin: 0 4px;
}
.testimonial-stars {
    display: inline-flex;
    gap: 4px;
    color: #fff;
    margin: 4px 0 14px;
}
.testimonial-stars svg { width: 22px; height: 22px; }
.testimonial-author {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
    margin: 0;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.t-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: width 200ms ease, background-color 200ms ease;
}
.t-dot:hover { background: rgba(255,255,255,0.7); }
.t-dot.is-active {
    background: #fff;
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 600px) {
    .testimonials { padding: 50px 0 60px; }
    .testimonial-quote { font-size: 14.5px; line-height: 1.65; }
    .testimonials-track { min-height: 280px; }
}

/* =================================================================
   ŞİRKETİMİZ HAKKINDA
   ================================================================= */
.about {
    background: #fff;
    padding: 80px 0;
    color: #2a2a2a;
}
.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    text-align: center;
}
.about-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 16px 24px rgba(0,0,0,0.15));
}
.about-content { max-width: 560px; }
.about-title {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 0 0 18px;
    color: #2a2a2a;
}
.about-title strong {
    font-weight: 800;
    color: #111;
}
.about-title span {
    color: #6b7280;
    font-weight: 500;
    margin-left: 6px;
}
.about-description {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    margin: 0 0 22px;
    text-align: justify;
}
.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #ff7a1a 0%, #e85a00 100%);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(255,106,0,0.32), inset 0 1px 0 rgba(255,255,255,0.18);
    transition: box-shadow 160ms ease, background 160ms ease;
}
.btn-readmore:hover {
    background: linear-gradient(180deg, #ff8a35 0%, #ff6a00 100%);
    box-shadow: 0 6px 20px rgba(255,106,0,0.48), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-readmore svg { width: 22px; height: 22px; flex-shrink: 0; }
[dir="rtl"] .btn-readmore svg { transform: scaleX(-1); }

@media (max-width: 800px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-content { max-width: none; text-align: center; }
    .about-description { text-align: left; }
    .about { padding: 50px 0 60px; }
}

/* =================================================================
   NEDEN BİZİ TERCİH ETMELİSİNİZ? (banner)
   ================================================================= */
.why-us {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #1a1a1a;
}
.why-us-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.why-us-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.why-us-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 130px;
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 32px;
    gap: 40px;
}

/* Sol panel — başlık */
.why-us-title {
    background: var(--accent);
    color: #fff;
    padding: 28px 40px 28px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    /* Sol kenara kadar uzansın */
    box-shadow: -100vw 0 0 var(--accent);
}
.why-us-light {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
    line-height: 1.2;
}
.why-us-strong {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-top: 4px;
}

/* Sağ panel — özellikler */
.why-us-features {
    background: var(--accent);
    color: #fff;
    list-style: none;
    margin: 0;
    padding: 22px 28px 22px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    box-shadow: 100vw 0 0 var(--accent);
}
.why-us-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}
.why-us-features svg {
    width: 16px; height: 16px;
    color: #fff;
    flex-shrink: 0;
    background: rgba(255,255,255,0.18);
    border-radius: 4px;
    padding: 2px;
    box-sizing: content-box;
}

@media (max-width: 900px) {
    .why-us-inner {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    .why-us-title,
    .why-us-features {
        box-shadow: none;
        padding: 24px 28px;
        text-align: center;
        align-items: center;
    }
    .why-us-features { gap: 8px; }
    .why-us-features li { justify-content: center; }
}

/* =================================================================
   SAYFA: SIKÇA SORULAN SORULAR
   ================================================================= */
.page-faq {
    background: linear-gradient(180deg, #ececef 0%, #f5f5f7 100%);
    color: #1a1a1a;
    padding: 72px 0 88px;
    min-height: 60vh;
}
.page-faq-inner {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}
.page-faq-header {
    text-align: center;
    margin-bottom: 36px;
}
.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,106,0,0.25);
}
.page-badge svg { width: 14px; height: 14px; }
.page-faq-title {
    font-size: clamp(28px, 4.2vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
    margin: 0 0 12px;
    line-height: 1.15;
}
.page-faq-subtitle {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    max-width: 640px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.faq-item[open] {
    border-color: rgba(255,106,0,0.45);
    box-shadow: 0 6px 20px rgba(255,106,0,0.1);
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-icon {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.04);
    color: #555;
    border-radius: 8px;
    flex-shrink: 0;
    transition: background 140ms ease, color 140ms ease;
}
.faq-q-icon svg { width: 18px; height: 18px; }
.faq-item[open] .faq-q-icon {
    background: var(--accent-soft);
    color: var(--accent);
}
.faq-q-text {
    flex: 1;
    font-size: 15.5px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}
.faq-item[open] .faq-q-text { color: var(--accent); }
.faq-chevron {
    width: 18px; height: 18px;
    color: #888;
    flex-shrink: 0;
    transition: transform 200ms ease, color 140ms ease;
}
.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq-answer {
    padding: 0 22px 22px 68px;
    color: #4a5058;
    font-size: 14.5px;
    line-height: 1.7;
}
[dir="rtl"] .faq-answer {
    padding: 0 68px 22px 22px;
}

@media (max-width: 600px) {
    .page-faq { padding: 50px 0 60px; }
    .faq-question { padding: 14px 16px; gap: 10px; }
    .faq-answer { padding: 0 16px 18px 56px; font-size: 14px; }
    .faq-q-text { font-size: 14.5px; }
}

/* =================================================================
   SAYFA: HAKKIMIZDA
   ================================================================= */
.about-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.about-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.about-hero-inner { max-width: 800px; margin: 0 auto; }
.about-hero-title {
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.1;
}
.about-hero-subtitle {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-section-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #2a2a2a;
    margin: 0 0 14px;
}
.about-section-title strong {
    font-weight: 800;
    color: #111;
}
.about-section-subtitle {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
}

/* Stats — story üstündeki vurucu sayılar */
.about-stats {
    background: #fff;
    padding: 56px 0 0;
}
.about-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-card {
    background: linear-gradient(180deg, #fafafa 0%, #f3f3f5 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    border-color: rgba(255,106,0,0.4);
}
.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Story */
.about-story {
    background: #fff;
    padding: 56px 0 80px;
    color: #2a2a2a;
}
.about-story-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}
.about-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-left: 36px;
    position: relative;
}
.about-eyebrow::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 28px;
    height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}
[dir="rtl"] .about-eyebrow { padding-left: 0; padding-right: 36px; }
[dir="rtl"] .about-eyebrow::before { left: auto; right: 0; }
.about-section-title-lg {
    font-size: clamp(26px, 3vw, 36px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 22px !important;
}
.about-story-text {
    color: #4a5058;
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0 0 18px;
}
.about-story-lead {
    font-size: 15.5px;
    color: #2a2f36;
    font-weight: 500;
}
.about-story-text:last-child { margin-bottom: 0; }

/* Resim — daha büyük + dekoratif çerçeve */
.about-story-image {
    position: relative;
    padding: 18px 18px 18px 0;
}
.about-story-image::before {
    content: '';
    position: absolute;
    top: 0; bottom: 36px; right: 0;
    width: 65%;
    background: linear-gradient(135deg, var(--accent-soft), rgba(255,106,0,0.04));
    border-radius: 18px;
    z-index: 0;
}
.about-story-image::after {
    content: '';
    position: absolute;
    bottom: -14px; right: -14px;
    width: 96px; height: 96px;
    background: var(--accent);
    border-radius: 16px;
    z-index: 0;
    box-shadow: 0 12px 32px rgba(255,106,0,0.32);
}
.about-story-image-frame {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.18);
    background: #f4f5f7;
}
.about-story-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.about-story-badge {
    position: absolute;
    bottom: 4px;
    right: 30px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1a1a1a;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.4px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.05);
}
.about-story-badge svg {
    width: 18px; height: 18px;
    color: #fff;
    background: #25D366;
    padding: 3px;
    border-radius: 50%;
    box-sizing: content-box;
}
[dir="rtl"] .about-story-image { padding: 18px 0 18px 18px; }
[dir="rtl"] .about-story-image::before { right: auto; left: 0; }
[dir="rtl"] .about-story-image::after { right: auto; left: -14px; }
[dir="rtl"] .about-story-badge { right: auto; left: 30px; }

/* Values */
.about-values {
    background: #f5f5f7;
    padding: 64px 0 72px;
}
.about-values-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}
.about-values-head {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.about-values-head .about-section-subtitle { margin: 0 auto; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.value-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.35);
}
.value-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,106,0,0.18), rgba(255,106,0,0.06));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(255,106,0,0.25);
}
.value-icon svg { width: 26px; height: 26px; }
.value-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 8px;
}
.value-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Team */
.about-team {
    background: #fff;
    padding: 64px 0 72px;
}
.about-team-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.about-team-head { text-align: center; margin-bottom: 36px; }
.team-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* Üye sayısına göre dinamik kolon (4-6 arası, her zaman tek satır) */
.team-grid-1 { grid-template-columns: minmax(0, 320px); justify-content: center; }
.team-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.team-grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
/* 5-6 üyede kart içi sıkıştırma */
.team-grid-5 .team-photo,
.team-grid-6 .team-photo { width: 110px; height: 110px; }
.team-grid-5 .team-name,
.team-grid-6 .team-name { font-size: 15px; }
.team-grid-5 .team-desc,
.team-grid-6 .team-desc { font-size: 12px; }
.team-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 22px 22px 24px;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.35);
}
.team-photo {
    width: 130px;
    height: 130px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    background: #ececef;
    border: 3px solid var(--accent-soft);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.team-name {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 4px;
}
.team-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.team-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* CTA */
.about-cta {
    background: linear-gradient(135deg, #1a1a1c 0%, #0f0f10 100%);
    color: #fff;
    padding: 56px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,106,0,0.18), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255,106,0,0.12), transparent 60%);
    pointer-events: none;
}
.about-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.about-cta-title {
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.about-cta-subtitle {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 24px;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #ff8a30 0%, #e85a00 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(255,106,0,0.42), inset 0 1px 0 rgba(255,255,255,0.22);
    transition: box-shadow 160ms ease, transform 80ms ease;
    letter-spacing: 0.3px;
}
.about-cta-btn:hover {
    box-shadow: 0 12px 32px rgba(255,106,0,0.55), inset 0 1px 0 rgba(255,255,255,0.32);
}
.about-cta-btn:active { transform: translateY(1px); }
.about-cta-btn svg { width: 18px; height: 18px; }
[dir="rtl"] .about-cta-btn svg { transform: scaleX(-1); }

@media (max-width: 900px) {
    .about-stats-inner { grid-template-columns: 1fr 1fr; }
    .about-story-inner { grid-template-columns: 1fr; gap: 36px; }
    .about-story-image { padding: 0 14px 28px 0; }
    .about-story-image::after { width: 70px; height: 70px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .team-grid,
    .team-grid-1, .team-grid-2, .team-grid-3, .team-grid-4, .team-grid-5, .team-grid-6 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .about-hero { padding: 48px 24px 36px; }
    .about-stats { padding: 40px 0 0; }
    .about-stats-inner { gap: 10px; padding: 0 20px; }
    .stat-num { font-size: 24px; }
    .stat-label { font-size: 10.5px; letter-spacing: 0.6px; }
    .about-story, .about-values, .about-team { padding: 48px 0 56px; }
    .about-story-image::after { width: 56px; height: 56px; bottom: -8px; right: -8px; }
    .about-story-badge { right: 20px; padding: 9px 14px; font-size: 12px; }
    .values-grid,
    .team-grid,
    .team-grid-1, .team-grid-2, .team-grid-3, .team-grid-4, .team-grid-5, .team-grid-6 {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   SAYFA: HİZMETLERİMİZ
   ================================================================= */
.services-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.services-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.services-hero-inner { max-width: 800px; margin: 0 auto; }
.services-hero-title {
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.1;
}
.services-hero-subtitle {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.services-list {
    background: #f5f5f7;
    padding: 64px 0 80px;
}
.services-list-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.services-list-inner.services-list-cols-1 {
    grid-template-columns: minmax(0, 380px);
    justify-content: center;
}
.services-list-inner.services-list-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 880px;
}
.services-list-inner.services-list-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    position: relative;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(255,106,0,0.4);
}
.service-card.is-free {
    border-color: rgba(37,211,102,0.4);
}
.service-card.is-free:hover {
    border-color: rgba(37,211,102,0.7);
    box-shadow: 0 20px 40px rgba(37,211,102,0.18);
}

.service-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ececef;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 400ms ease;
}
.service-card:hover .service-image img { transform: scale(1.04); }

.service-icon-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255,106,0,0.4);
}
.service-icon-badge svg { width: 22px; height: 22px; }
.service-card.is-free .service-icon-badge {
    background: #25D366;
    box-shadow: 0 6px 16px rgba(37,211,102,0.45);
}

.service-free-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #25D366;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}
[dir="rtl"] .service-icon-badge { left: auto; right: 14px; }
[dir="rtl"] .service-free-tag { right: auto; left: 14px; }

.service-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-title {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.25;
}
.service-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 18px;
}

.service-features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5058;
    line-height: 1.3;
}
.service-features svg {
    width: 14px; height: 14px;
    color: var(--accent);
    flex-shrink: 0;
    background: var(--accent-soft);
    border-radius: 50%;
    padding: 3px;
    box-sizing: content-box;
}
.service-card.is-free .service-features svg {
    color: #25D366;
    background: rgba(37,211,102,0.12);
}

.service-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.service-price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}
.service-price-label {
    font-size: 10.5px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.service-price {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}
.service-card.is-free .service-price { color: #25D366; }

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #ff8a30 0%, #e85a00 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(255,106,0,0.32), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: box-shadow 160ms ease, transform 80ms ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.service-btn:hover {
    box-shadow: 0 6px 20px rgba(255,106,0,0.48), inset 0 1px 0 rgba(255,255,255,0.28);
}
.service-btn:active { transform: translateY(1px); }
.service-btn svg { width: 14px; height: 14px; }
.service-card.is-free .service-btn {
    background: linear-gradient(180deg, #2eda6f 0%, #1ea34d 100%);
    box-shadow: 0 4px 14px rgba(37,211,102,0.4), inset 0 1px 0 rgba(255,255,255,0.22);
}
.service-card.is-free .service-btn:hover {
    box-shadow: 0 6px 20px rgba(37,211,102,0.55), inset 0 1px 0 rgba(255,255,255,0.32);
}
.service-btn.service-btn-green {
    background: linear-gradient(180deg, #2eda6f 0%, #1ea34d 100%);
    box-shadow: 0 4px 14px rgba(37,211,102,0.4), inset 0 1px 0 rgba(255,255,255,0.22);
}
.service-btn.service-btn-green:hover {
    box-shadow: 0 6px 20px rgba(37,211,102,0.55), inset 0 1px 0 rgba(255,255,255,0.32);
}
[dir="rtl"] .service-btn svg { transform: scaleX(-1); }

@media (max-width: 1180px) {
    .services-list-inner,
    .services-list-inner.services-list-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1000px) {
    .services-list-inner,
    .services-list-inner.services-list-cols-3,
    .services-list-inner.services-list-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .services-list-inner,
    .services-list-inner.services-list-cols-1,
    .services-list-inner.services-list-cols-2,
    .services-list-inner.services-list-cols-3 {
        grid-template-columns: 1fr;
        max-width: 100%;
        justify-content: stretch;
    }
    .services-hero { padding: 48px 24px 36px; }
    .services-list { padding: 48px 0 60px; }
    .service-features { grid-template-columns: 1fr; }
}

/* =================================================================
   SAYFA: İLETİŞİM
   ================================================================= */
.contact-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.contact-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.contact-hero-inner { max-width: 800px; margin: 0 auto; }
.contact-hero-title {
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.1;
}
.contact-hero-subtitle {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* 3 İletişim Kartı */
.contact-cards {
    background: #fff;
    padding: 56px 0 24px;
}
.contact-cards-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.contact-card {
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 26px 24px;
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.4);
}
.contact-card-address { cursor: default; }
.contact-card-address:hover { transform: none; }
.contact-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,106,0,0.18), rgba(255,106,0,0.06));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid rgba(255,106,0,0.25);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 0.2px;
}
.contact-card-desc {
    font-size: 12.5px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.contact-card-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.5;
    word-wrap: break-word;
}
.contact-card-address .contact-card-value {
    color: #2a2a2a;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
}

/* Form + Map yan yana */
.contact-main {
    background: #f5f5f7;
    padding: 48px 0 80px;
}
.contact-main-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-form {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 32px 32px 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.contact-form-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-form-head .about-section-title {
    font-size: 22px;
    margin-bottom: 6px;
}
.contact-form-head .about-section-subtitle {
    font-size: 14px;
    line-height: 1.55;
}
.contact-form-flash {
    margin-bottom: 14px;
    padding: 11px 14px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.5;
}
.contact-form-flash.is-ok  { background: rgba(46,218,111,0.12); color: #2eda6f; border: 1px solid rgba(46,218,111,0.3); }
.contact-form-flash.is-err { background: rgba(239,68,68,0.10); color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field-full { margin-bottom: 18px; }
.contact-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.3px;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: inherit;
    outline: none;
    transition: border-color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,106,0,0.12);
}
.contact-field textarea { resize: vertical; min-height: 120px; }

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #ff8a30 0%, #e85a00 100%);
    color: #fff;
    border: none;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255,106,0,0.42), inset 0 1px 0 rgba(255,255,255,0.22);
    transition: box-shadow 160ms ease, transform 80ms ease;
    letter-spacing: 0.3px;
    font-family: inherit;
}
.contact-submit:hover {
    box-shadow: 0 12px 32px rgba(255,106,0,0.55), inset 0 1px 0 rgba(255,255,255,0.32);
}
.contact-submit:active { transform: translateY(1px); }
.contact-submit svg { width: 18px; height: 18px; }
[dir="rtl"] .contact-submit svg { transform: scaleX(-1); }

/* Harita */
.contact-map {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 28px 28px 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}
.contact-map-head { margin-bottom: 16px; }
.contact-map-head .about-section-title { font-size: 20px; margin: 0; }
.contact-map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #ececef;
    margin-bottom: 14px;
    border: 1px solid rgba(0,0,0,0.06);
}
.contact-map-frame iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0;
}
.contact-map-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 20px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(37,211,102,0.32);
    transition: background 140ms ease, box-shadow 140ms ease;
}
.contact-map-wa:hover {
    background: #1ea34d;
    box-shadow: 0 6px 18px rgba(37,211,102,0.5);
}
.contact-map-wa svg { width: 18px; height: 18px; }

@media (max-width: 1000px) {
    .contact-main-inner { grid-template-columns: 1fr; }
    .contact-cards-inner { grid-template-columns: 1fr 1fr; }
    .contact-card-address { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
    .contact-hero { padding: 48px 24px 36px; }
    .contact-cards-inner { grid-template-columns: 1fr; }
    .contact-card-address { grid-column: auto; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 22px; }
    .contact-map { padding: 22px 22px 18px; }
}

/* =================================================================
   SAYFA: GALERİ + LIGHTBOX
   ================================================================= */
.gallery-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.gallery-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.gallery-hero-inner { max-width: 800px; margin: 0 auto; }
.gallery-hero-title {
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.1;
}
.gallery-hero-subtitle {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.gallery-grid-section {
    background: #f5f5f7;
    padding: 56px 0 80px;
}
.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    column-count: 3;
    column-gap: 16px;
}
@media (max-width: 900px) {
    .gallery-grid { column-count: 2; }
}
@media (max-width: 560px) {
    .gallery-grid { column-count: 1; }
    .gallery-grid-section { padding: 40px 0 60px; }
}

.gallery-item {
    display: block;
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 200ms ease, box-shadow 200ms ease;
    break-inside: avoid;
    page-break-inside: avoid;
}
.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 400ms ease, filter 200ms ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.85); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    color: #fff;
    opacity: 0;
    transition: background-color 200ms ease, opacity 200ms ease;
    pointer-events: none;
}
.gallery-item:hover .gallery-overlay {
    background: rgba(0,0,0,0.35);
    opacity: 1;
}
.gallery-overlay svg {
    width: 38px; height: 38px;
    background: var(--accent);
    border-radius: 50%;
    padding: 8px;
    box-sizing: content-box;
    box-shadow: 0 8px 18px rgba(0,0,0,0.4);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    cursor: default;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 140ms ease, transform 80ms ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active { transform: scale(0.94); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:active { transform: translateY(-50%) scale(0.94); }
.lightbox-next:active { transform: translateY(-50%) scale(0.94); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
[dir="rtl"] .lightbox-prev { left: auto; right: 20px; }
[dir="rtl"] .lightbox-next { right: auto; left: 20px; }
[dir="rtl"] .lightbox-close { right: auto; left: 20px; }

@media (max-width: 600px) {
    .lightbox { padding: 60px 16px; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; }
    .lightbox-close { width: 40px; height: 40px; }
}

/* =================================================================
   SAYFA: REZERVASYONUM (akıllı sorgulama)
   ================================================================= */
.res-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.res-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.res-hero-inner { max-width: 800px; margin: 0 auto; }
.res-hero-title {
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.1;
}
.res-hero-subtitle {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Search section — büyük tek input */
.res-search {
    background: #f5f5f7;
    padding: 56px 0 56px;
}
.res-search-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}
.res-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    padding: 36px 36px 32px;
    position: relative;
    overflow: hidden;
}
.res-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.res-form { padding: 0; }

.res-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.res-help-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0 0 16px;
}

.res-field {
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 4px 14px 4px 16px;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
    margin-bottom: 14px;
}
.res-field:focus-within {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,106,0,0.12);
}
.res-field-icon {
    width: 22px; height: 22px;
    color: #999;
    flex-shrink: 0;
    margin-right: 12px;
    transition: color 160ms ease;
}
.res-field:focus-within .res-field-icon { color: var(--accent); }
.res-field input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    padding: 16px 0;
    font-size: 15.5px;
    color: #1a1a1a;
    outline: none;
    font-family: inherit;
    text-overflow: ellipsis;
}
.res-detect-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 0.3px;
    transition: background-color 160ms ease, color 160ms ease;
    white-space: nowrap;
}
.res-detect-pill[data-active="email"],
.res-detect-pill[data-active="phone"],
.res-detect-pill[data-active="name"],
.res-detect-pill[data-active="resnum"] {
    background: var(--accent-soft);
    color: var(--accent);
}
.res-detect-pill[data-active="email"]::before,
.res-detect-pill[data-active="phone"]::before,
.res-detect-pill[data-active="name"]::before,
.res-detect-pill[data-active="resnum"]::before {
    content: '✓';
    font-weight: 900;
}

.res-help {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #6b7280;
    margin: 0 0 18px;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 10px 14px;
    border-radius: 10px;
    line-height: 1.5;
}
.res-help svg {
    width: 16px; height: 16px;
    color: #25D366;
    flex-shrink: 0;
}

.res-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, #ff8a30 0%, #e85a00 100%);
    color: #fff;
    border: 0;
    font-weight: 800;
    font-size: 16px;
    padding: 17px 22px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255,106,0,0.42), inset 0 1px 0 rgba(255,255,255,0.22);
    transition: box-shadow 160ms ease, transform 80ms ease;
    letter-spacing: 0.3px;
    font-family: inherit;
}
.res-submit:hover {
    box-shadow: 0 12px 32px rgba(255,106,0,0.55), inset 0 1px 0 rgba(255,255,255,0.32);
}
.res-submit:active { transform: translateY(1px); }
.res-submit svg { width: 18px; height: 18px; }

/* Nasıl Çalışır? 3-step */
.res-how {
    background: #fff;
    padding: 64px 0 48px;
}
.res-how-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.res-how-head {
    text-align: center;
    margin-bottom: 36px;
}
.res-how-head .about-section-title { font-size: 28px; margin-bottom: 6px; }
.res-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}
.res-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255,106,0,0.4) 0, rgba(255,106,0,0.4) 6px, transparent 6px, transparent 12px);
    z-index: 0;
}
.res-step {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 26px 22px 22px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.res-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.4);
}
.res-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(180deg, #ff8a30, #e85a00);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(255,106,0,0.4);
    border: 2px solid #fff;
}
.res-step-icon {
    width: 56px;
    height: 56px;
    margin: 6px auto 14px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,106,0,0.25);
}
.res-step-icon svg { width: 26px; height: 26px; }
.res-step-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.res-step-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Trust signals */
.res-trust {
    background: #f5f5f7;
    padding: 56px 0 56px;
}
.res-trust-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}
.res-trust-head {
    text-align: center;
    margin-bottom: 28px;
}
.res-trust-head .about-section-title { font-size: 24px; }
.res-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.res-trust-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.res-trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.06);
    border-color: rgba(255,106,0,0.35);
}
.res-trust-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 12px;
    background: linear-gradient(180deg, rgba(255,106,0,0.18), rgba(255,106,0,0.06));
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,106,0,0.25);
}
.res-trust-icon svg { width: 22px; height: 22px; }
.res-trust-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.res-trust-desc {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Help section (alt) */
.res-help-section {
    background: #fff;
    padding: 48px 0 80px;
}
.res-help-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}
.res-help-card {
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
    border: 1px solid rgba(255,106,0,0.2);
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}
.res-help-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.res-help-icon svg { width: 28px; height: 28px; }
.res-help-content {
    flex: 1;
    min-width: 200px;
}
.res-help-title {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 6px;
}
.res-help-text-large {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.res-help-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 22px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(37,211,102,0.32);
    transition: background-color 140ms ease, box-shadow 140ms ease;
    flex-shrink: 0;
}
.res-help-wa:hover {
    background: #1ea34d;
    box-shadow: 0 6px 18px rgba(37,211,102,0.5);
}
.res-help-wa svg { width: 18px; height: 18px; }

/* ========== Rezervasyon sorgulama: flash + sonuç kartları ========== */
.res-flash-section {
    padding: 0 0 12px;
}
.res-flash-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.res-flash {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
    border: 1px solid;
}
.res-flash svg { width: 20px; height: 20px; flex-shrink: 0; }
.res-flash-ok {
    background: rgba(34,197,94,0.08);
    border-color: rgba(34,197,94,0.32);
    color: #1d7a3a;
}
.res-flash-err {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.32);
    color: #b42a2a;
}

.res-results-section {
    padding: 16px 0 32px;
}
.res-results-inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}
.res-results-head {
    margin-bottom: 22px;
    text-align: center;
}
.res-results-title {
    font-size: 26px;
    font-weight: 800;
    color: #f5f5f5;
    margin: 0 0 4px;
}
.res-results-count {
    font-size: 14px;
    color: #c9ccd1;
    margin: 0;
}
.res-results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.res-card-result {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 200ms ease, transform 200ms ease;
}
.res-card-result:hover {
    box-shadow: 0 14px 36px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}
.res-card-result.res-status-cancelled {
    opacity: 0.78;
    background: linear-gradient(180deg, #fff 0%, #fdf3f3 100%);
}
.res-card-result.res-status-completed {
    background: linear-gradient(180deg, #fff 0%, #f3f9ff 100%);
}
.res-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(255,106,0,0.05) 0%, rgba(255,106,0,0.02) 100%);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.res-status-cancelled .res-card-head {
    background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.02));
}
.res-status-completed .res-card-head {
    background: linear-gradient(135deg, rgba(56,139,253,0.06), rgba(56,139,253,0.02));
}
.res-card-ref {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.res-card-ref-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
}
.res-card-ref-value {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}
.res-card-status {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.res-card-status-pending {
    background: rgba(255,170,0,0.14);
    color: #b07700;
    border: 1px solid rgba(255,170,0,0.32);
}
.res-card-status-confirmed {
    background: rgba(34,197,94,0.14);
    color: #1d7a3a;
    border: 1px solid rgba(34,197,94,0.32);
}
.res-card-status-cancelled {
    background: rgba(239,68,68,0.14);
    color: #b42a2a;
    border: 1px solid rgba(239,68,68,0.32);
}
.res-card-status-completed {
    background: rgba(56,139,253,0.14);
    color: #1565c0;
    border: 1px solid rgba(56,139,253,0.32);
}
.res-card-body {
    padding: 18px 24px 12px;
}
.res-card-section {
    padding: 14px 0;
    border-top: 1px dashed rgba(0,0,0,0.1);
}
.res-card-section:first-child {
    border-top: 0;
    padding-top: 4px;
}
.res-card-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--accent);
    margin: 0 0 12px;
}
.res-card-section-title svg {
    width: 16px;
    height: 16px;
}
.res-card-row-wide {
    grid-column: 1 / -1;
}
.res-card-pax-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
}
.res-card-pax-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 600;
}
.res-card-pax-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}
.res-card-note {
    background: rgba(255,170,0,0.08);
    border: 1px solid rgba(255,170,0,0.25);
    border-radius: 10px;
    padding: 12px 14px;
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}
.res-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}
.res-card-row {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: start;
}
.res-card-row-icon {
    grid-row: 1 / 3;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(255,106,0,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.res-card-row-icon svg { width: 16px; height: 16px; }
.res-card-row-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #6b7280;
}
.res-card-row-value {
    font-size: 14.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    word-break: break-word;
}
.res-card-row-value small {
    font-size: 12.5px;
    color: #6b7280;
    font-weight: 500;
    margin-left: 4px;
}
.res-card-row-arrow {
    color: var(--accent);
    font-weight: 700;
    margin: 0 4px;
}
.res-card-total {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(255,106,0,0.06);
    border: 1px solid rgba(255,106,0,0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.res-card-total-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #6b7280;
}
.res-card-total-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
}
.res-card-foot {
    padding: 14px 24px 18px;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.015);
}
.res-card-cancel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239,68,68,0.08);
    color: #b42a2a;
    border: 1px solid rgba(239,68,68,0.28);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 160ms;
}
.res-card-cancel-btn:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239,68,68,0.3);
}
.res-card-cancel-btn svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
    .res-steps { grid-template-columns: 1fr; gap: 18px; }
    .res-steps::before { display: none; }
    .res-trust-grid { grid-template-columns: 1fr 1fr; }
    .res-card-grid { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 600px) {
    .res-card { padding: 26px 22px 22px; }
    .res-search { padding: 40px 0 40px; }
    .res-how, .res-trust { padding: 48px 0; }
    .res-detect-pill { display: none; }
    .res-trust-grid { grid-template-columns: 1fr 1fr; }
    .res-help-card { flex-direction: column; text-align: center; }
    .res-help-content { text-align: center; }
    .res-help-section { padding: 40px 0 60px; }
    .res-card-head { padding: 14px 18px; }
    .res-card-body { padding: 14px 18px 10px; }
    .res-card-foot { padding: 12px 18px 14px; }
    .res-results-title { font-size: 22px; }
}

/* =================================================================
   LEGAL SAYFA: HİZMET SÖZLEŞMESİ + GİZLİLİK
   ================================================================= */
.legal-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.legal-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.legal-hero-inner { max-width: 800px; margin: 0 auto; }
.legal-hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.15;
}
.legal-hero-subtitle {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 12px;
}
.legal-updated {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.legal-main {
    background: #f5f5f7;
    padding: 56px 0 80px;
}
.legal-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}

/* Sticky TOC */
.legal-toc {
    position: sticky;
    top: 24px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 22px 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.legal-toc-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.legal-toc-list {
    list-style: none;
    counter-reset: toc;
    margin: 0;
    padding: 0;
}
.legal-toc-list li { counter-increment: toc; }
.legal-toc-list a {
    display: block;
    padding: 8px 10px 8px 30px;
    color: #4a5058;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    line-height: 1.4;
    position: relative;
    transition: background-color 140ms ease, color 140ms ease;
}
.legal-toc-list a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}
[dir="rtl"] .legal-toc-list a { padding: 8px 30px 8px 10px; }

.legal-content {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 36px 40px 32px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.legal-section {
    scroll-margin-top: 24px;
}
.legal-section + .legal-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.legal-section-title {
    font-size: 19px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 14px;
    padding-left: 14px;
    border-left: 3px solid var(--accent);
    line-height: 1.3;
}
[dir="rtl"] .legal-section-title {
    padding-left: 0;
    padding-right: 14px;
    border-left: 0;
    border-right: 3px solid var(--accent);
}
.legal-section-body {
    color: #4a5058;
    font-size: 14.5px;
    line-height: 1.85;
    text-align: justify;
}

@media (max-width: 900px) {
    .legal-main-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .legal-toc {
        position: static;
        order: 0;
    }
    .legal-content { padding: 28px 24px 24px; }
}
@media (max-width: 600px) {
    .legal-hero { padding: 48px 24px 36px; }
    .legal-main { padding: 36px 0 56px; }
    .legal-section-body { text-align: left; font-size: 14px; }
}

/* =================================================================
   SAYFA: BÖLGELER & FİYATLAR
   ================================================================= */
.regions-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.regions-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.regions-hero-inner { max-width: 800px; margin: 0 auto; }
.regions-hero-title {
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.1;
}
.regions-hero-subtitle {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.regions-list {
    background: #f5f5f7;
    padding: 56px 0 60px;
}
.regions-list-inner {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 32px;
}

.regions-block {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    margin-bottom: 28px;
}
.regions-block-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.regions-block-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,106,0,0.18), rgba(255,106,0,0.06));
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,106,0,0.25);
    flex-shrink: 0;
}
.regions-block-icon svg { width: 22px; height: 22px; }
.regions-block-title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    letter-spacing: -0.01em;
}
.regions-block-count {
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 1100px) { .regions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .regions-grid { grid-template-columns: 1fr; } }

.regions-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background-color 140ms ease;
}
.regions-card:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.4);
}
.regions-pin {
    color: var(--accent);
    flex-shrink: 0;
    line-height: 0;
}
.regions-pin svg { width: 22px; height: 22px; }
.regions-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
    line-height: 1.25;
}
.regions-card-from {
    font-size: 11.5px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.regions-card-to {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.regions-card-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    flex-shrink: 0;
    color: #1a1a1a;
    line-height: 1;
}
.regions-price-amount {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.regions-price-currency {
    font-size: 13px;
    font-weight: 700;
    color: #555;
}
.regions-price-full {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.regions-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 14px 18px;
    color: #555;
    font-size: 13.5px;
    line-height: 1.5;
    margin: 24px 0 0;
}
.regions-note svg {
    width: 20px; height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .regions-list { padding: 40px 0 50px; }
    .regions-block { padding: 22px 18px; margin-bottom: 18px; }
    .regions-block-head { gap: 10px; padding-bottom: 14px; margin-bottom: 14px; }
    .regions-block-title { font-size: 18px; }
}

/* =================================================================
   SAYFA: MÜŞTERİ YORUMLARI (sayfalanmış)
   ================================================================= */
.reviews-hero {
    background: linear-gradient(135deg, #0f0f10 0%, #1a1a1c 100%);
    color: #fff;
    padding: 64px 24px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(255,106,0,0.15);
    position: relative;
}
.reviews-hero::before {
    content: '';
    position: absolute; left: 0; right: 0; top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.7;
}
.reviews-hero-inner { max-width: 800px; margin: 0 auto; }
.reviews-hero-title {
    font-size: clamp(32px, 4.6vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 14px 0 10px;
    line-height: 1.1;
}
.reviews-hero-subtitle {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}

.reviews-list {
    background: #f5f5f7;
    padding: 56px 0 80px;
}
.reviews-list-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}
@media (max-width: 760px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 22px 24px 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    position: relative;
}
.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
    border-color: rgba(255,106,0,0.3);
}
.review-stars {
    display: inline-flex;
    gap: 2px;
    color: #ff9c33;
}
.review-stars svg { width: 18px; height: 18px; }
.review-text {
    font-size: 14.5px;
    color: #4a5058;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}
.review-quote-mark {
    color: var(--accent);
    font-weight: 800;
    font-size: 18px;
    margin: 0 2px;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.review-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #c84500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255,106,0,0.3);
}
.review-meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
    min-width: 0;
}
.review-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-date {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}
.reviews-empty {
    text-align: center;
    padding: 60px 20px;
    color: #777;
    font-size: 15px;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}
.pg-btn:hover {
    background: var(--accent-soft);
    border-color: rgba(255,106,0,0.4);
    color: var(--accent);
}
.pg-btn.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.pg-btn svg { width: 16px; height: 16px; }
[dir="rtl"] .pg-btn svg { transform: scaleX(-1); }

.pg-numbers {
    display: inline-flex;
    gap: 4px;
}
.pg-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 6px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    color: #444;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}
.pg-num:hover {
    background: var(--accent-soft);
    border-color: rgba(255,106,0,0.4);
    color: var(--accent);
}
.pg-num.is-active {
    background: linear-gradient(180deg, #ff8a30 0%, #e85a00 100%);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(255,106,0,0.32);
}

@media (max-width: 600px) {
    .reviews-list { padding: 40px 0 60px; }
    .review-card { padding: 18px 20px; }
    .pg-num { min-width: 36px; height: 36px; font-size: 13px; }
}

/* =================================================================
   GOOGLE PLACES AUTOCOMPLETE (.pac-*) — site temasına uyum
   ================================================================= */
.pac-container {
    background: #181818;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    margin-top: 4px;
    padding: 6px;
    box-shadow: 0 14px 32px rgba(0,0,0,0.55);
    font-family: inherit;
    z-index: 10000;
}
.pac-container::after {
    /* "Powered by Google" satırını gizle (görsel olarak) */
    background-position: right 8px bottom 4px;
    background-size: 100px;
    opacity: 0.5;
    height: 18px;
}
.pac-item {
    background: transparent;
    color: #e5e5e5;
    border: 0;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13.5px;
    line-height: 1.4;
    transition: background-color 100ms ease;
}
.pac-item:hover,
.pac-item-selected {
    background: rgba(255,255,255,0.06) !important;
}
.pac-item-query {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}
.pac-matched { color: var(--accent); font-weight: 700; }
.pac-icon {
    background-image: none;
    background-color: var(--accent-soft);
    border-radius: 6px;
    width: 18px; height: 18px;
    margin-top: 2px;
    margin-right: 8px;
    position: relative;
}
.pac-icon::before {
    content: '';
    position: absolute;
    inset: 4px;
    background-color: var(--accent);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 0 1 0-5 2.5 2.5 0 0 1 0 5z'/></svg>") center/contain no-repeat;
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
    background: #f5f5f7;
    color: #2a2a2a;
    border-top: 1px solid #e5e7eb;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 60px;
    max-width: 1640px;
    margin: 0 auto;
    padding: 56px 32px 40px;
}
.footer-col h3.footer-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    color: #1a1a1a;
    margin: 0 0 16px;
}
.footer-text {
    font-size: 13px;
    color: #5b6068;
    line-height: 1.6;
    margin: 0 0 16px;
}

/* Sosyal */
.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #c0c4cc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 140ms ease, transform 140ms ease;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

/* TÜRSAB */
.footer-tursab {
    display: inline-block;
    margin-top: 6px;
    transition: transform 140ms ease, box-shadow 140ms ease;
}
.footer-tursab img {
    max-width: 220px;
    height: auto;
    display: block;
    border: 1px solid #d8dade;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.footer-tursab:hover { transform: translateY(-1px); }

/* Site haritası — 2 kolon */
.footer-sitemap {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 36px;
}
.footer-sitemap a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a5058;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.4;
    transition: color 140ms ease, transform 140ms ease;
}
.footer-sitemap a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid var(--accent);
    flex-shrink: 0;
}
.footer-sitemap a:hover { color: var(--accent); transform: translateX(2px); }
[dir="rtl"] .footer-sitemap a:hover { transform: translateX(-2px); }
[dir="rtl"] .footer-sitemap a::before {
    border-left: 0;
    border-right: 5px solid var(--accent);
}

/* İletişim */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #4a5058;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;
}
.footer-contact-item:hover { color: var(--accent); }
.footer-contact-item svg {
    width: 18px; height: 18px;
    color: #8b95a3;
    flex-shrink: 0;
    margin-top: 2px;
    transition: color 140ms ease;
}
.footer-contact-item:hover svg { color: var(--accent); }

/* WhatsApp button */
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 140ms ease, box-shadow 140ms ease;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(37,211,102,0.32);
}
.footer-whatsapp:hover {
    background: #1ea34d;
    box-shadow: 0 6px 18px rgba(37,211,102,0.45);
}
.footer-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Trust rozetleri */
.footer-trust {
    border-top: 1px solid #e1e4e9;
    padding: 22px 32px;
}
.footer-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 13px;
}
.trust-badge svg {
    width: 22px; height: 22px;
    color: var(--accent);
}
.trust-badge strong {
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: 0.4px;
}

/* Footer-bottom üzerine taşınan SSL rozeti — koyu zeminde renkler */
.footer-bottom-left {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.footer-bottom-ssl {
    color: rgba(255,255,255,0.75);
}
.footer-bottom-ssl strong {
    color: #fff;
}
.footer-bottom-ssl svg {
    color: var(--accent);
    width: 16px; height: 16px;
}

/* Alt bar (header ile aynı koyu zemin) */
.footer-bottom {
    background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
    color: #fff;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}
.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
    opacity: 0.85;
}
.footer-powered { font-weight: 600; color: #f5f5f5; }
.footer-copyright { color: rgba(255,255,255,0.78); }

@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-col-sitemap { grid-column: 1 / -1; order: 3; }
}
@media (max-width: 700px) {
    .footer-inner { grid-template-columns: 1fr; padding: 40px 24px 32px; }
    .footer-sitemap { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
}

/* =================================================================
   BOOKING FLOW (Step 1-2-3)
   ================================================================= */
.booking-flow {
    background: var(--bg-black);
    padding: 56px 0 80px;
    min-height: 70vh;
}
.booking-flow-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Step indicator */
.booking-steps {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.booking-step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 14px;
    border-right: 1px solid var(--border);
    position: relative;
}
.booking-step:last-child { border-right: 0; }
.booking-step-num {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    flex-shrink: 0;
}
.booking-step.is-done       { color: var(--text-muted); }
.booking-step.is-done .booking-step-num   { background: var(--accent-soft); color: var(--accent); }
.booking-step.is-active     { color: var(--text); background: rgba(255,106,0,0.05); }
.booking-step.is-active .booking-step-num { background: var(--accent); color: #fff; }

/* Route summary bar */
.booking-summary-bar {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 24px;
}
.bsb-col { display: flex; flex-direction: column; gap: 2px; }
.bsb-label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-dim);
    font-weight: 700;
}
.bsb-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}
.bsb-arrow {
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
}
.bsb-edit {
    margin-left: auto;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--accent);
    padding: 8px 14px;
    border-radius: 8px;
    transition: background-color 120ms ease, color 120ms ease;
}
.bsb-edit:hover { background: var(--accent); color: #fff; }

.booking-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 8px;
}
.booking-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 0 24px;
}

/* Vehicle grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}
.vehicle-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
    display: flex;
    flex-direction: column;
}
.vehicle-card input[type="radio"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}
.vehicle-card:hover { border-color: var(--accent-hover); transform: translateY(-3px); }
.vehicle-card:has(input:checked) {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.vehicle-card.is-tight { opacity: 0.55; }
.vehicle-card-img {
    background: radial-gradient(ellipse at center bottom, #1a1a1a 0%, #0e0e0e 62%, transparent 100%);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: -36px -12px 12px;
    overflow: visible;
    position: relative;
}
.vehicle-card-img img {
    width: 120%;
    max-width: none;
    height: 200px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,0.55));
    transition: transform 220ms ease;
}
.vehicle-card:hover .vehicle-card-img img {
    transform: translateY(-5px) scale(1.05);
}
.vehicle-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.vehicle-card-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 6px;
}
.vehicle-card-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 10px;
}
.vehicle-card-specs {
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}
.vehicle-card-specs li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vehicle-card-specs svg { width: 16px; height: 16px; color: var(--accent); }
.vehicle-card-features {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.vehicle-card-features li {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 6px;
}
.vehicle-card-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,106,0,0.08);
    border: 1px dashed var(--accent);
    border-radius: 10px;
    margin-bottom: 10px;
}
.vehicle-price-label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    font-weight: 700;
}
.vehicle-price-amount {
    color: var(--accent);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.vehicle-card-noprice {
    margin-top: auto;
    background: rgba(37,211,102,0.08);
    border: 1px dashed #25d366;
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.vehicle-noprice-label {
    color: #25d366;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 800;
}
.vehicle-noprice-text {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
}
.vehicle-card-pick {
    text-align: center;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    transition: background-color 150ms ease, color 150ms ease;
}
.vehicle-card:has(input:checked) .vehicle-card-pick {
    background: var(--accent);
    color: #fff;
}

/* Acenta paneli — adres-adres WhatsApp teklif kartı */
.vehicle-card-quote {
    margin-top: auto;
    background: rgba(37,211,102,0.08);
    border: 1px dashed #25d366;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}
.vehicle-quote-label {
    color: #25d366;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 800;
    text-align: center;
}
.vehicle-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background-color 150ms ease, transform 150ms ease;
}
.vehicle-quote-btn:hover {
    background: #1eb556;
    transform: translateY(-1px);
}
.vehicle-quote-btn svg {
    width: 18px;
    height: 18px;
}

/* Price banner on details page */
.booking-price-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255,106,0,0.08);
    border: 1px dashed var(--accent);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 18px;
}
.booking-price-banner.is-noprice {
    background: rgba(37,211,102,0.08);
    border-color: #25d366;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.bpb-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 800;
    color: var(--text-muted);
}
.booking-price-banner.is-noprice .bpb-label { color: #25d366; }
.bpb-amount {
    color: var(--accent);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.bpb-text {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

/* Confirm page price card */
.confirm-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255,106,0,0.1);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 6px;
}
.confirm-price.is-noprice {
    background: rgba(37,211,102,0.1);
    border-color: #25d366;
}
.confirm-price-label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 800;
    color: var(--text-muted);
}
.confirm-price.is-noprice .confirm-price-label { color: #25d366; }
.confirm-price-amount {
    color: var(--accent);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.confirm-price-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
}

/* Promosyon kodu kutusu (confirm sayfası — şimdilik dekoratif) */
.confirm-promo-box {
    background: rgba(255,106,0,0.06);
    border: 1px dashed rgba(255,106,0,0.4);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 16px 0;
}
.confirm-promo-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.confirm-promo-row {
    display: flex;
    gap: 8px;
}
.confirm-promo-input {
    flex: 1;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.confirm-promo-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,106,0,0.12); }
.confirm-promo-btn {
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: filter 140ms;
}
.confirm-promo-btn:hover:not(:disabled) { filter: brightness(1.05); }
.confirm-promo-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.confirm-promo-msg {
    margin-top: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.35;
}
.confirm-promo-msg.is-ok  { background: rgba(46,218,111,0.12); color: #2eda6f; border: 1px solid rgba(46,218,111,0.25); }
.confirm-promo-msg.is-err { background: rgba(239,68,68,0.10); color: #ef4444; border: 1px solid rgba(239,68,68,0.22); }
.confirm-promo-box[data-applied="1"] .confirm-promo-input {
    background: rgba(46,218,111,0.06);
    border-color: rgba(46,218,111,0.3);
    color: #2eda6f;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.confirm-promo-box[data-applied="1"] .confirm-promo-btn {
    background: rgba(239,68,68,0.12);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.25);
}

/* Acenta bakiye kullanma kartı (booking confirm sağ panel) */
.agency-balance-card {
    background: linear-gradient(180deg, rgba(46,218,111,0.08) 0%, rgba(46,218,111,0.03) 100%);
    border: 1px solid rgba(46,218,111,0.25);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
}
.agency-balance-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(46,218,111,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.agency-balance-head {
    display: flex; align-items: center; gap: 12px;
    position: relative;
}
.agency-balance-icon {
    width: 38px; height: 38px;
    min-width: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(46,218,111,0.25), rgba(46,218,111,0.1));
    border: 1px solid rgba(46,218,111,0.35);
    border-radius: 10px;
    color: #2eda6f;
    flex-shrink: 0;
    box-sizing: border-box;
}
.agency-balance-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.agency-balance-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.agency-balance-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}
.agency-balance-value {
    font-size: 22px;
    font-weight: 800;
    color: #2eda6f;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    letter-spacing: -0.3px;
}

/* Custom checkbox satırı */
.agency-balance-toggle {
    display: flex; align-items: center; gap: 11px;
    margin-top: 12px;
    padding: 11px 12px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 9px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: all 180ms;
    position: relative;
    box-sizing: border-box;
}
.agency-balance-toggle:hover {
    background: rgba(46,218,111,0.06);
    border-color: rgba(46,218,111,0.3);
}
.agency-balance-toggle input[type="checkbox"] {
    position: absolute; opacity: 0; pointer-events: none;
    width: 0; height: 0;
}
.agency-balance-toggle-mark {
    width: 22px; height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 180ms;
    background: rgba(255,255,255,0.03);
    box-sizing: border-box;
}
.agency-balance-toggle-mark svg {
    width: 14px; height: 14px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 180ms, transform 180ms;
    flex-shrink: 0;
}
.agency-balance-toggle input:checked ~ .agency-balance-toggle-mark {
    background: #2eda6f;
    border-color: #2eda6f;
    box-shadow: 0 2px 8px rgba(46,218,111,0.4);
}
.agency-balance-toggle input:checked ~ .agency-balance-toggle-mark svg {
    opacity: 1;
    transform: scale(1);
}
.agency-balance-toggle input:checked ~ .agency-balance-toggle-text {
    color: #2eda6f;
}
.agency-balance-toggle-text { transition: color 180ms; flex: 1; min-width: 0; }

/* Açılan tutar paneli */
.agency-balance-panel {
    margin-top: 10px;
    padding: 12px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(46,218,111,0.18);
    border-radius: 9px;
    animation: agbpFade 220ms ease-out;
}
@keyframes agbpFade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.agency-balance-amount-label {
    display: block;
    font-size: 10.5px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
    font-weight: 600;
}
.agency-balance-input-wrap {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 160ms, box-shadow 160ms;
}
.agency-balance-input-wrap:focus-within {
    border-color: #2eda6f;
    box-shadow: 0 0 0 3px rgba(46,218,111,0.15);
}
.agency-balance-input-prefix {
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: rgba(46,218,111,0.1);
    color: #2eda6f;
    font-weight: 800;
    font-size: 16px;
    border-right: 1px solid rgba(46,218,111,0.2);
}
.agency-balance-input-wrap input {
    flex: 1;
    background: transparent !important;
    border: 0 !important;
    padding: 10px 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #f5f5f5 !important;
    outline: none !important;
    box-shadow: none !important;
    font-variant-numeric: tabular-nums;
    min-width: 0;
}
.agency-balance-input-wrap input::-webkit-outer-spin-button,
.agency-balance-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.agency-balance-max-btn {
    background: transparent;
    border: 0;
    border-left: 1px solid rgba(46,218,111,0.2);
    color: #2eda6f;
    font-size: 11.5px;
    font-weight: 800;
    padding: 0 16px;
    cursor: pointer;
    transition: all 140ms;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
    flex-shrink: 0;
}
.agency-balance-max-btn:hover {
    background: #2eda6f;
    color: #fff;
}
.agency-balance-hint {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 10px 0 0;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}
.agency-balance-hint svg { color: rgba(99,179,237,0.7); margin-top: 2px; flex-shrink: 0; }
.agency-balance-empty {
    margin: 10px 0 0;
    padding: 10px 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.15);
    border-radius: 8px;
    text-align: center;
    font-style: italic;
}

.summary-row-subtotal {
    color: var(--muted);
    font-size: 13px;
    padding-top: 6px;
}
.summary-row-subtotal .summary-value {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    color: var(--text);
    font-weight: 600;
}
.summary-row-price { padding-top: 8px; border-top: 1px solid rgba(0,0,0,0.06); margin-top: 4px; }
.summary-extra-cost {
    margin-left: 6px;
    color: var(--accent);
    font-weight: 700;
    font-family: ui-monospace, Menlo, monospace;
    font-size: 12px;
}
.summary-extra-free {
    margin-left: 6px;
    color: #2eda6f;
    font-weight: 700;
    font-size: 12px;
}
.confirm-price-breakdown {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
    font-family: ui-monospace, Menlo, monospace;
}
.confirm-price-breakdown small {
    color: var(--accent);
    font-weight: 700;
}
.summary-value-price {
    color: var(--accent);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

/* WhatsApp submit button (when no price) */
.btn-submit-order-wa {
    background: #25d366;
    border-color: #25d366;
}
.btn-submit-order-wa:hover { background: #1eba56; }
.btn-submit-order-wa svg { width: 20px; height: 20px; }

/* Action row (back / next) */
.booking-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}
.btn-back, .btn-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
    font-family: inherit;
}
.btn-back svg, .btn-next svg { width: 16px; height: 16px; }
.btn-back:hover { color: var(--text); border-color: var(--text-muted); }
.btn-next {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-next:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-back-block {
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Details form */
.details-form { display: flex; flex-direction: column; gap: 18px; }
.details-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    margin: 0;
}
.details-legend {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    margin-bottom: 14px;
    padding: 0;
}
.details-row {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}
.details-row:last-child { margin-bottom: 0; }
.details-row.two   { grid-template-columns: 1fr 1fr; }
.details-row.three { grid-template-columns: 1fr 1fr 1fr; }
.details-form .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.details-form .field-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
}
.details-form input[type="text"],
.details-form input[type="email"],
.details-form input[type="tel"],
.details-form input[type="date"],
.details-form input[type="time"],
.details-form input[type="number"],
.details-form select,
.details-form textarea {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    transition: border-color 120ms ease, background-color 120ms ease;
}
.details-form textarea { resize: vertical; min-height: 80px; }
.details-form input:focus,
.details-form select:focus,
.details-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #232323;
}

/* ---- Tarih/Saat picker ikonları — belirgin turuncu rozet ---- */
.details-form input[type="date"]::-webkit-calendar-picker-indicator,
.details-form input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    width: 22px;
    height: 22px;
    padding: 3px;
    margin-right: 2px;
    background-color: rgba(255,138,48,0.18);
    border-radius: 6px;
    /* Beyaz default ikonu turuncuya çevir */
    filter: invert(53%) sepia(95%) saturate(2700%) hue-rotate(360deg) brightness(105%) contrast(100%);
    transition: background-color 140ms, transform 80ms;
}
.details-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.details-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    background-color: rgba(255,138,48,0.32);
    transform: scale(1.1);
}

/* ---- Number input ↑↓ okları — belirgin ve dokunulabilir ---- */
.details-form input[type="number"]::-webkit-inner-spin-button,
.details-form input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0;
}
.details-form .field-number-wrap {
    position: relative;
}
.details-form input[type="number"] {
    padding-right: 44px !important;
    text-align: left;
}
/* Custom +/- okları (number input'un yanında) */
.details-form .num-spin {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.details-form .num-spin button {
    width: 28px;
    height: 18px;
    border: 1.5px solid var(--border);
    background: rgba(255,138,48,0.12);
    color: var(--accent);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 120ms, border-color 120ms, transform 80ms;
}
.details-form .num-spin button:hover {
    background: rgba(255,138,48,0.25);
    border-color: rgba(255,138,48,0.5);
}
.details-form .num-spin button:active {
    transform: scale(0.92);
}
.details-form .num-spin svg {
    width: 12px;
    height: 12px;
    stroke-width: 3;
}
.details-help {
    font-size: 12.5px;
    color: var(--text-dim);
    margin: 8px 0 0;
}

/* Passenger rows */
.passengers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.passenger-row {
    display: grid;
    grid-template-columns: 28px 1fr 1fr;
    gap: 12px;
    align-items: end;
}
.passenger-num {
    background: var(--accent-soft);
    color: var(--accent);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

/* Phone input */
.phone-input {
    display: flex;
    gap: 10px;
}
.phone-country { position: relative; flex-shrink: 0; }
.phone-country-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    height: 100%;
    min-width: 110px;
    transition: border-color 120ms ease;
}
.phone-country-trigger:hover { border-color: var(--text-muted); }
.phone-country-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}
.phone-country-code { font-weight: 700; }
.phone-country-chev {
    width: 14px; height: 14px;
    color: var(--text-muted);
    margin-left: 2px;
}
.phone-number { flex: 1; }

.phone-country-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 100;
    width: 320px;
    max-width: calc(100vw - 48px);
    background: var(--bg-header);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.phone-country-panel[hidden] { display: none; }
.phone-country-search {
    background: var(--bg-input);
    border: 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.phone-country-search:focus { outline: none; background: #232323; }
.phone-country-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 280px;
    overflow-y: auto;
}
.phone-country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 100ms ease;
}
.phone-country-item:hover,
.phone-country-item.is-active {
    background: var(--accent-soft);
}
.phone-country-item img {
    width: 22px; height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}
.phone-country-item-name {
    flex: 1;
    color: var(--text);
}
.phone-country-item-dial {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
}
.phone-country-item.is-hidden { display: none; }
.phone-country-divider {
    list-style: none;
    height: 1px;
    background: var(--border);
    margin: 4px 12px;
}
.phone-country-divider.is-hidden { display: none; }

/* Payment */
.payment-block {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-input);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: default;
}
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.payment-radio {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: #fff;
    box-shadow: inset 0 0 0 4px var(--accent);
    flex-shrink: 0;
}
.payment-text { display: flex; flex-direction: column; gap: 3px; }
.payment-text strong { color: var(--text); font-size: 14px; font-weight: 700; }
.payment-text small  { color: var(--text-muted); font-size: 12.5px; }

/* Confirm grid (summary + action card) */
.confirm-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 22px;
    align-items: start;
}
.confirm-summary { display: flex; flex-direction: column; gap: 14px; }
.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
}
.summary-card-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    margin: 0 0 12px;
}
.summary-rows { display: flex; flex-direction: column; gap: 9px; }
.summary-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 9px;
    border-bottom: 1px dashed var(--border);
}
.summary-row:last-child { border-bottom: 0; padding-bottom: 0; }
.summary-label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-dim);
    font-weight: 700;
    min-width: 130px;
    flex-shrink: 0;
}
.summary-value {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
}
.summary-notes { white-space: pre-wrap; font-weight: 500; }
.summary-vehicle {
    display: flex;
    align-items: center;
    gap: 14px;
}
.summary-vehicle img {
    width: 130px;
    height: 80px;
    object-fit: contain;
    background: linear-gradient(180deg, #181818 0%, #0e0e0e 100%);
    border-radius: 10px;
    padding: 6px;
    flex-shrink: 0;
}
.summary-vehicle strong { display: block; color: var(--text); font-size: 16px; font-weight: 700; }
.summary-vehicle span   { color: var(--text-muted); font-size: 13px; }
.summary-passengers {
    margin: 0;
    padding-left: 22px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
}

.confirm-action {
    position: sticky;
    top: 100px;
}
.confirm-action-inner {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.confirm-action-inner h3 {
    margin: 0;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
}
.confirm-action-inner p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.55;
}
.btn-submit-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    border: 0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    transition: background-color 120ms ease, transform 80ms ease;
    margin-top: 4px;
}
.btn-submit-order svg { width: 18px; height: 18px; }
.btn-submit-order:hover { background: var(--accent-hover); }
.btn-submit-order:active { transform: scale(0.98); }

/* Success */
.booking-success {
    background: var(--bg-black);
    padding: 80px 24px 100px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking-success-inner {
    max-width: 560px;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 44px 36px;
    text-align: center;
}
.booking-success-icon {
    width: 78px; height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.booking-success-icon svg { width: 42px; height: 42px; }
.booking-success-title {
    color: var(--text);
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px;
}
.booking-success-text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 22px;
}
.booking-success-ref {
    background: rgba(255,106,0,0.08);
    border: 1px dashed var(--accent);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}
.booking-success-ref span {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    font-weight: 700;
}
.booking-success-ref strong {
    color: var(--accent);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'SF Mono', Consolas, monospace;
}
.booking-success-meta {
    color: var(--text-dim);
    font-size: 13px;
    margin: 0 0 22px;
}
.booking-success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .booking-steps { flex-wrap: wrap; }
    .booking-step { font-size: 13px; padding: 12px 14px; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .confirm-grid { grid-template-columns: 1fr; }
    .confirm-action { position: static; }
    .details-row.two,
    .details-row.three { grid-template-columns: 1fr; }
    .summary-vehicle img { width: 100px; height: 64px; }
    .summary-label { min-width: 110px; }
}
@media (max-width: 540px) {
    .booking-summary-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
    .bsb-arrow { display: none; }
    .bsb-edit  { margin-left: 0; }
    .passenger-row { grid-template-columns: 28px 1fr; }
    .passenger-row .field:nth-child(2) { grid-column: 1 / -1; padding-left: 40px; }
    .booking-actions { flex-direction: column-reverse; }
    .booking-actions .btn-back,
    .booking-actions .btn-next { width: 100%; justify-content: center; }
    .phone-input { flex-direction: column; }
    .phone-country-trigger { width: 100%; justify-content: flex-start; }
    .phone-country-panel { width: calc(100vw - 48px); left: 0; }
}

/* =================================================================
   BLOG (liste + tek yazı + sidebar)
   ================================================================= */
.blog-page,
.blog-post-page {
    background: var(--bg-black);
    padding: 50px 0 80px;
    min-height: 60vh;
}
.blog-page-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-hero {
    text-align: center;
    margin-bottom: 36px;
}
.blog-hero-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin: 12px 0 8px;
}
.blog-hero-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 640px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 230px 1fr 240px;
    gap: 32px;
    align-items: start;
}

/* Sidebar — sticky: kendi içinde scroll YOK, sayfa scroll'una göre sabit kalır */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
}
.blog-sidebar-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.blog-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blog-sidebar-list a {
    display: block;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background-color 120ms;
}
.blog-sidebar-list a:hover { background: rgba(255,255,255,0.04); }
.bsp-date {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 3px;
}
.bsp-title {
    display: block;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
}
.blog-sidebar-list a:hover .bsp-title { color: var(--accent); }
.blog-sidebar-back {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    width: 100%;
}
.blog-sidebar-back:hover { color: var(--accent-hover); }

/* Liste sayfası — 2 kolon kart grid (sol-sağ ikişerli) */
.blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-content: start;
}
.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 60px 20px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 150ms ease, transform 150ms ease;
}
.blog-card:hover {
    border-color: var(--accent-hover);
    transform: translateY(-3px);
}
.blog-card-img {
    display: block;
    overflow: hidden;
    background: #181818;
    aspect-ratio: 16 / 10;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.blog-card-date {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-dim);
    font-weight: 700;
}
.blog-card-title {
    margin: 0;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}
.blog-card-title a {
    color: var(--text);
    text-decoration: none;
}
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    flex: 1;
}
.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    margin-top: 4px;
}
.blog-card-cta:hover { color: var(--accent-hover); }
.blog-card-cta svg { width: 14px; height: 14px; }

/* Pagination — 2-col grid'in altında tam genişlik, ortalı */
.blog-pagination {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.bp-link {
    min-width: 36px;
    padding: 8px 14px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: background-color 120ms, color 120ms, border-color 120ms;
}
.bp-link:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}
.bp-link.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Tek yazı sayfası */
.blog-post {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 36px;
}
.blog-post-head { margin-bottom: 18px; }
.blog-post-date {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--accent);
    font-weight: 800;
    margin-bottom: 8px;
}
.blog-post-title {
    margin: 0;
    color: var(--text);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}
.blog-post-image {
    margin: 20px 0 24px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #181818;
}
.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-post-content p {
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 18px;
}

/* Blog yazısı etiketleri (yazı sonu, WhatsApp CTA üstü) */
.blog-post-tags {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.bpt-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-dim);
    font-weight: 800;
}
.bpt-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bpt-item {
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 6px;
    border: 1px solid rgba(255,106,0,0.3);
}

/* WhatsApp CTA at bottom of post */
.blog-post-cta {
    margin-top: 30px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(37,211,102,0.12) 0%, rgba(37,211,102,0.04) 100%);
    border: 1px solid rgba(37,211,102,0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.bpc-text { flex: 1; min-width: 200px; }
.bpc-text h3 {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 18px;
    font-weight: 800;
}
.bpc-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}
.bpc-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 13px 22px;
    border-radius: 10px;
    transition: background-color 120ms, transform 80ms;
    flex-shrink: 0;
}
.bpc-button:hover { background: #1eba56; }
.bpc-button:active { transform: scale(0.97); }
.bpc-button svg { width: 22px; height: 22px; }

/* Sağ sidebar widget'ları */
.blog-sidebar-right {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.brs-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
}
.brs-widget-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.brs-widget-text {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 14px;
}

/* WhatsApp widget — yeşil tema */
.brs-widget-wa {
    background: linear-gradient(135deg, rgba(37,211,102,0.12) 0%, rgba(37,211,102,0.04) 100%);
    border-color: rgba(37,211,102,0.4);
}
.brs-widget-wa .brs-widget-title { color: #25d366; border-bottom-color: rgba(37,211,102,0.3); }
.brs-wa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 13.5px;
    padding: 11px 14px;
    border-radius: 10px;
    transition: background-color 120ms, transform 80ms;
}
.brs-wa-button:hover  { background: #1eba56; }
.brs-wa-button:active { transform: scale(0.97); }
.brs-wa-button svg    { width: 18px; height: 18px; }

/* Popüler bölgeler listesi */
.brs-region-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.brs-region-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 13.5px;
    font-weight: 600;
    transition: background-color 120ms, color 120ms;
}
.brs-region-list a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}
.brs-region-list svg {
    width: 14px; height: 14px;
    flex-shrink: 0;
    color: var(--accent);
}
.brs-region-list span { flex: 1; }
.brs-region-list .brs-arrow {
    color: var(--text-dim);
    transition: transform 120ms;
}
.brs-region-list a:hover .brs-arrow {
    color: var(--accent);
    transform: translateX(2px);
}
.brs-all-regions {
    display: block;
    text-align: center;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.brs-all-regions:hover { color: var(--accent-hover); }

/* Sosyal medya */
.brs-social {
    display: flex;
    gap: 10px;
}
.brs-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: background-color 120ms, color 120ms, border-color 120ms;
}
.brs-social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.brs-social svg { width: 16px; height: 16px; }

@media (max-width: 1180px) {
    /* Tabletlerde sağ sidebar gizlenir, içerik daha geniş alır */
    .blog-grid { grid-template-columns: 220px 1fr; gap: 26px; }
    .blog-sidebar-right { display: none; }
}
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-sidebar {
        position: static;
        order: 2;
        max-height: none;
        overflow: visible;
    }
    .blog-list { grid-template-columns: 1fr; }
    .blog-post { padding: 24px 22px; }
    .blog-post-title { font-size: 22px; }
}

/* =================================================================
   SCROLL TO TOP (sağ-alt sabit buton)
   ================================================================= */
.scroll-top {
    position: fixed;
    bottom: 26px;
    right: 26px;                  /* sağ-alt sabit konum */
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 220ms ease, visibility 220ms, transform 220ms ease, background-color 140ms ease;
    z-index: 90;
    font-family: inherit;
}
.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover  { background: var(--accent-hover); transform: translateY(-2px); }
.scroll-top:active { transform: translateY(0); }
.scroll-top svg    { width: 26px; height: 26px; }
@media (max-width: 600px) {
    .scroll-top { bottom: 18px; right: 18px; width: 48px; height: 48px; }
    .scroll-top svg { width: 22px; height: 22px; }
}

/* =================================================================
   RTL (Arabic)
   ================================================================= */
/* Why-us: RTL'de panellerin sızması ters çevrilsin */
[dir="rtl"] .why-us-title    { box-shadow: 100vw 0 0 #d63031; }
[dir="rtl"] .why-us-features { box-shadow: -100vw 0 0 #d63031; }

[dir="rtl"] .nav-main { justify-content: center; }
[dir="rtl"] .header-select { padding: 8px 12px 8px 28px; background-position: left 8px center; }
[dir="rtl"] .booking-card { justify-self: start; }
[dir="rtl"] .hero-inner { grid-template-columns: 1fr 1.1fr; }
[dir="rtl"] .btn-submit svg { transform: scaleX(-1); }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1100px) {
    .nav-main { gap: 18px; }
    .header-phone span { display: none; }
}
@media (max-width: 960px) {
    .nav-toggle { display: inline-flex; }
    .nav-main {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--bg-header);
        border-top: 1px solid var(--border);
        padding: 16px 20px;
        gap: 12px;
        display: none;
    }
    .nav-main.is-open { display: flex; }
    .header-actions .header-phone,
    .header-actions .header-select { display: none; }

    /* Mobilde aspect-ratio kapalı — içerik dikey yığılır */
    .hero {
        aspect-ratio: auto;
        min-height: 0;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 32px;
    }
    .booking-card { justify-self: stretch; max-width: none; }
    .hero-text { max-width: none; }
}
@media (max-width: 480px) {
    .header-inner { gap: 8px; }
    .btn-login { padding: 9px 14px; font-size: 12px; }
    .field-grid { grid-template-columns: 1fr; }
}

/* Mobil-only öğelerin DEFAULT gizleyici kuralları —
   mobile.css media="(max-width: 760px)" ile yüklendiği için bu satırların burada olması şart. */
.mobile-bottom-nav,
.mobile-drawer-backdrop,
.mobile-drawer { display: none; }
