﻿.hero-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

/* Hero görseli yalnızca HeroSections.BackgroundImageUrl doluysa; araç vb. fallback yok */
.hero-section.hero-section--no-bg {
    background-image: none;
    background-color: #1a1a2e;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(26, 26, 46, 0.55) 100%);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
}

.hero-content-center {
    max-width: 700px;
    width: 100%;
    padding: 60px 0;
}

.hero-slider {
    position: relative;
    min-height: 140px;
}

.hero-slide {
    display: none;
    animation: fadeSlide 0.6s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-weight: 400;
    font-style: italic;
}

.hero-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: white;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.hero-slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    font-size: 14px;
}

.slider-arrow:hover {
    border-color: #d64045;
    color: #d64045;
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESERVATION FORM SECTION
   ======================================== */

.reservation-form-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding-bottom: 24px;
}

.reservation-form-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    padding: 0;
    overflow: visible;
}

.search-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.search-tab {
    padding: 16px 28px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab:hover {
    color: #333;
    background: #fafafa;
}

.search-tab.active {
    color: #d64045;
    border-bottom-color: #d64045;
    background: transparent;
    box-shadow: none;
}

.search-tab i {
    font-size: 14px;
}

.search-form-body {
    padding: 20px 24px 24px;
}

.search-pane {
    display: none;
}

.search-pane.active {
    display: block;
}

.form-fields-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.form-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    flex: 1;
    min-width: 0;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.form-field:hover {
    border-color: #ccc;
    background: white;
}

.form-field:focus-within {
    border-color: #d64045;
    background: white;
    box-shadow: 0 0 0 3px rgba(214, 64, 69, 0.08);
}

.form-field-location {
    flex: 1.3;
}

.form-field-datetime {
    flex: 1.2;
}

.form-return-date-row {
    display: flex;
    align-items: stretch;
    margin-top: 12px;
    gap: 0;
}

.form-field-spacer {
    visibility: hidden;
    pointer-events: none;
}

.form-field-roundtrip {
    flex: 0 0 auto;
    min-width: 100px;
    justify-content: center;
}

.form-field-passengers {
    flex: 0 0 auto;
    min-width: 110px;
}

.field-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.field-icon-circle i {
    font-size: 14px;
    color: white;
}

.field-icon-circle.green {
    background: #4CAF50;
}

.field-icon-circle.red {
    background: #d64045;
}

.field-icon-circle.blue {
    background: #2196F3;
}

.field-icon-circle.orange {
    background: #FF9800;
}

.field-icon-circle.purple {
    background: #9C27B0;
}

.field-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.field-label-upper {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-select-flat {
    border: none;
    background: transparent;
    font-size: 13px;
    color: #666;
    font-family: inherit;
    padding: 0;
    cursor: pointer;
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 16px;
}

.field-select-flat:focus {
    color: #333;
}

.field-input-flat {
    border: none;
    background: transparent;
    font-size: 13px;
    color: #666;
    font-family: inherit;
    padding: 0;
    width: 100%;
    outline: none;
    cursor: pointer;
}

select.field-input-flat {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 16px;
}

.field-input-flat:focus {
    color: #333;
}

.searchable-select-native {
    display: none;
}

.searchable-select {
    position: relative;
    flex: 1;
    min-width: 0;
}

.searchable-select-trigger {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #666;
    font-family: inherit;
    padding: 0 16px 0 0;
    cursor: pointer;
    outline: none;
    text-align: left;
    position: relative;
}

.searchable-select-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease;
}

.searchable-select.open .searchable-select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.searchable-select-trigger-text {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.searchable-select-trigger-text.is-placeholder {
    color: #999;
}

.searchable-select-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: max(100%, 220px);
    max-width: min(420px, calc(100vw - 32px));
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    z-index: 110;
    display: none;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}

.searchable-select-dropdown.show {
    display: block;
}

.searchable-select.dropdown-align-end .searchable-select-dropdown {
    left: auto;
    right: 0;
}

.searchable-select-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f3f3;
    background: white;
}

.searchable-select-search-icon {
    color: #999;
    font-size: 13px;
    flex-shrink: 0;
}

.searchable-select-search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #333;
    font-family: inherit;
    padding: 0;
    outline: none;
}

.searchable-select-search-input::placeholder {
    color: #999;
}

.searchable-select-options {
    max-height: 280px;
    overflow-y: auto;
}

.searchable-select-option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    background: white;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: inherit;
}

.searchable-select-option:last-child {
    border-bottom: none;
}

.searchable-select-option:hover,
.searchable-select-option:focus {
    background: #f8f9fa;
    outline: none;
}

.searchable-select-option.selected {
    background: #fff5f5;
}

.searchable-select-option-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.searchable-select-option.selected .searchable-select-option-label {
    color: #d64045;
}

.searchable-select-option-check {
    font-size: 12px;
    color: #d64045;
    opacity: 0;
    flex-shrink: 0;
}

.searchable-select-option.selected .searchable-select-option-check {
    opacity: 1;
}

.searchable-select-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Flatpickr overrides for datetime fields */
.form-field-datetime .flatpickr-input {
    width: 100%;
}

.form-field-datetime .flatpickr-calendar {
    font-family: inherit;
}

/* Datetime Wrapper - Tek ve İkili Tarih Modları */
.datetime-wrapper {
    position: relative;
    flex: 1.4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.datetime-wrapper > .field-icon-circle {
    flex-shrink: 0;
}

.datetime-single {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.datetime-split {
    display: none;
    flex: 1;
    min-width: 0;
}

.datetime-split.active {
    display: flex;
}

.datetime-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    cursor: pointer;
}

.datetime-column.datetime-return {
    padding-left: 16px;
    margin-left: 16px;
    border-left: 1px solid #e0e0e0;
}

.datetime-column input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
    pointer-events: none;
}

.datetime-display {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.datetime-date {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.datetime-time {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

/* Gidiş-dönüş modunda tarih üstte saat altta */
.datetime-split .datetime-display {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.datetime-split .datetime-date {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.datetime-split .datetime-time {
    font-size: 12px;
    line-height: 1.2;
}

.form-field-swap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    flex-shrink: 0;
}

.btn-swap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #999;
    font-size: 12px;
}

.btn-swap:hover {
    border-color: #d64045;
    color: #d64045;
    background: #fff5f5;
}

.form-field-divider {
    width: 1px;
    background: #e8e8e8;
    align-self: stretch;
    margin: 8px 12px;
    flex-shrink: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: #ddd;
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: #d64045;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}


.form-field-submit {
    display: flex;
    align-items: center;
    padding-left: 16px;
    flex-shrink: 0;
}

.form-submit-row {
    display: flex;
    justify-content: flex-end;
    padding: 16px 0 0;
    margin-top: -8px;
}

.btn-search-hero {
    padding: 16px 32px;
    background: #d64045;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(214, 64, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-search-floating {
    position: relative;
    z-index: 5;
}

.btn-search-hero:hover {
    background: #bf2f3a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 64, 69, 0.4);
}

/* Return row */
.return-transfer-row {
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin-top: 16px;
}

/* ========================================
   LOCATION AUTOCOMPLETE
   ======================================== */

.location-autocomplete {
    position: relative;
    flex: 1;
    min-width: 0;
}

.location-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 13px;
    color: #333;
    font-family: inherit;
    padding: 0;
    padding-right: 24px;
    outline: none;
}

.location-input::placeholder {
    color: #999;
}

.location-clear {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.location-clear:hover {
    color: #d64045;
}

.location-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: -52px;
    width: calc(100% + 52px);
    min-width: 320px;
    max-height: 360px;
    overflow-y: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: none;
    border: 1px solid #e8e8e8;
}

.location-dropdown.show {
    display: block;
}

.location-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f5f5f5;
}

.location-dropdown-item:last-child {
    border-bottom: none;
}

.location-dropdown-item:hover {
    background: #f8f9fa;
}

.location-item-icon {
    color: #999;
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.location-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.location-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-item-category {
    font-size: 12px;
    color: #999;
}

.location-dropdown-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* ========================================
   POPULAR LOCATIONS SECTION
   ======================================== */

.popular-locations-section {
    padding: 80px 0;
    background: #fff;
}

.popular-locations-section .section-subtitle {
    font-size: 14px;
    color: #4a4a68;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.popular-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.popular-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: white;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popular-tab:hover {
    border-color: #d64045;
    color: #d64045;
}

.popular-tab.active {
    background: #d64045;
    color: white;
    border-color: #d64045;
}

.popular-tab i {
    font-size: 14px;
}

.popular-panel {
    display: none;
}

.popular-panel.active {
    display: block;
}

.popular-routes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.popular-route-card {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
    text-decoration: none;
    color: inherit;
}

.popular-route-card:hover {
    background: #fafafa;
}

.popular-route-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.popular-route-from {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    white-space: nowrap;
}

.popular-route-arrow {
    color: #d64045;
    font-size: 12px;
    flex-shrink: 0;
}

.popular-route-to {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-route-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: 16px;
    flex-shrink: 0;
}

.popular-price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.popular-price-label {
    font-size: 11px;
    color: #999;
}

.popular-route-chevron {
    color: #ccc;
    margin-left: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.popular-route-card:hover .popular-route-chevron {
    color: #d64045;
}

/* ========================================
   TRUST BAR
   ======================================== */

.trust-bar {
    background: var(--bg-alt);
    padding: 40px 0;
    margin-top: -1px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.trust-icon i {
    font-size: 24px;
    color: #d64045;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 24px;
    font-weight: 800;
    color: #d64045;
}

.trust-text span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 15px;
    color: #999;
    max-width: 560px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 60px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 12px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.service-card:hover {
    border-color: #d64045;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    border-radius: 12px;
}

.service-icon i {
    font-size: 24px;
    color: #d64045;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.service-description {
    color: #888;
    line-height: 1.6;
    font-size: 13px;
}

/* ========================================
   ROUTES SECTION
   ======================================== */

.routes-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.routes-section .section-subtitle {
    color: #4a4a68;
    max-width: 700px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Tek kart varken auto-fit gibi tüm satıra yayılmasın; ortada sabit genişlik */
.routes-grid .route-card:only-child {
    grid-column: 1 / -1;
    max-width: 400px;
    width: 100%;
    justify-self: center;
}

.route-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.route-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.route-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.route-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.route-header {
    margin-bottom: 20px;
}

.route-card-summary {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.route-locations {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
}

.route-from,
.route-to {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

.route-arrow {
    color: #d64045;
    font-size: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.route-info i {
    color: #d64045;
}

.route-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #d64045;
}

a.btn-route-book {
    width: 100%;
    padding: 14px;
    background: #d64045;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition-smooth);
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

a.btn-route-book:hover {
    background: #bf2f3a;
    transform: translateY(-2px);
    color: #fff;
}

/* ========================================
   VEHICLES SECTION
   ======================================== */

.vehicles-section {
    padding: 80px 0;
    background: #fff;
}

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

.vehicle-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.25s ease;
}

.vehicle-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.vehicle-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.vehicle-content {
    padding: 18px;
}

.vehicle-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.vehicle-description {
    color: #999;
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vehicle-specs {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 14px;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
    font-weight: 500;
    font-size: 13px;
}

.vehicle-spec i {
    color: #d64045;
    font-size: 13px;
}

.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicle-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 11px;
    color: #bbb;
}

.price-value {
    font-size: 18px;
    font-weight: 800;
    color: #d64045;
}

.btn-vehicle-select {
    display: inline-block;
    padding: 8px 18px;
    background: #d64045;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-vehicle-select:hover {
    background: #bf2f3a;
    transform: translateY(-1px);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 60px 0;
    background: var(--bg-alt);
}

.testimonials-carousel-wrap {
    display: flex;
    align-items: stretch;
    gap: 8px;
    position: relative;
}

.testimonials-track {
    display: flex;
    flex: 1;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 0 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.testimonials-track::-webkit-scrollbar {
    height: 6px;
}

.testimonials-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    flex: 0 0 auto;
    min-width: min(100%, 320px);
    max-width: 360px;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    border-color: #e0e0e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.testimonial-comment {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d64045;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.author-location {
    font-size: 12px;
    color: #999;
}

.testimonials-load-sentinel {
    flex: 0 0 4px;
    width: 4px;
    min-height: 1px;
    align-self: stretch;
    pointer-events: none;
}

.testimonials-nav-btn {
    flex: 0 0 auto;
    align-self: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #fff;
    color: var(--primary, #d64045);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.testimonials-nav-btn:hover {
    background: #fff5f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonials-nav-btn:focus-visible {
    outline: 2px solid var(--primary, #d64045);
    outline-offset: 2px;
}

.testimonials-track.is-loading-more {
    opacity: 0.92;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: inherit;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-cta-primary {
    background: #fff;
    color: var(--primary);
}

    .btn-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
}

    .btn-cta-secondary:hover {
        background: rgba(255,255,255,0.15);
        border-color: #fff;
    }

/* ========================================
   RESPONSIVE - LARGE
   ======================================== */

@media (max-width: 1200px) {
    .form-fields-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .form-field {
        flex: 1 1 200px;
    }

    .form-field-divider {
        display: none;
    }

    .form-field-swap {
        display: none;
    }

    .form-field-submit {
        padding-left: 0;
        width: 100%;
    }

    .btn-search-hero {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 992px) {
    .hero-section {
        min-height: 380px;
    }

    .hero-content-center {
        padding: 40px 0;
    }

    .reservation-form-section {
        margin-top: -30px;
    }

    .form-fields-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .form-field {
        flex: 1 1 calc(50% - 6px);
    }

    .form-field-divider {
        display: none;
    }

    .form-field-swap {
        display: none;
    }

    .form-field-roundtrip {
        flex: 0 0 auto;
    }

    .form-field-submit {
        padding-left: 0;
        width: 100%;
    }

    .btn-search-hero {
        width: 100%;
        justify-content: center;
    }

    .datetime-column.datetime-return {
        padding-left: 12px;
        margin-left: 12px;
    }

    .datetime-date {
        font-size: 14px;
    }

    .datetime-time {
        font-size: 13px;
    }

    .form-submit-row {
        padding: 12px 0 0;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .routes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 640px) {
    .hero-section {
        min-height: 320px;
        margin-top: 64px;
    }

    .hero-content-center {
        padding: 32px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .reservation-form-section {
        margin-top: -20px;
        padding: 0 8px 16px;
    }

    .search-tabs {
        overflow-x: auto;
    }

    .search-tab {
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .search-form-body {
        padding: 16px;
    }

    .form-fields-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-field {
        flex: 1 1 100%;
    }

    .form-field-divider {
        display: none;
    }

    .form-field-swap {
        display: none;
    }

    .form-field-roundtrip {
        flex-direction: row;
        align-items: center;
    }

    .form-field-passengers {
        min-width: auto;
    }

    .form-field-submit {
        padding-left: 0;
        width: 100%;
    }

    .btn-search-hero {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .datetime-column.datetime-return {
        padding-left: 10px;
        margin-left: 10px;
    }

    .datetime-date {
        font-size: 13px;
    }

    .datetime-time {
        font-size: 12px;
    }

    .form-submit-row {
        padding: 12px 0 0;
    }

    .btn-search-floating {
        width: 100%;
        justify-content: center;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-grid,
    .routes-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-nav-btn {
        display: none;
    }

    .testimonial-card {
        min-width: min(100%, 100%);
        max-width: none;
    }

    .routes-grid .route-card:only-child {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }

    .vehicles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }

    .popular-routes-grid {
        grid-template-columns: 1fr;
    }

    .popular-tabs {
        gap: 8px;
    }

    .popular-tab {
        padding: 8px 16px;
        font-size: 12px;
    }

    .popular-route-from,
    .popular-route-to {
        font-size: 13px;
    }

    .location-dropdown {
        left: -12px;
        width: calc(100% + 12px);
        min-width: 280px;
    }

    .searchable-select-dropdown,
    .searchable-select.dropdown-align-end .searchable-select-dropdown {
        left: 0;
        right: auto;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
}
