/* ============================================
   DAYRENT - Minimal Clean Design
   Red: #D42B2E | Blue: #5BC4F5
   Font: Inter
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
    --red: #D42B2E;
    --red-dark: #b01f22;
    --red-light: #fff0f0;
    --blue: #5BC4F5;
    --dark: #111827;
    --gray-900: #1f2937;
    --gray-700: #374151;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.04);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===================== NAVBAR ===================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.nav-logo img { height: 44px; display: block; }

.nav-links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .15s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
    background: var(--red-light);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-nav-ghost {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-nav-ghost:hover { border-color: var(--gray-700); color: var(--dark); }

.btn-nav-primary {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--red);
    border: none;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-nav-primary:hover { background: var(--red-dark); color: var(--white); }

.btn-nav-user {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 6px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--gray-300);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .15s;
}
.btn-nav-user:hover { border-color: var(--gray-700); }

.user-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.btn-mobile-menu {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    padding: 4px;
}
.btn-mobile-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all .25s;
}
.btn-mobile-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.btn-mobile-menu.open span:nth-child(2) { opacity: 0; }
.btn-mobile-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    padding: 12px 0 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu ul li a {
    display: block;
    padding: 11px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.mobile-menu ul li a:last-child { border-bottom: none; }

/* ===================== FLASH MESSAGES ===================== */
.flash-message {
    padding: 14px 0;
    font-size: 14px;
    font-weight: 500;
}
.flash-success { background: #ecfdf5; color: #065f46; border-bottom: 1px solid #a7f3d0; }
.flash-error { background: #fef2f2; color: #991b1b; border-bottom: 1px solid #fecaca; }
.btn-flash-close {
    background: none; border: none; cursor: pointer;
    color: inherit; opacity: .7; padding: 0; line-height: 1;
    flex-shrink: 0;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2d45 40%, #0d1b2a 100%);
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(212,43,46,.12), transparent);
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 680px; }

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.hero-title span { color: var(--red); }

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.7);
    margin-bottom: 36px;
    font-weight: 400;
}

/* ===================== SEARCH BOX ===================== */
.search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    max-width: 760px;
}

.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.search-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}
.search-field label i { color: var(--red); }

.search-field select,
.search-field input[type="date"],
.search-field input[type="time"] {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    transition: border-color .15s;
    appearance: auto;
    -webkit-appearance: auto;
    font-family: inherit;
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(212,43,46,.1);
}

.date-time-group { display: flex; gap: 8px; }
.date-time-group input[type="date"] { flex: 1; }
.date-time-group input[type="time"] { width: 100px; flex-shrink: 0; }

.search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.same-location-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    cursor: pointer;
    user-select: none;
}
.same-location-check input { cursor: pointer; accent-color: var(--red); width: 16px; height: 16px; }

.btn-search {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.btn-search:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,43,46,.3); }

/* ===================== QUICK STATS ===================== */
.quick-stats {
    background: var(--red);
    padding: 20px 0;
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 40px;
}
.stat strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.stat span {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.25);
    flex-shrink: 0;
}

/* ===================== SECTIONS ===================== */
.section { padding: 72px 0; }
.section-gray { background: var(--gray-50); }

.section-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-h {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.5px;
}

.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .15s;
}
.section-link:hover { gap: 8px; }

/* ===================== CATEGORIES ===================== */
.categories-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1.5px solid var(--gray-200, #e5e7eb);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all .15s;
    cursor: pointer;
}
.category-pill i { font-size: 16px; color: var(--red); }
.category-pill small {
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 100px;
    margin-left: 2px;
}
.category-pill:hover {
    border-color: var(--red);
    background: var(--red-light);
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.category-pill:hover small { background: rgba(212,43,46,.1); color: var(--red); }

/* ===================== VEHICLE GRID ===================== */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.vcard {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    transition: all .2s;
    box-shadow: var(--shadow-sm);
}
.vcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.vcard-img-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 185px;
    overflow: hidden;
    background: #f8f9fa;
}
.vcard-img-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform .35s;
}
.vcard:hover .vcard-img-link img { transform: scale(1.04); }

.vcard-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.95);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: .3px;
    backdrop-filter: blur(4px);
}

.vcard-body { padding: 18px; }

.vcard-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.vcard-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.vcard-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}
.vcard-specs i { font-size: 13px; }

.vcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.price-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
}
.price-unit {
    font-size: 13px;
    color: var(--gray-500);
    margin-left: 2px;
}

.btn-select {
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all .15s;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-select:hover { background: var(--red); color: var(--white); }

/* ===================== STEPS ===================== */
.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    position: relative;
}

.step-num {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    letter-spacing: -2px;
    user-select: none;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--red-light);
    color: var(--red);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-item p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

.step-arrow {
    font-size: 22px;
    color: var(--gray-300);
    align-self: center;
    flex-shrink: 0;
    margin-top: -30px;
}

/* ===================== WHY US ===================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.why-card {
    padding: 28px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); }

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.why-card h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.why-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ===================== BLOG GRID ===================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.bcard {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    transition: all .2s;
}
.bcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.bcard-img-link {
    position: relative;
    display: block;
    height: 180px;
    overflow: hidden;
    background: var(--gray-100);
}
.bcard-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.bcard:hover .bcard-img-link img { transform: scale(1.04); }

.bcard-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
}

.bcard-body { padding: 18px; }

.bcard-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.bcard-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--dark);
}
.bcard-title a { color: inherit; }
.bcard-title a:hover { color: var(--red); }

.bcard-excerpt { font-size: 14px; color: var(--gray-500); margin: 0; line-height: 1.5; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: linear-gradient(135deg, var(--red) 0%, #ff4444 100%);
    padding: 56px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-inner h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    margin: 0;
}

.btn-cta {
    background: var(--white);
    color: var(--red);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    transition: all .15s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--dark); }

.footer-main { padding: 56px 0 40px; }

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
    margin: 12px 0 18px;
    max-width: 320px;
}

.footer-contact-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.footer-contact-row a {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .15s;
}
.footer-contact-row a:hover { color: var(--white); }
.footer-contact-row a i { color: var(--red); }
.footer-contact-row span {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.footer-contact-row span i { color: var(--red); flex-shrink: 0; margin-top: 2px; }

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .15s;
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: color .15s;
}
.footer-nav a:hover { color: var(--white); }

.footer-emergency {
    background: rgba(255,255,255,.06);
    border-radius: 10px;
    padding: 16px;
}
.emergency-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}
.emergency-number i { color: var(--red); }
.footer-emergency p { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; line-height: 1.4; }

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-badges span {
    font-size: 12px;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.06);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-badges span i { color: #4ade80; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,.35);
    font-size: 13px;
    transition: color .15s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ===================== PAGE HEADER ===================== */
.page-header {
    background: linear-gradient(135deg, #0d1b2a, #1a2d45);
    padding: 20px 0 16px;
    color: var(--white);
}

.page-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 4px;
}

.page-header .breadcrumb { font-size: 12px; margin-bottom: 0; }
.page-header .breadcrumb-item a { color: rgba(255,255,255,.6); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

@media (max-width: 767px) {
    .page-header { padding: 12px 0 10px; }
    .page-title  { font-size: 17px; margin-bottom: 2px; }
    .page-header .breadcrumb { font-size: 11px; }
}

/* ===================== SEARCH BAR (Vehicle listing top) ===================== */
.top-search-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 10px 0;
    position: sticky;
    top: 68px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

/* Desktop satır */
.tsb-desktop {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
}
.tsb-field { flex: 1; min-width: 0; }
.tsb-label {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 3px;
    white-space: nowrap;
}
.tsb-date { width: 120px !important; }
.tsb-time { width: 78px !important; }
.tsb-check {
    flex-shrink: 0;
    padding-bottom: 4px;
    white-space: nowrap;
}
.tsb-check label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 11px;
    color: #374151;
}
.tsb-check input[type=checkbox] { width: 13px; height: 13px; accent-color: #D42B2E; cursor: pointer; }
.tsb-btn {
    flex-shrink: 0;
    height: 31px;
    font-weight: 600;
    padding: 0 16px;
    white-space: nowrap;
}

/* Mobile özet + genişleyen form */
.tsb-mobile { display: none; }
.tsb-mobile-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 2px 0;
    gap: 8px;
}
.tsb-mobile-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.tsb-mobile-sep { color: #d1d5db; margin: 0 2px; }
.tsb-mobile-chevron { font-size: 13px; color: #6b7280; transition: transform .2s; flex-shrink: 0; }
.tsb-mobile-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.tsb-mobile-expand.open { max-height: 600px; }
.tsb-mob-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
}
.tsb-mob-field {}

/* Mobil filtre butonu barı */
.tsb-mobile-filter-bar {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    padding: 8px 0;
}

/* Filtre Modal (slide-up sheet) */
.filter-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1050;
}
.filter-modal-backdrop.active { display: block; }

.filter-modal-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 18px 18px 0 0;
    z-index: 1051;
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.32,.72,0,1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}
.filter-modal-sheet.active { transform: translateY(0); }
.filter-modal-handle {
    width: 40px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 12px auto 0;
    flex-shrink: 0;
}
.filter-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0;
}
.filter-modal-body {
    overflow-y: auto;
    padding: 16px;
    flex: 1;
    padding-bottom: 32px;
}

@media (max-width: 991px) {
    .tsb-desktop { display: none; }
    .tsb-mobile  { display: block; }
}

/* ===================== FILTER SIDEBAR ===================== */
.filter-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    position: sticky;
    top: 140px;
}

.filter-header {
    padding: 16px 18px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-header h6 { font-size: 14px; font-weight: 700; margin: 0; }

.filter-section {
    padding: 16px 18px;
    border-bottom: 1px solid var(--gray-100);
}
.filter-section:last-child { border-bottom: none; }
.filter-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
}
.filter-option input { accent-color: var(--red); width: 15px; height: 15px; cursor: pointer; }
.filter-option:hover { color: var(--red); }

/* ===================== VEHICLE LIST ITEM ===================== */
.vlist-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    display: flex;
    transition: all .2s;
    box-shadow: var(--shadow-sm);
}
.vlist-item:hover { box-shadow: var(--shadow-md); border-color: transparent; }

.vlist-img {
    width: 240px;
    min-height: 180px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vlist-img img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 8px;
}
.vlist-img-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,.95);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
}

.vlist-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.vlist-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.vlist-specs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.vlist-specs span { font-size: 13px; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.vlist-features { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: auto; }
.vlist-features span {
    font-size: 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200, #e5e7eb);
    color: var(--gray-700);
    padding: 3px 10px;
    border-radius: 100px;
}

.vlist-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid var(--gray-100);
}

/* ===================== RESERVATION STEPS ===================== */
.res-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 16px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.res-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400, #9ca3af);
    padding: 0 12px;
    white-space: nowrap;
}
.res-step.active { color: var(--red); }
.res-step.done { color: var(--gray-700); }

.res-step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gray-200, #e5e7eb);
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.res-step.active .res-step-dot { background: var(--red); color: var(--white); }
.res-step.done .res-step-dot { background: #4ade80; color: var(--white); font-size: 10px; }

.res-step-line {
    height: 1px;
    width: 40px;
    background: var(--gray-200, #e5e7eb);
    flex-shrink: 0;
}
.res-step-line.done { background: #4ade80; }

/* ===================== FORMS ===================== */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
}

.form-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}
.form-card-header h5 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--dark);
}

.form-card-body { padding: 24px; }

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.field-label .required { color: var(--red); margin-left: 2px; }

.field-input {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-size: 14px;
    color: var(--dark);
    font-family: inherit;
    background: var(--white);
    transition: border-color .15s, box-shadow .15s;
}
.field-input:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(212,43,46,.1);
}
.field-input.is-invalid { border-color: #ef4444; }

.btn-primary-red {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .15s;
    font-family: inherit;
}
.btn-primary-red:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-secondary-outline {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .15s;
    font-family: inherit;
}
.btn-secondary-outline:hover { border-color: var(--gray-700); color: var(--dark); }

/* ===================== PRICE SUMMARY CARD ===================== */
.price-summary {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    position: sticky;
    top: 140px;
}

.price-summary-header {
    background: var(--dark);
    color: var(--white);
    padding: 16px 20px;
    font-weight: 700;
    font-size: 15px;
}

.price-summary-body { padding: 20px; }

.price-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 7px 0;
    color: var(--gray-700);
}

.price-row-item.total {
    font-weight: 800;
    font-size: 18px;
    color: var(--dark);
    border-top: 1.5px solid var(--gray-100);
    padding-top: 14px;
    margin-top: 6px;
}
.price-row-item.total span:last-child { color: var(--red); }

/* ===================== CREDIT CARD ===================== */
.card-visual {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2d45 60%, #1e3a5f 100%);
    border-radius: 16px;
    padding: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 160px;
    margin-bottom: 24px;
}
.card-visual::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(91,196,245,.12);
    border-radius: 50%;
}
.card-visual::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: rgba(212,43,46,.1);
    border-radius: 50%;
}
.card-chip { font-size: 32px; color: rgba(255,215,0,.8); margin-bottom: 16px; position: relative; z-index: 1; }
.card-number-disp { font-size: 19px; letter-spacing: 3px; font-family: 'Courier New', monospace; position: relative; z-index: 1; margin-bottom: 20px; }
.card-info-row { display: flex; justify-content: space-between; position: relative; z-index: 1; }
.card-info-label { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.card-info-val { font-size: 14px; font-weight: 600; }

/* ===================== SUCCESS / FAILED ===================== */
.result-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 38px;
    animation: popIn .4s cubic-bezier(.68,-.55,.27,1.55);
}
.result-icon.success { background: #dcfce7; color: #16a34a; box-shadow: 0 0 0 16px rgba(22,163,74,.08); }
.result-icon.failed { background: #fee2e2; color: var(--red); box-shadow: 0 0 0 16px rgba(212,43,46,.08); }

@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

.res-number-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    border: 2px dashed var(--gray-300);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 15px;
    margin: 16px auto;
}
.res-number-badge strong { color: var(--red); font-size: 18px; }

/* ===================== AUTH PAGES ===================== */
.auth-wrap {
    min-height: calc(100vh - 68px);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.auth-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.auth-logo { display: block; margin: 0 auto 24px; }

/* ===================== CUSTOMER PANEL ===================== */
.panel-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--gray-100);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.panel-user-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.panel-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.panel-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-left: 3px solid transparent;
    transition: all .15s;
}
.panel-nav a:hover { background: var(--gray-50); color: var(--red); }
.panel-nav a.active { background: var(--red-light); color: var(--red); border-left-color: var(--red); font-weight: 600; }
.panel-nav a i { font-size: 16px; width: 18px; }
.panel-nav .nav-danger { color: #ef4444; }
.panel-nav .nav-danger:hover { background: #fef2f2; color: #dc2626; }

/* ===================== TABLE ===================== */
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .5px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}
.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-50); }

/* ===================== BADGES ===================== */
.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}
.badge-confirmed { background: #dcfce7; color: #15803d; }
.badge-pending { background: #fef9c3; color: #854d0e; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-completed { background: var(--gray-100); color: var(--gray-500); }
.badge-active { background: #dbeafe; color: #1d4ed8; }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 16px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.8);
}
.cookie-text i { font-size: 20px; color: var(--red); flex-shrink: 0; }
.cookie-text a { color: var(--blue); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-reject {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,.3);
    background: transparent;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
.btn-cookie-accept {
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* ===================== UTILITIES ===================== */
.text-red { color: var(--red); }
.bg-red { background: var(--red); }

.extra-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-100);
    border-radius: 10px;
    cursor: pointer;
    transition: all .15s;
}
.extra-option:hover { border-color: var(--blue); background: rgba(91,196,245,.04); }
.extra-option.selected { border-color: var(--red); background: rgba(212,43,46,.04); }
.extra-option input { accent-color: var(--red); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.extra-icon-wrap { font-size: 22px; color: var(--blue); width: 36px; text-align: center; flex-shrink: 0; }
.extra-info { flex: 1; min-width: 0; }
.extra-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.extra-info span { display: block; font-size: 12px; color: var(--gray-500); }
.extra-price-tag { font-size: 14px; font-weight: 700; color: var(--red); white-space: nowrap; flex-shrink: 0; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 40px 0 30px; }
    .hero-title { font-size: 2.2rem; }
    .search-grid { grid-template-columns: 1fr; }
    .date-time-group input[type="time"] { width: 90px; }
    .section { padding: 48px 0; }
    .stat { padding: 8px 20px; }
    .stat strong { font-size: 22px; }
    .vlist-item { flex-direction: column; }
    .vlist-img { width: 100%; min-height: 200px; }
    .vlist-img img { height: 200px; }
    .step-arrow { display: none; }
    .steps-row { gap: 12px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .btn-cta { width: 100%; justify-content: center; }
}

@media (max-width: 575px) {
    .search-box { padding: 18px; border-radius: var(--radius); }
    .hero-title { font-size: 1.9rem; letter-spacing: -.3px; }
    .hero-subtitle { font-size: 15px; }
    .btn-search { width: 100%; justify-content: center; }
    .search-footer { flex-direction: column; align-items: flex-start; }
    .stat-divider { display: none; }
    .stats-row { gap: 0; justify-content: space-around; }
    .stat { padding: 8px 12px; }
    .auth-box { padding: 24px; }
    .res-steps { overflow-x: auto; padding: 12px 0; justify-content: flex-start; }
    .res-step { font-size: 11px; padding: 0 8px; }
    .res-step-line { width: 24px; }
}

/* ===================== MOBILE STICKY BOTTOM BAR ===================== */
.mobile-bottom-bar { display: none; }
.mobile-detail-backdrop { display: none; }
.mobile-detail-panel { display: none; }

@media (max-width: 991px) {
    /* Sayfa içeriğine alt boşluk */
    .has-mobile-bar { padding-bottom: 88px; }

    /* ---- Ana Bar ---- */
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 901;
        background: var(--white);
        border-top: 1px solid var(--gray-100);
        box-shadow: 0 -4px 20px rgba(0,0,0,.12);
        padding: 12px 16px max(12px, env(safe-area-inset-bottom));
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    /* ---- Fiyat Alanı (tıklanabilir) ---- */
    .mobile-bar-price {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
        cursor: pointer;
        user-select: none;
        flex: 1;
        min-width: 0;
    }
    .mobile-bar-price-row {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .mobile-bar-price .bar-amount {
        font-size: 20px;
        font-weight: 800;
        color: var(--red);
        letter-spacing: -.5px;
    }
    .mobile-bar-price .bar-chevron {
        font-size: 13px;
        color: var(--gray-500);
        transition: transform .25s;
    }
    .mobile-bar-price.open .bar-chevron { transform: rotate(180deg); }
    .mobile-bar-price .bar-label {
        font-size: 11px;
        color: var(--gray-500);
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* ---- CTA Butonu ---- */
    .mobile-bar-btn {
        background: var(--red);
        color: var(--white);
        border: none;
        padding: 13px 22px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        font-family: inherit;
        transition: background .15s;
        flex-shrink: 0;
    }
    .mobile-bar-btn:hover { background: var(--red-dark); }
    .mobile-bar-btn:disabled { opacity: .7; }

    /* ---- Backdrop ---- */
    .mobile-detail-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 899;
        background: rgba(0,0,0,.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }
    .mobile-detail-backdrop.open {
        opacity: 1;
        pointer-events: all;
    }

    /* ---- Detail Slide-up Panel ---- */
    .mobile-detail-panel {
        display: block;
        position: fixed;
        bottom: 68px; /* bar yüksekliği */
        left: 0; right: 0;
        z-index: 900;
        background: var(--white);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0,0,0,.15);
        max-height: 70vh;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform .32s cubic-bezier(.4,0,.2,1);
        -webkit-overflow-scrolling: touch;
    }
    .mobile-detail-panel.open {
        transform: translateY(0);
    }

    /* Panel içi */
    .panel-handle {
        width: 40px; height: 4px;
        background: var(--gray-300);
        border-radius: 2px;
        margin: 12px auto 0;
    }
    .panel-body {
        padding: 16px 20px 24px;
    }
    .panel-section-title {
        font-size: 11px;
        font-weight: 700;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--gray-100);
    }
    .panel-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        padding: 6px 0;
        color: var(--gray-700);
    }
    .panel-row.total {
        font-weight: 800;
        font-size: 16px;
        color: var(--dark);
        border-top: 1.5px solid var(--gray-100);
        margin-top: 4px;
        padding-top: 10px;
    }
    .panel-row.total span:last-child { color: var(--red); }
    .panel-loc-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
        font-size: 13px;
    }
    .panel-loc-dot {
        width: 22px; height: 22px;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; font-size: 10px; margin-top: 1px;
    }
    .panel-loc-dot.green { background: #dcfce7; color: #16a34a; }
    .panel-loc-dot.red   { background: #fee2e2; color: #dc2626; }
    .panel-vehicle-row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 4px 0 12px;
    }
    .panel-vehicle-row img {
        width: 64px; height: 46px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }
    .panel-vehicle-row strong { font-size: 14px; font-weight: 700; display: block; }
    .panel-vehicle-row span  { font-size: 12px; color: var(--gray-500); }

    /* Masaüstü sidebar gizle */
    .desktop-sidebar { display: none !important; }
}

/* ============================
   Policy (Politika) Sayfaları
   ============================ */
.policy-content {
    font-size: 15px;
    line-height: 1.85;
    color: #374151;
}
.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: .75rem;
    color: #111827;
}
.policy-content h2 { font-size: 1.25rem; }
.policy-content h3 { font-size: 1.1rem; }
.policy-content p  { margin-bottom: 1rem; }
.policy-content ul,
.policy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.policy-content li { margin-bottom: .4rem; }
.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
    font-size: 14px;
}
.policy-content table th,
.policy-content table td {
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    text-align: left;
}
.policy-content table th {
    background: #f9fafb;
    font-weight: 600;
}
