body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f6fa;
}

/* NAVBAR */
.navbar {
    padding: 0.75rem 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}
.navbar-brand span {
    font-weight: 700;
    letter-spacing: .03em;
}
.navbar-nav .nav-link {
    color: #fff;
    font-size: 0.95rem;
    margin-left: 0.75rem;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffc107;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 80vh;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #001833, #003463);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.pexels.com/photos/799443/pexels-photo-799443.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(2px);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,.25), rgba(0,0,0,.8));
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.hero-subtitle {
    font-size: 1.05rem;
    max-width: 520px;
    opacity: .9;
}
.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    font-size: 0.8rem;
    margin-right: .4rem;
}

/* HORIZONTAL SEARCH BAR (724 tarzı) */
.searchbar-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1100px; /* sağ/sol biraz dar */
    margin: 2.5rem auto 0;
}
.searchbar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    color: #fff;
}
.sb-item {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 160px;
}
.sb-icon {
    position: absolute;
    top: 8px;
    font-size: 15px;
    opacity: .8;
}
.sb-item label {
    font-size: 13px;
    color: #ddd;
    margin-left: 22px;
}
.sb-input {
    margin-top: 6px;
    padding: 4px 5px;
    padding-left: 22px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666;
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}
.sb-input::placeholder {
    color: #aaa;
}

/* Select’lerin beyaz zeminini gizle */
select.sb-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    color: #fff;
    border-radius: 0;
}
select.sb-input option {
    color: #000;
    background-color: #fff;
}

/* Ortadaki yön değiştirme ikon */
.sb-mid-icon {
    font-size: 20px;
    opacity: .8;
    margin-top: 18px;
}

/* Tarih alanı */
.date-block {
    cursor: pointer;
    min-width: 170px;
}
.date-main {
    font-size: 17px;
    font-weight: 600;
}
.date-sub {
    font-size: 11px;
    opacity: .7;
}

/* Kişi / Bagaj alanı */
.small-field {
    min-width: 140px;
    cursor: pointer;
}
.sb-inline {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #666;
    padding-bottom: 3px;
    gap: 6px;
}
.sb-inline span {
    font-size: 0.9rem;
}

/* Ara butonu */
.sb-btn {
    background: #006FE6;
    padding: 12px 26px;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

/* SECTION TITLES */
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.section-subtitle {
    font-size: .95rem;
    color: #6c757d;
}

/* HOW IT WORKS */
.step-card {
    border-radius: .85rem;
    padding: 1.2rem 1rem;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    height: 100%;
}
.step-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #003463;
    color: #fff;
    margin-bottom: .65rem;
    font-size: 1rem;
}

/* FLEET */
.fleet-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.fleet-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.fleet-card-body {
    padding: 1rem 1rem 1.1rem;
    flex: 1;
}

/* ADVANTAGES */
.feature-item {
    display: flex;
    gap: .75rem;
    margin-bottom: .9rem;
}
.feature-item i {
    color: #0d6efd;
    margin-top: .2rem;
}

/* FOOTER */
.site-footer {
    background: #001222;
    color: #ced4da;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
    font-size: 0.9rem;
}
.site-footer a {
    color: #ced4da;
    text-decoration: none;
}
.site-footer a:hover {
    color: #ffc107;
}

/* --- TARİH / SAAT MODALI --- */
#datetimeModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
}
#datetimeModal .modal-dialog {
    max-width: 340px !important;
}
#datetimeModal .modal-header {
    background: #006fe6;
    color: #fff;
    border-bottom: none;
}
#datetimeModal .modal-title {
    font-size: 1rem;
}
#datetimeModal .modal-body {
    padding: 0;
}
.dt-calendar-wrapper .flatpickr-calendar {
    box-shadow: none !important;
    border: none !important;
    margin: 0 auto;
    width: 100% !important;
}
.dt-calendar-wrapper .flatpickr-innerContainer {
    width: 100%;
}
.dt-calendar-wrapper .flatpickr-days {
    width: 100%;
}
.dt-time-wrapper {
    border-top: 1px solid #eee;
    padding: 10px 0 4px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}
.dt-time-column {
    text-align: center;
}
.dt-time-arrow {
    cursor: pointer;
    font-size: 16px;
    display: block;
    color: #555;
}
.dt-time-value {
    font-size: 18px;
    font-weight: 600;
    margin: 3px 0;
}
.dt-time-label {
    font-size: 11px;
    color: #999;
}
.dt-footer {
    border-top: 1px solid #eee;
    padding: 8px 0;
    text-align: center;
}
.dt-footer button {
    border: none;
    background: transparent;
    color: #e53935;
    font-weight: 600;
    font-size: 14px;
}

/* --- KİŞİ / BAGAJ MODALI --- */
#personModal .modal-dialog {
    max-width: 320px;
}
#personModal .modal-content {
    border-radius: 14px;
}
#personModal .modal-header {
    background: #006fe6;
    color: #fff;
    border-bottom: none;
    padding: 8px 14px;
}
#personModal .modal-title {
    font-size: 0.95rem;
}
#personModal .modal-body {
    padding: 12px 16px 8px;
}
.pb-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.pb-label {
    font-size: 0.9rem;
    font-weight: 500;
}
.pb-counter {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pb-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f8f9fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
}
.pb-value {
    min-width: 22px;
    text-align: center;
    font-weight: 600;
}
#personModal .modal-footer {
    padding: 8px 16px 10px;
    border-top: 1px solid #eee;
}
#personSaveBtn {
    background: #006fe6;
    border: none;
    color: #fff;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .searchbar {
        flex-wrap: wrap;
        gap: 12px;
    }
    .sb-item,
    .small-field {
        min-width: 100%;
    }
    .sb-btn {
        width: 100%;
        text-align: center;
    }
}
