.section__form{
    margin-top: 40px;
}

.section__form .flight-form-card {
    width: 100%;
    max-width: 465px;
    padding: 28px 28px 18px;
    box-sizing: border-box;
    background: rgb(155 151 151 / 46%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0px auto;
}



/* =====================================================
   HEADING
===================================================== */

.section__form .flight-form-card .quote-heading {
    text-align: center;

    margin-bottom: 17px;
}

.section__form .flight-form-card .quote-heading p {
    margin: 0 0 6px;

    font-size: 13px;

    color: #f3f3f3;

    font-weight: 400;
}

.section__form .flight-form-card .quote-heading h3 {
    margin: 0;

    font-size: 19px;

    color: #b58a50;

    font-weight: 700;
}
.section__form .flight-form-card form{}
.section__form .flight-form-card form .top-options {
    width: 100%;

    height: 39px;

    display: flex;

    align-items: center;

    background: #fff;

    border-radius: 9px 9px 0 0;

    overflow: visible;

    position: relative;

    z-index: 20;
}


.section__form .flight-form-card form .top-options .top-option-wrap {
    flex: 1;

    height: 100%;

    position: relative;
}


.section__form .flight-form-card form .top-options  .top-divider {
    width: 1px;

    height: 100%;

    background: #e5e5e5;
}


.section__form .flight-form-card form .top-options .top-option-wrap .top-option-btn {
    width: 100%;

    height: 100%;

    border: none;

    background: transparent;

    padding: 0 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #333;

    font-size: 12px;

    cursor: pointer;
}
.section__form .flight-form-card form .top-options .top-option-wrap .top-option-btn span{}
.section__form .flight-form-card form .top-options .top-option-wrap .top-option-btn i {
    color: #b58a50;

    font-size: 7px;
}
.section__form .flight-form-card form .top-options .top-option-wrap .custom-dropdown{
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 150px;
    background: #fff;
    border-radius: 7px;
    padding: 4px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 9999;
}
.section__form .flight-form-card form .top-options .top-option-wrap .custom-dropdown.show{
    display:block;
}
.section__form .flight-form-card form .top-options .top-option-wrap .custom-dropdown .dropdown-item.active{
    background: #f4ede4;
    color: #b58a50;
}
.section__form .flight-form-card form .top-options .top-option-wrap .custom-dropdown .dropdown-item:hover{
        background: #f4ede4;
    color: #b58a50;
}
.section__form .flight-form-card form .top-options .top-option-wrap .custom-dropdown .dropdown-item{}


/* =====================================================
   NORMAL TRIP
===================================================== */
.section__form .flight-form-card form .search-bar{
      width: 100%;
    display: flex;
    flex-direction: column;
}



/* =====================================================
   ROUTE BOX
===================================================== */

.route-box {
    width: 100%;

    position: relative;

    background: #fff;

    color: #222;

    border-radius: 0 0 10px 10px;

    overflow: visible;
}


.route-field {
    width: 100%;

    min-height: 52px;

    padding: 6px 13px;

    display: flex;

    align-items: center;

    box-sizing: border-box;
}


.route-field:first-child {
    border-bottom: 1px solid #dedede;
}


.route-field:last-of-type {
    padding-bottom: 7px;
}



/* =====================================================
   AIRPORT CODE
===================================================== */

.airport-code {
    width: 39px;

    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f0e8dc;

    color: #b58a50;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 700;
}



/* =====================================================
   ROUTE CONTENT
===================================================== */

.route-content {
    flex: 1;

    margin-left: 12px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.route-content span {
    font-size: 7px;

    color: #777;

    line-height: 1;

    margin-bottom: 4px;
}


.route-content input {
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    padding: 0;

    margin: 0;

    color: #222;

    font-size: 13px;

    font-weight: 500;
}


.route-content input::placeholder {
    color: #444;
}



/* =====================================================
   SWAP BUTTON
===================================================== */

.swap-btn {
    position: absolute;

    right: 12px;

    top: 50%;

    transform: translateY(-50%);

    width: 20px;

    height: 20px;

    border: none;

    border-radius: 50%;

    background: #b58a50;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    z-index: 5;

    transition: 0.3s ease;
}


.swap-btn i {
    font-size: 9px;
}


.swap-btn:hover {
    background: #98723f;
}



/* =====================================================
   DATE BOX
===================================================== */

.date-box {
    width: 100%;

    margin-top: 7px;

    display: flex;

    background: #fff;

    border-radius: 9px;

    overflow: hidden;

    color: #222;
}


.date-field {
    width: 50%;

    min-height: 52px;

    padding: 7px 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;
}


.date-field:first-child {
    border-right: 1px solid #dedede;
}


.date-field > div {
    display: flex;

    flex-direction: column;
}


.date-field span {
    font-size: 7px;

    color: #777;

    margin-bottom: 4px;
}


.date-field input {
    border: none;

    outline: none;

    background: transparent;

    padding: 0;

    color: #222;

    font-size: 12px;

    font-weight: 500;

    width: 100%;
}


.date-field > i {
    color: #b58a50;

    font-size: 15px;
}



/* =====================================================
   CONTACT BOX
===================================================== */

.contact-box {
    width: 100%;

    margin-top: 10px;

    background: #fff;

    border-radius: 10px;

    overflow: hidden;

    color: #222;
}


.contact-field {
    width: 100%;

    height: 38px;

    border-bottom: 1px solid #ddd;

    box-sizing: border-box;

    padding: 0 14px;

    display: flex;

    align-items: center;
}


.contact-field input {
    width: 100%;

    height: 100%;

    border: none;

    outline: none;

    background: transparent;

    padding: 0;

    color: #222;

    font-size: 12px;
}


.contact-field input::placeholder {
    color: #444;

    opacity: 1;
}



/* =====================================================
   PHONE
===================================================== */

.phone-row {
    padding: 0 14px;
}


.country-code {
    height: 22px;

    padding-right: 9px;

    display: flex;

    align-items: center;

    gap: 4px;

    border-right: 1px solid #ddd;

    color: #777;

    font-size: 10px;

    flex-shrink: 0;
}


.country-code img {
    width: 18px;

    height: auto;
}


.country-code i {
    font-size: 6px;

    margin-left: 1px;
}


.phone-row > input {
    padding-left: 9px;
}



/* =====================================================
   QUOTE BUTTON
===================================================== */

.quote-btn {
    width: 100%;

    height: 38px;

    border: none;

    background: #b58a50;

    color: #fff;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;
}


.quote-btn:hover {
    background: #9e763f;
}



/* =====================================================
   SMS
===================================================== */

.sms-row {
    margin-top: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    font-size: 12px;

    font-weight: 600;

    color: #fff;
}


.toggle-switch {
    position: relative;

    width: 32px;

    height: 20px;

    display: inline-block;

    flex-shrink: 0;
}


.toggle-switch input {
    opacity: 0;

    width: 0;

    height: 0;
}


.toggle-slider {
    position: absolute;

    inset: 0;

    background: #a7a7a7;

    border-radius: 20px;

    cursor: pointer;

    transition: 0.3s;
}


.toggle-slider::before {
    content: "";

    position: absolute;

    width: 14px;

    height: 14px;

    left: 3px;

    top: 3px;

    background: #fff;

    border-radius: 50%;

    transition: 0.3s;
}


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


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



/* =====================================================
   DISCLAIMER
===================================================== */

.disclaimer {
    margin-top: 12px;

    text-align: center;

    color: #eee;

    font-size: 7.5px;

    line-height: 1.35;
}


.disclaimer span {
    color: #b58a50;
}





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


.dropdown-item {
    padding: 9px 12px;

    color: #333;

    font-size: 11px;

    cursor: pointer;
}


.dropdown-item:hover,
.dropdown-item.active {
    background: #f4ede4;

    color: #b58a50;
}



/* =====================================================
   PASSENGER DROPDOWN
===================================================== */

.passenger-dropdown {
    position: absolute;

    top: calc(100% + 5px);

    right: 0;

    width: 270px;

    background: #fff;

    border-radius: 9px;

    padding: 6px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    display: none;

    z-index: 9999;
}


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


.passenger-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 9px;

    border-bottom: 1px solid #eee;
}


.passenger-row:last-child {
    border-bottom: none;
}


.passenger-left {
    display: flex;

    align-items: center;

    gap: 9px;
}


.passenger-icon {
    width: 31px;

    height: 31px;

    border-radius: 50%;

    background: #f1e9df;

    color: #b58a50;

    display: flex;

    align-items: center;

    justify-content: center;
}


.passenger-icon i {
    font-size: 13px;
}


.passenger-left strong {
    display: block;

    font-size: 11px;

    color: #333;
}


.passenger-left small {
    display: block;

    font-size: 7px;

    color: #999;

    margin-top: 2px;
}


.counter {
    display: flex;

    align-items: center;

    gap: 7px;
}


.counter-btn {
    width: 24px;

    height: 24px;

    border: 1px solid #ddd;

    background: #fff;

    border-radius: 50%;

    color: #b58a50;

    cursor: pointer;
}


.counter span {
    color: #333;

    font-size: 11px;

    min-width: 12px;

    text-align: center;
}



/* =====================================================
   MULTI CITY
===================================================== */

.multi-segment {
    display: flex;
    gap: 5px;
    background: #fff;
    padding: 8px;
    border-radius: 9px;
    margin-top: 7px;
    align-items: center;
}


.multi-field {
    flex: 1;

    padding: 7px 8px;

    border: 1px solid #eee;

    border-radius: 6px;

    display: flex;

    flex-direction: column;
}


.multi-field span {
    font-size: 7px;

    color: #777;

    margin-bottom: 4px;
}


.multi-field input {
    border: none;

    outline: none;

    font-size: 11px;

    width: 100%;
}


.multi-actions {
    margin-top: 7px;
}


#addSegmentBtn {
    border: none;

    background: #fff;

    color: #b58a50;

    padding: 9px 12px;

    border-radius: 7px;

    font-size: 11px;

    cursor: pointer;
}
.remove-segment{
    border: none;
    background: #ccc;
    padding: 6px 12px;
    border-radius: 35px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.remove-segment i{
    border: none;
    color: #0c0c0c;
    font-size: 15px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 520px) {

    .flight-form-card {
        max-width: 100%;

        padding: 25px 12px 16px;
    }


    .top-option-btn {
        padding: 0 8px;

        font-size: 10px;
    }


    .quote-heading p {
        font-size: 12px;
    }


    .quote-heading h3 {
        font-size: 18px;
    }


    .route-field {
        min-height: 51px;
    }


    .date-field {
        padding: 7px 10px;
    }


    .date-field input {
        font-size: 11px;
    }


    .multi-segment {
        flex-direction: column;
    }


    .passenger-dropdown {
        width: 250px;

        right: -10px;
    }

}
