.search-wrap {
    width: 100%;
    max-width: 1100px
}

.tab-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem
}

.tab-pill {
    display: flex;
    background: #c3e3edf2;
    border-radius: 999px;
    padding: 5px;
    gap: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14)
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap
}

.tab-btn.active {
    background: #fff;
    color: #111;
    font-weight: 600;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12)
}

.tab-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.form-card {
    background: #c4eaf982;
    border-radius: 16px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1)
}

.form-title {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.25rem
}

.form-panel {
    display: none
}

.form-panel.active {
    display: block
}

.field-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    align-items: flex-end
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 140px;
    position: relative
}

.field-group label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.01em
}

.field-input {
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid #ffffff;
    border-radius: 9px;
    padding: 0 13px;
    height: 48px;
    background: #e8eef5c9;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s
}

.field-input:hover {
    border-color: #bbb;
    background: #fff
}

.field-input.open {
    border-color: #0f3460;
    background: #f0f5ff
}

.field-input svg {
    width: 16px;
    height: 16px;
    color: #888;
    flex-shrink: 0
}

.field-input input {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #111;
    width: 100%;
    outline: none;
    cursor: pointer
}

.field-input input::placeholder {
    color: #aaa
}

.field-input select {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #111;
    width: 100%;
    outline: none;
    cursor: pointer;
    appearance: none
}

.chevron {
    width: 14px;
    height: 14px;
    color: #aaa;
    flex-shrink: 0;
    transition: transform 0.2s
}

.field-input.open .chevron {
    transform: rotate(180deg)
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 1.5px solid #e4e4e4;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    z-index: 1000;
    overflow: hidden;
    display: none
}

.dropdown-panel.vis {
    display: block
}

.dsearch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f0f0
}

.dsearch svg {
    width: 15px;
    height: 15px;
    color: #aaa;
    flex-shrink: 0
}

.dsearch input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #111;
    width: 100%;
    background: transparent
}

.dsearch input::placeholder {
    color: #bbb
}

.dlist {
    max-height: 240px;
    overflow-y: auto
}

.dlist::-webkit-scrollbar {
    width: 5px
}

.dlist::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px
}

.ditem {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.1s
}

.ditem:hover {
    background: #f0f5ff
}

.ditem-text {
    display: flex;
    flex-direction: column;
    flex: 1
}

.ditem-main {
    font-size: 14px;
    color: #111;
    font-weight: 500
}

.ditem-sub {
    font-size: 12px;
    color: #888;
    margin-top: 1px
}

.dchk {
    color: #0f3460;
    opacity: 0;
    flex-shrink: 0;
    margin-top: 2px
}

.ditem.sel .dchk {
    opacity: 1
}

.cal-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border: 1.5px solid #e4e4e4;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    z-index: 1000;
    padding: 16px;
    width: 310px;
    display: none
}

.cal-panel.vis {
    display: block
}

.cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.cal-head span {
    font-size: 15px;
    font-weight: 600;
    color: #111
}

.cal-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e4e4e4;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    line-height: 1;
    transition: background 0.1s
}

.cal-nav:hover {
    background: #f0f0f0
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px
}

.cal-dow {
    font-size: 12px;
    color: #999;
    text-align: center;
    padding: 4px 0;
    font-weight: 500
}

.cal-day {
    font-size: 13px;
    text-align: center;
    padding: 7px 2px;
    border-radius: 50%;
    cursor: pointer;
    color: #111;
    transition: background 0.1s
}

.cal-day:hover:not(.disabled):not(.other) {
    background: #f0f5ff
}

.cal-day.today {
    background: #e6eeff;
    color: #0f3460;
    font-weight: 600
}

.cal-day.picked {
    background: #0f3460;
    color: #fff;
    font-weight: 600
}

.cal-day.other {
    color: #ccc
}

.cal-day.disabled {
    color: #ddd;
    cursor: default;
    pointer-events: none
}

.trav-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: -68px;
    background: #fff;
    border: 1.5px solid #e4e4e4;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    z-index: 1000;
    padding: 16px 20px;
    min-width: 300px;
    display: none
}

.trav-panel.vis {
    display: block
}

.trow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5
}

.trow:last-child {
    border-bottom: none
}

.tlabel {
    font-size: 15px;
    font-weight: 600;
    color: #111
}

.tsub {
    font-size: 12px;
    color: #888;
    margin-top: 1px
}

.counter {
    display: flex;
    align-items: center;
    gap: 14px
}

.cbtn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.1s
}

.cbtn:hover:not(:disabled) {
    background: #f0f5ff;
    border-color: #aac0e8
}

.cbtn:disabled {
    color: #ddd;
    cursor: default;
    border-color: #f0f0f0
}

.cval {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    min-width: 20px;
    text-align: center
}

.swap-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    margin-bottom: 6px;
    transition: background 0.1s
}

.swap-btn:hover {
    background: #f0f5ff
}

.swap-btn svg {
    width: 15px;
    height: 15px
}

.trip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem
}

.radios {
    display: flex;
    align-items: center;
    gap: 20px
}

.rlabel {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #555;
    cursor: pointer
}

.rlabel input[type=radio] {
    accent-color: #0f3460;
    width: 15px;
    height: 15px
}

.btn-action {
    height: 48px;
    padding: 0 32px;
    background: #0f3460;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.15s
}

.btn-action:hover {
    background: #1a4a80
}

.class-item {
    padding: 11px 14px;
    font-size: 14px;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.1s
}

.class-item:hover {
    background: #f0f5ff
}

.class-chk {
    color: #0f3460;
    opacity: 0;
    font-size: 14px
}

.class-item.sel .class-chk {
    opacity: 1
}

.p-relative1 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    column-gap: 20px;
    padding: 10px;
    padding-bottom: 5px;
}

.togo-btn-primary {
    padding: 11px 26px 8px;
}

.togo-hero-11-input-box {
    width: 68%;
    background-color: #d7e5fa80 !important;
    border-radius: 16px;
    position: relative !important;
}

.togo-hero-11-input-title {
    display: none;
}

.text-p {
    display: none;
}



.togo-hero-11-input-search-wrap input {
    width: 100%;
    cursor: pointer;
}

.togo-hero-11-input-search {
    width: 200px;
}

.togo-header-menu>nav>ul>li>a {

    color: #ffffff;
}

.togo-hero-5-bg {
    height: 123vh;
}


@media (max-width: 768px) {

    .togo-hero-11-input-box {
        background-color: #d7e5fa80 !important;
        border-radius: 16px;
        width: 100%;
        margin-top: 0px !important;
        padding: 24px 20px !important;
    }

    .togo-hero-11-input-title,
    .text-p {
        display: none;
    }

    .togo-hero-11-input-title {
        font-size: 22px;
        font-weight: 700;
        color: #111111;
        margin-bottom: 6px;
    }

    .text-p {
        font-size: 14px;
        color: #888888;
        margin-bottom: 20px;
    }

    /* Stack vertically */
    .togo-hero-11-input-wrapper {
        flex-direction: column !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 12px !important;
    }

    /* Each field becomes a card row */
    .togo-hero-11-input-search {
        width: 350px !important;
        background: #ffffff52 !important;
        border: 1px solid #e8e8e8 !important;
        border-radius: 12px !important;
        padding: 14px 16px !important;
        gap: 12px;
    }

    /* Remove all directional borders */
    .togo-hero-11-input-search:last-of-type {
        border: 1px solid #e8e8e8 !important;
    }

    /* Label */
    .togo-hero-11-input-search-wrap p {
        font-size: 13px;
        font-weight: 600;
        color: #111111;
        margin-bottom: 3px;
    }

    /* Input */
    .togo-hero-11-input-search-wrap input::placeholder {
        font-size: 14px;
        color: #aaaaaa;
    }

    /* Button — full width rounded */
    .togo-hero-11-input-btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 4px;
    }

    .togo-hero-11-input-btn .togo-btn-primary {
        width: 100% !important;
        height: 52px !important;
        border-radius: 50px !important;
        background-color: rgb(19, 142, 193) !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: white !important;
    }

    .togo-hero-5-title {
        font-size: 39px;
    }

    .togo-header-logo {
        margin-top: -50px;
    }

    .ml-20 {
        margin-top: -56px;
    }

    .togo-hero-5-bg {
        height: 143vh;
    }
}