﻿/*Shortcut Menu
    -----------------------------------
    1->ST1 Loading animation
    2->ST2 Hotel Rooms css
    3->ST3 flight plan
    4->ST4 new flight plan
    5->ST5 BAGGAGE
    6->ST6 Flight Search Passenger Buttons
    -----------------------------------
*/

/* Collapse toggle all tags shortcut 
    -----------------------------------
    Ctrl+M+O
    -----------------------------------
*/
/* UnCollapse toggle all tags shortcut
    -----------------------------------
    Ctrl+M+L
    -----------------------------------
*/

/* ST1 Loading animation*/

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarý saydam siyah */
    z-index: 999; /* Loading div'in hemen altýnda */
}

#loading-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    transform: translate(-50%, -50%);
}

.vz-logo {
    animation: animate-logo;
    animation-duration: 1.8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-direction: alternate;
    transform-origin: center center;
}

@keyframes animate-logo {
    0% {
        transform: translate(-50%, -50%) translateY(-10%) rotateY(0deg);
    }

    10% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    20% {
        transform: translate(-50%, -50%) translateY(-18%);
    }

    30% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    40% {
        transform: translate(-50%, -50%) translateY(-12%);
    }

    50% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    60% {
        transform: translate(-50%, -50%) translateY(-6%);
    }

    70% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    90% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

/* End of loading animation */


/* ST2 Hotel Rooms css*/

.room-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #f7fafc;
    border-radius: 10px;
}

.room-table {
    width: 100%;
    border-collapse: collapse;
}

    .room-table th, .room-table td {
        padding: 10px;
        text-align: left;
    }

    .room-table th {
        background-color: #f7fafc;
        font-weight: bold;
    }

    .room-table tbody tr {
        border-top: 1px solid #4a5568;
    }

        .room-table tbody tr:first-child {
            border-top: none;
        }

.room-type {
    display: flex;
    align-items: center;
}

.price {
    font-weight: bold;
    color: #2d3748;
}


.select-button {
    padding: 10px 20px;
    background-color: #fd396a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .select-button:hover {
        background-color: #2d3748;
    }

    .select-button.disabled {
        background-color: #f7fafc;
        cursor: not-allowed;
    }

.total-rooms {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.2em;
    text-align: right;
}

.has-error input {
    border-color: red;
    background-color: #f7fafc;
}

.has-error label {
    color: red;
}

.has-error .input-box {
    border: 1px solid red;
    padding: 5px;
    border-radius: 4px;
}


/* End of Hotel Rooms css */

/* ST3 flight plan */
.tpd-body .flight-plain {
    margin-left: -15px;
    margin-right: -15px;
}

    .tpd-body .flight-plain .f-lbl {
        font-size: 13px;
    }

    .tpd-body .flight-plain .fg-row {
        font-size: 14px;
    }

        .tpd-body .flight-plain .fg-row p.fg-prg {
        }

        .tpd-body .flight-plain .depart-row, .tpd-body .flight-plain .return-row {
            border-bottom: dashed 1px #f7fafc;
            padding: 0 0 10px 0;
            margin-bottom: 10px;
        }        .tpd-body .flight-plain .depart-row p.fg-prg i.fa {
            color: #fd396a;
        }

        .tpd-body .flight-plain .return-row p.fg-prg i.fa {
            color: #fd396a;
        }

/* end of flight plan */

/* ST4 new flight plan */
.tp-flight-plan {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    color: #2d3748;
    font-size: 14px;
}

    .tp-flight-plan .crop {
        position: relative;
        border: 1px solid #4a5568;
        border-radius: 3px;
        background-color: #fff;
        cursor: pointer;
        margin-bottom: 10px;
    }

        .tp-flight-plan .crop .itin-det-btn {
            -ms-transition: all .25s ease 0s;
            -o-transition: all .25s ease 0s;
            -moz-transition: all .25s ease 0s;
            -webkit-transition: all .25s ease 0s;
            transition: all .25s ease 0s;
        }

        .tp-flight-plan .crop .itin-det-btn {
            text-decoration: none;
            outline: none;
            position: absolute;
            right: -10px;
            top: 70px;
            font-size: 14px;
            background-color: #fd396a;
            color: white;
            padding: 8px 8px; /* Adjust padding for better alignment */
            border-radius: 5px;
            line-height: normal;
            margin: 0 auto;
        }




            .tp-flight-plan .crop .itin-det-btn .fa {
                display: none;
            }

        .tp-flight-plan .crop .context.collapsed i.fa-chevron-down {
            display: block;
        }

        .tp-flight-plan .crop .context:not(.collapsed) i.fa-chevron-up {
            display: block;
        }

    .tp-flight-plan .context {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: stretch;
        padding: 10px;
        /* position: relative; */
        background: #f7fafc;
    }

    .tp-flight-plan .crop .item {
        margin: 0px;
        display: flex;
        justify-content: center;
    }

    .tp-flight-plan .crop .trip-type {
        position: absolute;
        left: -5px;
        top: -19px;
        line-height: normal;
        background-color: #f7fafc;
        border-radius: 3px;
        padding: 5px 10px 0;
        color: #fd396a;
        font-size: 11px;
        width: 85px;
        text-align: center;
    }

        .tp-flight-plan .crop .trip-type.return {
            color: #fd396a;
            right: 0px;
            left: unset;
        }

    .tp-flight-plan .item.it-1 {
        flex-grow: 5;
        display: flex;
        position: relative;
    }

        .tp-flight-plan .item.it-1:before {
            content: "";
            position: absolute;
            width: calc(100% - 30px);
            height: 2px;
            /*background-color: #878787;*/
            border-top: dashed 1px #f7fafc;
            top: 50%;
            left: 15px;
            margin-top: -1px;
        }

    .tp-flight-plan .it-1 .port-seg {
        display: flex;
        flex: 3;
        position: relative;
    }

        .tp-flight-plan .it-1 .port-seg .flight-seg {
            flex: 1;
            text-align: left;
            padding-bottom: 5px;
            padding-left: 5px;
        }

    .tp-flight-plan .it-1 .flight-seg.origin {
        padding-left: 5px;
    }

    .tp-flight-plan .it-1 .flight-seg .time {
        font-size: 20px;
        color: #2d3748;
        font-weight: 700;
    }

    .tp-flight-plan .it-1 .flight-seg .port {
        display: inline-block;
        background-color: #f7fafc;
        padding: 0 25px 0 0;
        font-size: 16px;
        color: #4a5568;
        line-height: 1.2;
    }

    .tp-flight-plan .it-1 .flight-seg .name {
        font-size: 12px;
        color: #4a5568;
        line-height: 1.2;
    }

    .tp-flight-plan .it-1 .flight-seg.destination {
        text-align: right;
        padding-right: 15px;
    }

    .tp-flight-plan .flight-seg.destination .port {
        padding: 0 0 0 25px;
    }

    .tp-flight-plan .it-1 .airline-image {
        position: absolute;
        bottom: 0;
        width: 100%;
        display: flex;
        padding: 0 20px;
        height: 21px;
    }

    .tp-flight-plan .it-1 .img-wrapper {
        flex: 1;
        text-align: center;
        position: relative;
    }

    .tp-flight-plan .it-1 .top-label {
        color: #fd396a;
        font-size: 11px;
    }

    .tp-flight-plan .it-1 .df-text {
        position: absolute;
        top: -24px;
        left: 50%;
        transform: translate(-50%,-100%);
        font-size: 11px;
        color: #4a5568;
        text-align: center;
    }

    .tp-flight-plan .it-1 .top-label.has-stops {
        color: #fd396a;
    }

    .tp-flight-plan .it-1 .top-label .stops {
        color: #4a5568;
    }

    .tp-flight-plan .it-1 .route-dot span {
        position: absolute;
        background-color: #4a5568;
        /* background-color: #ff0000a3; */
        top: calc(50% - 4px);
        left: var(--data-left);
        border-radius: 10px;
        padding: 4px;
    }

    .tp-flight-plan .it-2 .al-name {
        display: block;
    }

    .tp-flight-plan .item.it-2 {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -webkit-box-align: center;
        align-items: center;
        background: #fff;
        border: 1px solid #4a5568;
        flex-direction: column;
        flex: 2 2 100px;
    }

        .tp-flight-plan .item.it-2 .dr-row {
            display: flex;
            flex-direction: row;
        }

        .tp-flight-plan .item.it-2 .airline-logo {
            max-width: 100%;
            max-height: 100%;
        }

        .tp-flight-plan .item.it-2 .take-tim {
            font-size: 12px;
            color: #4a5568;
            line-height: 20px;
        }

    .tp-flight-plan .item.it-3 {
        flex-grow: 2;
        text-align: center;
    }

    .tp-flight-plan .crop .fly-wrap {
        border-top: solid 1px #f7fafc;
        padding: .75rem 1.5rem;
        color: #2d3748;
    }

    .tp-flight-plan .fly-wrap .fly-det .f-item {
        font-family: 'Roboto',"Helvetica Neue",Helvetica,Arial,sans-serif;
    }

    .tp-flight-plan .fly-wrap .airway-title {
        padding-left: 13%;
        margin-bottom: .75rem;
        margin-top: 1.75rem;
    }

    .tp-flight-plan .fly-wrap .root-de {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
    }

    .tp-flight-plan .fly-wrap .times {
        display: inline-block;
        width: 6rem;
        font-size: 12px;
        line-height: 1.125rem;
        font-weight: 400;
        letter-spacing: normal;
        color: #4a5568;
    }

    .tp-flight-plan .fly-wrap .directs {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-height: 3.75rem;
    }

    .tp-flight-plan .fly-wrap .itin-time {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: .375rem;
        padding-bottom: .375rem;
        padding-right: 1.125rem;
    }

        .tp-flight-plan .fly-wrap .itin-time:after,
        .tp-flight-plan .fly-wrap .itin-time:before {
            content: "";
            width: 10px;
            height: 10px;
            display: block;
            border-radius: 100%;
            background: #fff;
            border: 2px solid #4a5568;
            z-index: 2;
        }

    .tp-flight-plan .fly-wrap .itin-lines {
        display: -ms-flexbox;
        display: flex;
        position: relative;
        -ms-flex-positive: 1;
        flex-grow: 1;
        left: 4px;
        min-height: 2rem;
    }

        .tp-flight-plan .fly-wrap .itin-lines:after {
            content: "";
            position: relative;
            width: 2px;
            background-color: #4a5568;
        }

    .tp-flight-plan .fly-wrap .hour-sm {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        margin-right: .75rem;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .tp-flight-plan .fly-wrap .hour-time-sm {
        position: relative;
        display: inline-block;
        padding-right: 1.125rem;
    }

    .tp-flight-plan .fly-wrap .itin-target {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-positive: 2;
        flex-grow: 2;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .tp-flight-plan .fly-wrap .itin-target .tar-label {
            display: inline-block;
        }

    .tp-flight-plan .fly-wrap .welc {
        min-height: 20px;
        padding: 8px;
        margin: 10px 0;
        background-color: #f7fafc;
        border: 1px solid #f7fafc;
        border-radius: 4px;
    }

    .tp-flight-plan .arrival-info {
        margin-top: 1.5rem;
        font-size: 12px;
        line-height: 1.125rem;
        font-weight: 400;
        letter-spacing: normal;
        border-top: solid 1px #f7fafc;
        padding-top: 10px;
    }

    .tp-flight-plan .fly-wrap .arrival-info .sub-span {
        margin-top: 1.5rem;
        font-size: 12px;
        line-height: 1.125rem;
        font-weight: 400;
        letter-spacing: normal;
        /* border-top: solid 1px #cccccc; */
        /* padding-top: 10px; */
    }

    .tp-flight-plan .fly-wrap .arrival-info .duration-info {
        margin-left: .75rem;
    }

    .tp-flight-plan .anime-airplane {
        position: absolute;
        width: 30px;
        height: 25px;
        top: -87%;
        opacity: 0;
    }

    .tp-flight-plan .crop.depart .anime-airplane {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 10%;
        -webkit-animation: move 3s infinite;
        animation: move 3s infinite;
    }

    .tp-flight-plan .crop.return .anime-airplane {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        right: 10%;
        -ms-transform: rotate(180deg); /* IE 9 */
        -webkit-transform: rotate(180deg); /* Safari */
        transform: rotate(180deg);
        -webkit-animation: move-right 3s infinite;
        animation: move-right 3s infinite;
    }

    .tp-flight-plan .crop.depart svg {
        fill: #3e67c0;
    }

    .tp-flight-plan .crop.return svg {
        fill: #e91e63;
    }

@-webkit-keyframes move {
    40% {
        left: 50%;
        opacity: 1;
    }

    100% {
        left: 90%;
        opacity: 0;
    }
}

@-webkit-keyframes move-right {
    50% {
        right: 50%;
        opacity: 1;
    }

    100% {
        right: 90%;
        opacity: 0;
    }
}

@keyframes move {
    50% {
        left: 50%;
        opacity: 1;
    }

    100% {
        left: 90%;
        opacity: 0;
    }
}

@keyframes move-right {
    50% {
        right: 50%;
        opacity: 1;
    }

    100% {
        right: 90%;
        opacity: 0;
    }
}

/* ST5 BAGGAGE */

.flight-section {
    max-width: 800px;
    margin: auto;
}

.flight-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.flight-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2d3748;
}

.route,
.date-time {
    font-size: 14px;
    color: #4a5568;
}

.slider-container {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden; /* Gizli kaydırma çubuğu */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fd396a;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
    border-radius: 10%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

    .slider-btn.prev {
        left: -20px;
    }

    .slider-btn.next {
        right: -20px;
    }

.flight-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
}

.flight-card {
    scroll-snap-align: center;
    flex: 0 0 calc(33.333% - 10px); /* 3 kart sığacak şekilde */
    background-color: #fff;
    border: 1px solid #4a5568;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center; /* Kartları ortala */
}

.fare-options {
    display: flex;
    justify-content: space-between;
}

.fare-option {
    flex: 1;
    text-align: center;
    border: 1px solid #4a5568;
    border-radius: 4px;
    padding: 10px;
    margin: 0 5px;
    background-color: #f7fafc;
    position: relative;
}

.fare-option .fare-name {
    font-weight: bold;
    margin-bottom: 10px;
}

.fare-option .fare-price {
    font-size: 18px;
    font-weight: bold;
    color: #2d3748;
}

.fare-option.eco {
    background-color: #f7fafc;
}

.fare-option.flex {
    background-color: #f7fafc;
}

.fare-option.premium {
    background-color: #ffccbc;
}

.fare-option input[type="radio"] {
    position: absolute;
    top: 10px;
    left: 10px;
}

.total-amount {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

.continue-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background-color: #f57c00;
    color: white;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
}

.continue-btn:hover {
        background-color: #e65100;
    }

/* BAGGAGE END*/

/* ST6 Flight Search Passenger Buttons */


.passengers-dropdown {
    position: relative;

}

    .passengers-dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
        font-weight: 300;
        background-color: #fff;
        border: 1px solid #f7fafc;
        border-radius: 10px;
        padding: 12px 20px;
        color: #777;
        margin-bottom: 0;
        height: 50px;
        box-shadow: none;
        width: 100%;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fontu ayarladık */
    }

        .passengers-dropdown .dropdown-toggle:hover {
            background-color: #f7fafc; /* Hover rengini uyumlu hale getirdim */
        }

    .passengers-dropdown .dropdown-icon {
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #2d3748; /* Renk uyumlu */
        transition: transform 0.3s ease;
    }

.passenger-info {
    font-size: 14px; /* Oda ve kişi sayısı seçimindeki font boyutuyla uyumlu */
    color: #2d3748; /* Renk uyumlu */
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fontu ayarladık */
}

.balloon {
    margin-top: 28px;
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 250px; /* Oda ve kişi sayısı seçimindeki genişlikle uyumlu */
    padding: 15px;
    background-color: #fff;
    border: 1px solid #4a5568;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

    .balloon:before {
        content: '';
        position: absolute;
        top: -10px;
        left: 20px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #4a5568;
    }

    .balloon:after {
        content: '';
        position: absolute;
        top: -8px;
        left: 22px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #fff;
    }

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 16px; /* Font boyutunu uyumlu hale getirdim */
    color: #2d3748; /* Renk uyumlu */
    cursor: pointer;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fontu ayarladık */
}

    .close-btn:hover {
        color: #fd396a;
    }

.passenger-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .passenger-group label {
        font-size: 14px; /* Oda ve kişi sayısı seçimindeki font boyutuyla uyumlu */
        color: #2d3748; /* Renk uyumlu */
        margin-right: 10px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fontu ayarladık */
    }

    .passenger-group button {
        font-size: 16px; /* Font boyutunu uyumlu hale getirdim */
        width: 30px; /* Buton genişliği */
        height: 30px; /* Buton yüksekliği */
        border: 1px solid #4a5568;
        border-radius: 4px;
        background-color: #f7fafc; /* Arka plan rengi uyumlu */
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fontu ayarladık */
    }

        .passenger-group button:hover {
            background-color: #f7fafc; /* Hover rengi uyumlu */
        }

    .passenger-group span {
        margin: 0 10px;
        font-size: 14px; /* Yazı boyutunu uyumlu hale getirdim */
        color: #2d3748; /* Renk uyumlu */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Fontu ayarladık */
    }



    /*Flight Search Passenger Buttons End*/

    /* Hotel Search Passsenger */


.hotel-dropdown {
    position: relative;
    width: 100%;
}

.hotel-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 300;
    background-color: #fff;
    border: 1px solid #f7fafc;
    border-radius: 10px;
    padding: 12px 20px;
    color: #4a5568;
    margin-bottom: 0;
    height: 50px;
    box-shadow: none;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.hotel-children {
    font-size: 13px;
}

.hotel-dropdown-toggle:hover {
    background-color: #f7fafc;
}

.hotel-dropdown-icon {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000000;
    transition: transform 0.3s ease;
}

.hotel-dropdown-content {
    display: none;
    position: absolute; /* Konuşma balonunun doğru konumlanması için */
    top: 100%; /* Toggle'ın altında */
    left: 0;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f7fafc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Diğer içeriklerin üstünde olması için */
}

    .hotel-dropdown-content label {
        font-size: 12px;
        margin-right: 10px; /* Seçim kutusunun sol tarafında boşluk */
    }

    .hotel-dropdown-content select {
        padding: 4px;
        font-size: 12px;
        border-radius: 4px;
        border: 1px solid #4a5568;
    }

.hotel-room {
    margin-top: 15px; /* Üst boşluk eklendi */
    padding: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hotel-balloon {
    margin-top: 13px;
    display: none;
    position: absolute;
    top: 50px; /* Dropdown'un altına yerleştirildi */
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #4a5568;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 99999;
}

    .hotel-balloon:before {
        content: '';
        position: absolute;
        top: -10px;
        left: 20px;
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-bottom: 10px solid #4a5568;
    }

    .hotel-balloon:after {
        content: '';
        position: absolute;
        top: -8px;
        left: 22px;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #fff;
    }

.hotel-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

    .hotel-close-btn:hover {
        color: #fd396a;
    }

.hotel-room label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px; /* Alt boşluk eklendi */
    display: block;
}

.hotel-child-age {
    margin-top: 10px; /* Üst boşluk eklendi */
}

    .hotel-child-age label {
        font-size: 12px;
        margin-bottom: 5px;
        display: block;
    }

    .hotel-child-age select {
        width: 50px;
        padding: 4px;
        font-size: 12px;
        border-radius: 4px;
        border: 1px solid #4a5568;
    }

/* Suggestions List for Hotel Search */
#suggestions, #departureSuggestions, #arrivalSuggestions, #flightDepartureSuggestions, #flightArrivalSuggestions, .searchform-input {
    max-height: 200px; /* Maksimum yükseklik ayarı */
    overflow-y: auto; /* Dikey scroll bar ekle */
    position: absolute; /* Ekranın diğer elementleriyle kaymasını önlemek için */
    z-index: 1000; /* Üstte olması için z-index ayarı */
    background-color: #fff; /* Arka plan rengi */
    width: 350px; /* Input alanının genişliğini kaplaması için */

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Hafif bir gölge efekti */
}

/* End of Hotel Search Passsenger */





    /* Mobile css */
@media only screen and (max-width: 768px) {
    .color-overlay {
        display: none;
    }
}

    /* Mobile css*/

    

    
        /* Modern Design Improvements */
        .icon-button {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            margin-left: 5px;
            transition: all 0.3s ease;
        }

        .icon-button:hover {
            transform: scale(1.1);
            opacity: 0.8;
        }

        /* Enhanced Input Styling */
        .input-box {
            align-items: center;
            margin-bottom: 1rem;
        }

        .input-box label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .input-box .form-control {
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.95);
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .input-box .form-control:focus {
            border-color: #ff6b35;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25), 0 8px 25px rgba(0,0,0,0.15);
            transform: translateY(-2px);
            background: white;
        }

        .input-box input[type="date"] {
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 12px 16px;
            background: rgba(255,255,255,0.95);
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            color: #333;
        }

        .input-box input[type="date"]:focus {
            border-color: #ff6b35;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25), 0 8px 25px rgba(0,0,0,0.15);
            transform: translateY(-2px);
            background: white;
        }

        /* Modern Select Styling */
        .niceSelect {
            border: 2px solid rgba(255,255,255,0.2) !important;
            border-radius: 12px !important;
            background: rgba(255,255,255,0.95) !important;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
            transition: all 0.3s ease !important;
            padding: 12px 16px !important;
            font-size: 1rem !important;
        }

        .niceSelect:focus,
        .niceSelect.open {
            border-color: #ff6b35 !important;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25), 0 8px 25px rgba(0,0,0,0.15) !important;
            transform: translateY(-2px) !important;
        }

        /* Enhanced Search Suggestions */
        .list-group {
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: none;
            overflow: hidden;
            margin-top: 8px;
        }

        .list-group-item {
            border: none;
            padding: 12px 16px;
            background: white;
            transition: all 0.3s ease;
            cursor: pointer;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .list-group-item:hover {
            background: #f8f9fa;
            transform: translateX(5px);
            padding-left: 20px;
        }

        .list-group-item:last-child {
            border-bottom: none;
        }

        /* Enhanced Button Styling - Updated to theme palette */
        .nir-btn {
            background: linear-gradient(135deg, #fd396a 0%, #2c455c 100%);
            border: none;
            border-radius: 12px;
            padding: 14px 32px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(69, 104, 130, 0.3);
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .nir-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(69, 104, 130, 0.4);
            background: linear-gradient(135deg, #2c455c 0%, #fd396a 100%);
        }

        .nir-btn:active {
            transform: translateY(-1px);
        }

        /* Override .nir-btn colors to a pink gradient (base #fd396a) and improve hover/active/disabled states */
        .nir-btn,
        .search-banner .nir-btn {
          background: linear-gradient(90deg, #fd396a 0%, #ff6b9a 50%, #ff8fb3 100%);
          border: 1px solid #fd396a;
          color: #ffffff !important;
          padding: 0.6rem 1.1rem;
          display: inline-flex;
          align-items: center;
          gap: 0.5rem;
          box-shadow: 0 4px 12px rgba(253,57,106,0.18);
          transition: background 200ms ease, transform 120ms ease, box-shadow 200ms ease, border-color 200ms ease;
        }

        .nir-btn i { color: #ffffff; }

        .nir-btn:hover,
        .nir-btn:focus,
        .search-banner .nir-btn:hover,
        .search-banner .nir-btn:focus {
          background: linear-gradient(90deg, #ff6b9a 0%, #fd396a 60%);
          border-color: #e02f5b;
          transform: translateY(-2px);
          box-shadow: 0 8px 22px rgba(253,57,106,0.22);
        }

        .nir-btn:active,
        .search-banner .nir-btn:active {
          transform: translateY(0);
          box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        }

        .nir-btn[disabled],
        .nir-btn.disabled,
        .search-banner .nir-btn[disabled],
        .search-banner .nir-btn.disabled {
          opacity: 0.65;
          cursor: not-allowed;
          transform: none;
          box-shadow: none;
        }

        /* Provide a subtle focus ring for accessibility */
        .nir-btn:focus-visible {
          outline: 3px solid rgba(253,57,106,0.18);
          outline-offset: 2px;
        }

        /* Compact variant adjustments (keeps existing sizing consistent) */
        .nir-btn.compact-btn {
          padding: 0.45rem 0.9rem;
          font-size: 0.95rem;
        }

        /* Ensure contrast for any small text inside button */
        .nir-btn .small,
        .nir-btn small {
          color: rgba(255,255,255,0.92);
        }

        /* End of .nir-btn overrides */

        /* Modern Tab Styling */
        .nav-tabs .nav-link {
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px 12px 0 0;
            margin-right: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 1rem 1.5rem;
        }

        .nav-tabs .nav-link.active {
            background: rgba(255,255,255,0.95);
            color: #2d3748 !important;
            border-color: #fd396a; /* Theme color instead of orange */
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .nav-tabs .nav-link:hover:not(.active) {
            background: rgba(255,255,255,0.2);
            transform: translateY(-1px);
        }

        /* Enhanced Form Container */
        .book-form {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        /* Modern Dropdown Styling */
        .hotel-dropdown,
        .passengers-dropdown {
            position: relative;
        }

        .hotel-dropdown-toggle,
        .dropdown-toggle {
            background: rgba(255,255,255,0.95);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .hotel-dropdown-toggle:hover,
        .dropdown-toggle:hover {
            border-color: #fd396a; /* Theme color instead of orange */
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .hotel-balloon,
        .balloon {
            background: white;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            border: 1px solid rgba(0,0,0,0.1);
            padding: 1.5rem;
            margin-top: 8px;
        }

        /* Enhanced AI Chat Section */
        .ai-chat-container {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(15px);
            border-radius: 16px;
            padding: 2.5rem;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .ai-feature-card {
            background: rgba(255,255,255,0.1) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            height: 100%;
        }

        .ai-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            background: rgba(255,255,255,0.15) !important;
        }

        /* Enhanced spacing and layout */
        .search-banner {
            display: flex;
            align-items: center;
            padding: 6rem 0;
            z-index: 100;
            position: relative;
        }

        .search-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60" width="60" height="60"><defs><pattern id="hexagons" x="0" y="0" width="30" height="26" patternUnits="userSpaceOnUse"><polygon points="15,1 27,8 27,20 15,27 3,20 3,8" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
            opacity: 0.4;
            z-index: 1;
        }

        .search-banner > .container {
            position: relative;
            z-index: 2;
        }

        .section-title h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .section-title h4 {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Override white class in search-banner for better visibility */
        .search-banner .white {
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4); /* Daha güçlü text shadow */
        }

        .search-banner .theme {
            color: #fd396a !important; /* Sarı vurgu rengi, bg-theme üzerinde çok güzel görünür */
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        /* Global theme color consistency - Palette based colors */
        .theme {
            color: #fd396a !important; /* Ana theme rengi */
        }

        /* Accent color for highlights and special elements */
        .theme-accent {
            color: #fd396a !important; /* Sarı accent rengi */
        }

        /* Secondary theme color */
        .theme-secondary {
            color: #2d3748 !important; /* Koyu theme rengi */
        }

        /* Override any orange/random colors with consistent palette */
        .text-warning,
        .badge-warning,
        .btn-warning {
            background-color: #fd396a !important;
            border-color: #fd396a !important;
            color: #2d3748 !important;
        }

        /* Ensure all price and highlight elements use consistent colors */
        .price-highlight,
        .special-offer {
            color: #fd396a !important;
            font-weight: 600;
        }

        /* Enhanced tab design - Optimized for bg-theme background */
        .new-tabs {
            background: transparent !important;
            border-radius: 0 !important;
            padding: 0;
            backdrop-filter: none;
            border: none !important;
            box-shadow: none !important;
        }

        .new-tabs .nav-link {
            border: 1px solid rgba(255,255,255,0.3) !important;
            border-radius: 8px !important;
            color: rgba(255,255,255,0.95) !important;
            font-weight: 600;
            padding: 0.6rem 0.8rem;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1) !important;
            margin: 0 4px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .new-tabs .nav-link:hover {
            background: rgba(255,255,255,0.2) !important;
            color: white !important;
            transform: translateY(-1px);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
            border-color: rgba(255,255,255,0.5) !important;
        }

        .new-tabs .nav-link.active {
            background: rgba(255,255,255,0.3) !important;
            color: white !important;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            border: 1px solid rgba(255,255,255,0.5) !important;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
        }

        /* Tab icons styling */
        .new-tabs .nav-link i {
            color: inherit;
            filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3)); /* Icon'lar için gölge */
        }

/* Enhanced form styling - Optimized for bg-theme background */
.book-form {
    background: rgba(255,255,255,0.98); /* Daha opak beyaz arka plan */
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25); /* Daha belirgin gölge */
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.4); /* Daha belirgin border */
    margin-top: 1.5rem;
}

/* Make inputs same height for horizontal layout */
.book-form .form-control,
.book-form .hotel-dropdown-toggle,
.book-form .dropdown-toggle,
.book-form .niceSelect {
    height: 50px !important;
    line-height: 1.2 !important;
    min-height: 50px !important;
}

.book-form .nir-btn {
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 1.5rem !important;
    white-space: nowrap !important;
}

/* Button container için özel hizalama */
.book-form .col-lg-1 .form-group {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    justify-content: center !important;
}

/* Special handling for radio/checkbox groups in horizontal layout */
.book-form .modern-radio-group,
.book-form .modern-checkbox-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
    align-items: center !important;
    margin-top: 0.5rem !important;
}

.book-form .modern-radio-group {
    justify-content: flex-start !important;
}

.book-form .modern-checkbox-group {
    justify-content: flex-start !important;
}

.book-form .radio-item,
.book-form .checkbox-item {
    margin: 0 !important;
    white-space: nowrap !important;
}

.book-form .radio-text,
.book-form .checkbox-text {
    font-size: 0.9rem !important;
    color: #2d3748 !important;
}

/* Hotel dropdown adjustments for horizontal layout */
.book-form .hotel-dropdown-toggle .hotel-children {
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}        .book-form .form-control {
            border: 2px solid rgba(247,250,252,0.5); /* Daha belirgin border */
            border-radius: 12px;
            padding: 0.9rem 1.2rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white; /* Tam beyaz arka plan */
            color: #2c3e50; /* Koyu metin rengi */
        }

        .book-form .form-control:focus {
            border-color: #fd396a;
            box-shadow: 0 0 0 0.2rem rgba(69,104,130,0.25); /* Daha belirgin focus efekti */
            background: white;
        }

        .book-form .form-control::placeholder {
            color: #6c757d; /* Placeholder için uygun renk */
        }

        .book-form .nir-btn {
            background: linear-gradient(135deg, #fd396a 0%, #2c455c 100%);
            border: none;
            border-radius: 12px;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(69,104,130,0.3);
        }

        .book-form .nir-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(69,104,130,0.4);
            background: linear-gradient(135deg, #2c455c 0%, #fd396a 100%);
        }

        /* Ensure form-scoped / more specific .nir-btn usages adopt the pink gradient (override older rules) */
.book-form .nir-btn,
.minimalist-form .nir-btn,
.tab-pane .nir-btn,
.search-banner .book-form .nir-btn,
.search-banner .minimalist-form .nir-btn {
  background: linear-gradient(90deg, #fd396a 0%, #ff6b9a 50%, #ff8fb3 100%) !important;
  border-color: #fd396a !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(253,57,106,0.18) !important;
}

.book-form .nir-btn:hover,
.minimalist-form .nir-btn:hover,
.tab-pane .nir-btn:hover,
.search-banner .book-form .nir-btn:hover {
  background: linear-gradient(90deg, #ff6b9a 0%, #fd396a 60%) !important;
  border-color: #e02f5b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(253,57,106,0.22) !important;
}

.book-form .nir-btn:active,
.minimalist-form .nir-btn:active,
.tab-pane .nir-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12) !important;
}

.book-form .nir-btn[disabled],
.book-form .nir-btn.disabled,
.minimalist-form .nir-btn[disabled],
.minimalist-form .nir-btn.disabled {
  opacity: 0.65 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

/* Keep icons and small text visible inside form buttons */
.book-form .nir-btn i,
.book-form .nir-btn .small,
.minimalist-form .nir-btn i,
.minimalist-form .nir-btn .small {
  color: #fff !important;
}

/* Provide an extra high-specificity focus ring for form-scoped buttons */
.book-form .nir-btn:focus-visible,
.minimalist-form .nir-btn:focus-visible {
  outline: 3px solid rgba(253,57,106,0.18) !important;
  outline-offset: 2px !important;
}

/* End overrides for form-scoped .nir-btn */

/* Responsive improvements */
@media (max-width: 768px) {
    .book-form {
        padding: 1.5rem;
    }
    
    /* Stack form vertically on mobile by using full width columns */
    .book-form .col-lg-1,
    .book-form .col-lg-2,
    .book-form .col-lg-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .section-title h1 {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .search-banner {
        padding: 4rem 0;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        width: 160px !important; /* Increased from 120px */
    }
    
    .footer-about img {
        max-width: 140px !important;
    }
    
    .vz-logo img {
        max-width: 50px;
    }
}

/* Destination cards - ensure images are uniform height and nicely cropped */
.trend-item1 .trend-image {
    height: 260px; /* desktop default height */
    overflow: hidden;
    border-radius: 12px;
}

.trend-item1 .trend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop while preserving aspect ratio */
    display: block;
    transition: transform 0.35s ease;
}

.trend-item1:hover .trend-image img {
    transform: scale(1.03);
}

.trend-item1 .trend-content {
    min-height: 120px; /* ensure content area is consistent */
}

@media (max-width: 992px) {
    .trend-item1 .trend-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .trend-item1 .trend-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .trend-item1 .trend-image {
        height: 130px;
    }
}

/* NEW SEARCH SECTION DESIGN */

/* Enhanced Logo Styling */
.vz-logo img {
    max-width: 120px !important;
    height: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(1); }
}

.navbar-brand img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    width: 200px !important; /* Consistent with header styling */
    height: auto;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}


/* Dark Text for Headers */
.dark-text {
    color: #2d3748 !important;
    text-shadow: none !important;
}

.section-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.section-title h4 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* New Tab Design */
.new-tabs .nav-link {
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    margin-right: 4px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: rgba(255,255,255,0.9) !important;
}

.new-tabs .nav-link.active {
    background: rgba(255,255,255,0.3);
    color: white !important;
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.new-tabs .nav-link:hover:not(.active) {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.new-tabs .nav-link i {
    color: inherit;
}







/* Mobile Responsive */
@media (max-width: 768px) {

    .section-title h1 {
        font-size: 2.5rem;
    }
    
    .new-tabs .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .navbar-brand img {
        width: 200px !important; /* Consistent with our improvements */
    }
    
    .vz-logo img {
        max-width: 80px !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        width: 160px !important; /* Consistent with our improvements */
    }
    
    .vz-logo img {
        max-width: 60px !important;
    }
    
    .section-title h1 {
        font-size: 2rem;
    }
    
}

/* Search section için renk düzeltmeleri */
.search-banner.minimalist-search {
    background: white;
}

/* Text renklerini koyu yap */
.search-banner .minimalist-subtitle,
.search-banner .minimalist-title,
.search-banner .dark-text,
.search-banner label {
    color: #333 !important;
}

/* Tab linklerini koyu yap */
.search-banner .minimalist-tabs .nav-link {
    color: #2d3748 !important;
    border: 1px solid #f7fafc !important;
    background-color: white !important;
    border-radius: 8px !important;
    margin: 0 2px !important;
    transition: all 0.3s ease !important;
}

.search-banner .minimalist-tabs .nav-link:hover {
    color: #fd396a !important;
    background-color: #f7fafc !important;
    border-color: #fd396a !important;
    transform: translateY(-1px) !important;
}

.search-banner .minimalist-tabs .nav-link.active {
    background-color: #fd396a !important;
    color: white !important;
    border-color: #fd396a !important;
    box-shadow: 0 2px 8px rgba(253,57,106,0.25) !important;
}

/* Form elementlerini düzelt */
.search-banner .minimalist-form .form-control {
    border: 1px solid #f7fafc;
    color: #2d3748;
}

.search-banner .minimalist-form .form-control:focus {
    border-color: #fd396a;
    box-shadow: 0 0 0 0.2rem rgba(253, 57, 106, 0.25);
}

/* Dropdown ve select elementleri */
.search-banner .hotel-dropdown-toggle,
.search-banner .dropdown-toggle {
    background: white;
    border: 1px solid #f7fafc;
    color: #2d3748;
}

.search-banner .hotel-dropdown-toggle:hover,
.search-banner .dropdown-toggle:hover {
    background-color: #f7fafc;
}

/* Button renklerini düzelt */
.search-banner .nir-btn {
    background-color: #fd396a;
    border-color: #fd396a;
    color: white;
}

.search-banner .nir-btn:hover {
    background-color: #2d3748;
    border-color: #2d3748;
}

/* Radio ve checkbox elementleri */
.search-banner .radio-text,
.search-banner .checkbox-text {
    color: #2d3748;
}

/* AI feature cards */
.search-banner .ai-feature-card {
    background: #f7fafc;
    border: 1px solid #f7fafc;
}

.search-banner .ai-feature-card h6 {
    color: #2d3748;
}

.search-banner .ai-feature-card .text-muted {
    color: #4a5568 !important;
}

/* Suggestion lists */
.search-banner .list-group-item {
    color: #2d3748;
    background-color: white;
    border-color: #f7fafc;
}

.search-banner .list-group-item:hover {
    background-color: #f7fafc;
}

/* Balloon/dropdown içerikleri */
.search-banner .hotel-balloon,
.search-banner .balloon {
    background: white;
    border: 1px solid #f7fafc;
    color: #2d3748;
}

/* Icon renklerini düzelt */
.search-banner .fas,
.search-banner .flaticon-location-pin {
    color: #fd396a;
}

/* Button alignment fixes for horizontal forms */
.book-form .row.d-flex.align-items-end {
    min-height: 85px;
}

.book-form .row.d-flex.align-items-end .form-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 85px;
}

.book-form .form-group.mb-0 {
    min-height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.book-form .compact-btn {
    margin-top: 0;
    height: 40px;
    line-height: 40px;
    padding: 0 18px;
    white-space: nowrap;
    overflow: visible;
    width: 100%;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Input box consistent height */
.book-form .input-box.minimalist-input {
    min-height: 65px;
}

.book-form .compact-input {
    height: 40px;
}

.book-form .compact-dropdown {
    height: 40px;
    line-height: 40px;
}


