:root {
    /* Color Variables */
    --primary-color: #BE9E4A;
    --primary-hover: #a08a42;
    --text-primary: #2E2E2E;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --background-light: #F7F6F3;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* Layout */
.hero-section {
    background: var(--background-light);
    padding: 60px 50px 40px;
}

/* Typography */
.hero-title {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 40px;
}

/* Headings */
.heading-primary {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.heading-secondary {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.heading-tertiary {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.heading-sidebar {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

/* Text Utilities */
.text-muted {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.text-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Search Form */
.search-container {
    padding: 0;
    background: transparent;
    margin-bottom: 30px;
}

.search-form {
    width: 100%;
    max-width: 1344px;
    height: 74px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    background: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    min-height: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    position: relative;
}

.search-field:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.field-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.field-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 25px;
}

.field-label {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-value {
    color: #1F2937;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 8px;
}

.search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(190, 158, 74, 0.3);
}

.field-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: bold;
    padding: 0 5px;
    margin: 0 -5px;
}

.search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    min-height: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-field:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.field-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.6;
}

.field-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.field-label {
    color: #6B7280;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-value {
    color: #1F2937;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-btn {
    background: #BE9E4A;
    border: none;
    border-radius: 6px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.search-btn:hover {
    background: #a08a42;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(190, 158, 74, 0.3);
}

.content-section {
    padding: 60px 0px;
    background: #FFF;
}

.section-title {
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: #FFF;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #BE9E4A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    color: #2E2E2E;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-description {
    color: #6B7280;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.vehicle-selection-title {
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
}

/* Vehicle Options */
.vehicle-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 40px;
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.vehicle-card {
    flex: 1 1 0;
    min-width: 180px;
    max-width: 100%;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vehicle-image {
    width: 100%;
    height: 120px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.vehicle-name {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0 5px;
}

.vehicle-capacity {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.vehicle-card {
    background: #FFF;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-image {
    width: 120px;
    height: 60px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.vehicle-name {
    color: #2E2E2E;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.vehicle-capacity {
    color: #6B7280;
    font-size: 14px;
    font-weight: 400;
}

.info-section-title {
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.info-section-subtitle {
    color: #6B7280;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    width: 12px;
    height: 12px;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(-90deg);
}

/* Responsive Styles */
.main-content {
    max-width: 60%;
}

.sidebar {
    width: 35%;
}


@media (max-width: 992px) {


    .search-field {
        width: 100%;
    }

    .transfer-option-inner {
        padding: 5px !important;
    }

    .flex-container {
        flex-direction: column;
    }

    .main-content,
    .sidebar {
        max-width: 100%;
        width: 100%;
    }

    .search-form {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 0;
    }

    .search-field {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

    .search-btn {
        margin: 12px 0 0;
        width: 100%;
    }

    .field-separator {
        display: none;
    }

    .vehicle-options {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 20px;
    }

    .content-section {
        padding: 40px 0px;
    }

    .how-it-works {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vehicle-options {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .search-form {
        height: auto;
        padding: 16px;
    }

    .search-field {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .search-field:last-of-type {
        border-bottom: none;
    }

    .search-btn {
        margin: 12px 0 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vehicle-card {
        width: 100%;
        max-width: 100%;
    }

    .btn-container {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }
}


/* Form Elements */
.form-control.flatpickr-input,
.form-select {
    padding-left: 35px !important;
}

/* Select2 Overrides */
.select2-container {
    width: 100% !important;
    max-width: 100%;
}

.select2-container--default .select2-selection--single {
    height: 38px;
    border: 1px solid #ced4da !important;
    border-radius: 6px;
    background-image: none !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    padding-right: 30px !important;
    padding-left: 35px !important;
    line-height: 38px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 8px !important;
    width: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

.select2-container--open .select2-selection--single .select2-selection__arrow {
    display: block;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.select2-container--default.select2-container--invalid .select2-selection--single {
    border-color: #dc3545 !important;
}

/* Validation States */
.is-invalid {
    border: 1px solid #dc3545 !important;
    background-image: none !important;
}

.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

/* Transfer Options */
.transfer-option {
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    background: var(--white);
    overflow: hidden;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.transfer-option:hover {
    background-color: rgba(190, 158, 74, 0.04) !important;
}

.transfer-option.selected {
    background-color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 10px rgba(190, 158, 74, 0.3) !important;
}

.transfer-option.selected h5,
.transfer-option.selected .transfer-option-feature,
.transfer-option.selected .text-muted {
    color: var(--white) !important;
}

.transfer-option-inner {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.transfer-option-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.transfer-option-image {
    width: 60px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transfer-option-details {
    flex: 1;
}

.transfer-option-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.transfer-option-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

.transfer-option-feature {
    display: flex;
    align-items: center;
    gap: 4px;
}

.transfer-option-price {
    text-align: right;
    margin-left: 20px;
    white-space: nowrap;
}

/* Utility Classes */
.container-transfer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.flex-container {
    display: flex;
    gap: 30px;
}

.section-margin {
    margin-bottom: 30px;
}

.section-margin-large {
    margin-top: 40px;
}

/* Cards */
.card {
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 15px;
}

.card-highlight {
    background: #FCFBF8;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    margin-bottom: 15px;
}

/* Buttons */
.btn-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
    flex: 1;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: 0;
}

.form-textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    resize: vertical;
}

/* Buttons */
.btn-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

.btn-primary {
    background: #d4af37;
    color: white;
}

.btn-secondary {
    background: #333;
    color: white;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    position: absolute;
    left: 12px;
    top: 25px;
    bottom: 25px;
    width: 1px;
    background: #ddd;
}

.timeline-point {
    position: relative;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 24px;
    height: 24px;
    background: #d4af37;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px #e5e5e5;
}

/* Utilitaires */
.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.d-none {
    display: none;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 15px;
}

.mt-2 {
    margin-top: 5px;
}

.mt-3 {
    margin-top: 10px;
}

/* FAQ */
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 100%;
    margin: 0;
    padding: 5px 0;
    justify-content: flex-start;
}

.faq-item {
    flex: 0 0 calc(50% - 8px);
    margin-bottom: 0px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: white;
}

.faq-answer-content {
    padding: 0 20px 16px;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 768px) {
    .faq-item {
        flex: 0 0 100%;
    }
}