﻿/* ===================== GLOBAL / GENERIC ===================== */

a:hover {
    text-decoration:none!important;
}

html {
    scroll-behavior: smooth;
}

/* Generic form styling used in the popup form */
input,
select,
textarea,
.form-control,
.form-control:focus,
textarea:focus,
input:focus {
    color: rgb(100, 100, 100)!important;
    font-size:12px!important;
}

/* Placeholders */
input::placeholder {
    font-size: 12px;
    font-family: "Montserrat";
    color: rgb(100, 100, 100);
    line-height: 1;
    text-align: left;
}

/* Scrollbar (nice to have, global) */
::-webkit-scrollbar-track {
    border-radius: 15px;
}
::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background:rgb(28, 157, 173);
}

/* Small utility */
.pb-4px{
    padding-bottom: 4px;
}

/* ===================== PAGE STRUCTURE ===================== */

.page_section {
    scroll-snap-align: start!important;
    scroll-margin-top: 180px!important;
    padding:0 !important;
}

#Itinerary-info {
    background: #f5fcfd !important;
    padding: 30px 0;
}

/* Banner image at the top */
.banner {
    width: 100%;
    min-height: 394px;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fake tag <section1> used in your HTML */
section1{
    display: block;
    padding: 50px 0;
    overflow: hidden;
}

/* ===================== TOP TITLE BAR ===================== */

#title-blue {
    background-color: rgb(28, 157, 173);
    height: auto;
    padding:15px 0 !important;
}

#title-blue .title1 {
    font-size: 14.5px;
    font-family: "Montserrat";
    color: rgb(255, 255, 255);
    line-height: 1.6;
    text-align: left;
}

#title-blue .title2 {
    font-size: 24px;
    font-family: "Montserrat";
    color: rgb(255, 255, 255);
    line-height: 1.2;
    text-align: left;
    padding: 0 0 5px;
}

/* Ratings text near title */
.rating-score {
    color: #fff;
    font-size: 14.445px;
    font-family: "Montserrat";
    line-height: 2.354;
    text-align: left;
    text-decoration:none;
}
.rating-score1,
.rating-score1:hover {
    font-size: 12px;
    font-family: "Montserrat";
    color:#fff;
    text-decoration:none;
    cursor:pointer;
    text-align: left;
    font-weight: 500;
}

/* ===================== STICKY NAV (Itinerary / Flight / Hotel / ...) ===================== */

#nav-info1 {
    padding: 0 0;
    background-color:#fff;
    box-shadow: 0 7px 8px rgba(11, 40, 39, 0.02);
}

#nav-info1 .sec_scroll {
    height: auto;
}

#nav-info1 ul {
    display: block;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding:12px 0 !important;
    margin:0 !important;
}

#nav-info1 ul li {
    display: inline-block;
    cursor: pointer;
    background-color: rgb(242, 250, 252);
    color:rgb(6, 44, 44);
    padding: 9.5px 15px;
    width: auto;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
    text-transform: none;
    margin-left:10px;
    transition: background-color 0.3s, color 0.3s;
}

#nav-info1 ul li:last-child {
    margin-right:10px;
}

#nav-info1 ul li a{
    font-size: 14px;
    color: #000;
    text-decoration:none;
}

#nav-info1 ul li.active {
    background-color: rgb(253, 197, 18);
    color: rgb(6, 44, 44);
    border-radius: 6px;
}

#nav-info1 ul li.active a{
    color: rgb(6, 44, 44);
    text-decoration:none;
}

/* ===================== ITINERARY CARD & TIMELINE ===================== */

.card-itinerary {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 10px;
    margin-bottom: 1.3rem;
}

.header-card3 {
    padding: .5rem 1.7rem;
    font-size: 18px;
    color: rgb(255, 255, 255);
    border-radius: 6px 6px 0 0;
    background-color: rgb(169, 222, 234);
}

.header-card1 {
    padding:.5rem 1.7rem;
    font-size: 18px;
    color: rgb(255, 255, 255);
    border-radius: 6px 6px 0 0;
    background-color: rgb(169, 222, 234);
}

.Tour_package_itinerary {
    font-size: 16.9px;
    font-family: "Montserrat";
    color: rgb(0, 0, 0);
    line-height: 2.05;
    text-align: left;
}

/* Timeline container */
.timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    padding-left: 25px;
}

/* dot */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 2px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(169, 222, 234);
    z-index: 1;
}

.timeline-item.active::before {
    background-color:rgb(28, 157, 173);
    transform: scale(1.3);
    width: 8px;
    height: 8px;
    left: 1.8px;
}

/* vertical line */
.timeline-item::after {
    content: "";
    position: absolute;
    top: 27px;
    left: 5px;
    width: 1px;
    height: 100%;
    background: rgb(169, 222, 234);
}

/* remove line for last item */
.timeline-item:last-child::after {
    display: none;
}

.tab-header {
    cursor: pointer;
    padding:1rem 0 1rem 0 !important;
    border: 0;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom:1px solid rgb(212, 238, 244);
}
.timeline-item.active .tab-header {
    border-bottom:0;
}

.tab-header h3 {
    margin: 0;
    font-size: 14px;
    line-height:20px;
}
.tab-header h3 .day {
    font-weight:500;
}

/* Chevron icon */
.chev {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("../images/down-icon.svg");
    background-size: 0.6rem 0.6rem !important;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease-in-out;
}

/* Rotate on active */
.timeline-item.active .chev {
    transform: rotate(180deg);
}

.tab-content {
    display: none;
    padding: 10px 37px 20px 0;
    margin-left: 0;
    border-bottom:0;
    scroll-snap-align: start!important;
    scroll-margin-top: 200px!important;
}
.timeline-item.active .tab-content {
    display: block;
    border-bottom:1px solid rgb(212, 238, 244);
}

/* Itinerary paragraph */
.content-text1 {
    font-size: 12px;
    font-family: "Montserrat";
    color: rgb(50, 50, 50);
    line-height: 1.667;
    text-align: justify;
}

/* Itinerary images */
.responsive-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===================== FLIGHT SECTION ===================== */

#flight-detail1 {
    margin-top: 8px;
    padding-bottom: 20px !important;
    border-radius: 6px;
}

.flight-option-title {
    font-size: 15px;
    font-family: "Montserrat";
    color: rgb(6, 44, 44);
    font-weight: 500;
    display:block;
    line-height:0.9;
}

.flight-option-subtitle {
    font-size: 12px;
    font-family: "Montserrat";
    color: rgb(75, 75, 75);
    line-height: 1;
    text-align: left;
}

#calendar {
    padding:2px 4px 2px 0px !important;
    font-size: 11px;
}
#clock {
    padding:3px 6px 3px 0px !important;
    font-size: 11px;
}

/* flight arrow image */
.fly-img {
    width: 84%;
}
.img-flight {
    position: absolute;
    top: -1px;
    left: 10px;
}

/* “Showing available flight option(s)” line */
.Showing-flight {
    font-size: 11px;
    font-family: "Montserrat";
    color: rgb(100, 100, 100);
    padding:1px 27px 10px;
    text-align: left;
}

/* ===================== HOTEL SECTION ===================== */

#hotel-detail {
    border:0;
    margin-top:8px;
}
#hotel-detail .card-body {
    padding:9px;
}

.hotel-detail-title {
    font-size: 15px;
    font-family: "Montserrat";
    color: rgb(6, 44, 44);
    font-weight: 500;
    text-align: left;
}
.sub-title-Hotel {
    font-size: 13px;
    font-family: "Montserrat";
    color: rgb(0, 0, 0);
    text-align: left;
    display: inline-block;
}

/* “Showing available Hotel option(s)” line */
.Showing-hotel {
    font-size: 11px;
    font-family: "Montserrat";
    color: rgb(100, 100, 100);
    padding:5px 27px 10px;
    text-align: left;
}

/* ===================== ADD-ONS SECTION ===================== */

#holidays-detail {
    border:0;
    margin-top:7px;
    padding: 15px 26px 15px !important;
}
#holidays-detail .card-body {
    padding: 6px 21px 12px !important;
}

.holidays-checkbox {
    padding:15px 0px 8px 9px!important;
}

.holidays-title {
    font-size: 15.2px;
    font-family: "Montserrat";
    color: rgb(6, 44, 44);
    font-weight: 500;
    line-height: 1.333;
    text-align: left;
    padding-top: 12px;
}

/* Price text inside add-on cards */
.rate-box-text {
    font-size: 12px;
    font-family: "Montserrat";
    color: rgb(0, 0, 0);
    line-height: 1.333;
    display:block;
    padding-top:8px;
}
.rate-box-text1 {
    font-size: 16px;
    font-family: "Montserrat";
    color: rgb(0, 0, 0);
    font-weight:600;
    text-align: center;
}

/* Custom checkbox styling used for add-ons */

input[type=checkbox] {
    display: none;
}
input[type=checkbox] + label {
    display: inline-block;
    position: relative;
    padding: 7px;
    background-color: rgb(242,244,248);
    border-radius: 4px;
    border: 1px solid rgb(206, 208, 218);
    width: 8px;
    height: 8px;
}
input[type=checkbox]:checked + label {
    background-color: #fdc512;
    color: #A4B7C6;
}
input[type=checkbox]:checked + label:after {
    position: absolute;
    left: 3px;
    top: 0;
    color: #fff;
    font-weight:900;
    content: '\2714';
    font-size: 11px;
}
input[type=checkbox]:not(:checked){
    opacity:0.5;
}

/* ===================== INCLUSIONS & EXCLUSIONS ===================== */

#Incl-detail {
    border: 0;
    margin-top: 7px;
    padding: 15px 26px 15px !important;
    display: block;
}

.inclustions {
    font-size: 15px;
    font-family: "Montserrat";
    color: rgb(0, 0, 0);
    text-transform: uppercase;
}

/* Speech bubble icon */
.dialog_box {
    position: relative;
    padding: 8px;
    border-radius: 6px;
    background-color: rgb(56, 139, 158);
    color:#fff;
    width: auto;
    height: auto;
    text-align:center;
}
.dialog_box:after,
.dialog_box:before {
    border:10px solid  rgb(56, 139, 158);
    content: "";
    height: 0;
    width: 0;
    position: absolute;
}
.dialog_box:after {
    border-width: 0;
}
.dialog_box:before {
    border-width: 8px;
}
/* Arrow pointing right */
.dialog_box.right:after,
.dialog_box.right:before {
    left: 100%;
    top: 50%;
}
.dialog_box.right:after {
    border-color: transparent transparent transparent  rgb(56, 139, 158);
    margin-top: -4px;
}
.dialog_box.right:before {
    border-color: transparent transparent transparent  rgb(56, 139, 158);
    margin-top: -8px;
}

/* Inclusion checklist */
.check-list1 ul {
    list-style: none;
    padding-left: 0;
    padding-top:20px;
    width:90%;
}
.check-list1 ul li {
    position: relative;
    padding-left: 1.5em;
    font-size: 13px;
    margin-bottom:5px;
}
.check-list1 ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    width: 1em;
    height: 1em;
    font-weight:bold;
    color: rgb(56, 139, 158);
}

/* Exclusion checklist */
.check-list-wrong ul {
    list-style: none;
    padding-left: 0;
    padding-top:20px;
    width:90%;
}
.check-list-wrong ul li {
    position: relative;
    padding-left: 1.5em;
    font-size: 13px;
    margin-bottom:5px;
}
.check-list-wrong ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    width: 1em;
    height: 1em;
    font-weight:bold;
    color: rgb(56, 139, 158);
}

/* ===================== SIDEBAR PRICE CARD ===================== */

.sidebar-item {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.make-me-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 225px;
    padding: 0 15px;
}

#third {
    display:none;
}

.price-content {
    border-radius: 6px;
    background-color: rgb(255, 255, 255);
    margin-left: 15px;
    padding:32px 37px;
    box-shadow: 0 0 8px rgba(11, 40, 39, 0.05);
}

.Package_Price {
    font-size: 14px;
    font-family: "Montserrat";
    color: rgba(19, 108, 119, 0.702);
    line-height: 1.714;
    text-align: center;
}

.price-value1,
.price-value2 {
    font-size: 18px;
    font-weight: normal;
    color: #002d2d;
}

.price1,
.price2 {
    font-size: 28px;
    color: rgb(6, 44, 44);
    line-height: 0.96;
    text-align: center;
    font-weight:500;
}

.All_Inclusive {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.702);
    line-height: 2.5;
    text-align: center;
}

/* Check-in / Check-out block */
.check-in {
    display:block;
    border-top:1px solid  #ccd5d9;
    border-bottom:1px solid  #ccd5d9;
    padding: 16px 0;
    margin: 15px 0 0;
}
.check-1 {
    border-right:1px solid #ccd5d9;
    padding-left: 18px !important;
}
.check-2 {
    padding-left: 17px !important;
}

.check-in-text {
    font-size:12px;
    color: rgb(0, 0, 0);
}
.check-in-text2 {
    font-size: 16px;
    font-family: "Montserrat";
    padding-bottom: 2px;
    text-align: left;
}

/* Icons row below check-in */
.check-icons {
    margin-top:20px;
}
.Airport-icon {
    font-size:9px;
}

/* Buttons under price card */
.button-book1 {
    margin-top:15px;
}

/* Border button “Send Enquiry” */
.btn-borderline,
.btn-borderline:hover,
.btn-borderline:focus {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.714;
    background: #fff;
    color: rgb(6, 44, 44);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border:1px solid rgb(223, 227, 233);
    border-radius: 6px;
    padding: 11px 0;
    width: 100%;
    font-size: 14px;
    font-variant: normal;
}

/* Yellow “Book Now” button in sidebar */
.btn-yellow-1,
.btn-yellow-1:hover,
.btn-yellow-1:focus {
    font-size: 14px;
    font-variant:normal;
    outline: none;
    word-break: break-word;
    background: #fec508;
    color: #151d36;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    padding: 11px 0;
    border-radius: 5px;
    width: 100%;
    border:none;
    font-family: "Montserrat";
    display: block;
}

/* ===================== MOBILE FIXED BOTTOM BAR ===================== */

.anchor {
    display: block;
    height: 92px;
    margin-top: -92px;
    visibility: hidden;
}

/* “Price starting from” text */
.price-label2 {
    font-size: 12px;
    font-family: "Montserrat";
    color: rgb(100, 100, 100);
    line-height: 1.714;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* small arrow icon in that line */
.icon-img {
    width: 15px;
    height: auto;
    margin-left: 6px;
    border-radius: 50%;
    vertical-align: middle;
}

/* Mobile bottom “Book this trip” button */
.btn-enquiry-yellow2,
.btn-enquiry-yellow2:hover,
.btn-enquiry-yellow2:focus {
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    padding: 11px 0;
    width: 100%;
    height: 100%;
    font-size: 13px;
    word-break: break-word;
    background: #fec508;
    color: #151d36;
    border: none;
}

/* ===================== POPUP / MODAL FORM ===================== */

#exampleModal-2 { /* bootstrap handles show/hide; we just style internals */ }

#title-content-popup {
    background-color: rgb(28, 157, 173);
    background-image:url('../images/Bg-popup.jpg');
    background-size: 230px 100%;
    width:230px;
    min-height:380px;
    padding: 15px 0 !important;
    border-radius:10px 0 0 10px;
}

.title-booking {
    font-size: 20px;
    font-family: "Montserrat";
    color: rgb(0, 0, 0);
    line-height:28px;
    text-align: left;
}

.content-block-popup {
    padding:20px 30px;
}

/* Close button image */
.close img {
    width:30px;
    height:30px;
}

/* intl-tel-input plugin tweaks for #telephone */

.iti-flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/10.0.2/img/flags.png");
}

body .intl-tel-input .flag-container {
    position: static;
}
body .intl-tel-input .selected-flag {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
}
body .intl-tel-input .country-list {
    width: 100%;
    top: 100%;
}

.iti {
    display: block!important;
}
.iti__flag-container {
    position: static!important;
}
.iti__selected-flag {
    position: absolute!important;
    top: 50%;
    left: 2px!important;
    transform: translateY(-50%);
    height: 100%;
}
.iti__country-list {
    width: 100%;
    top: 100%;
    max-height: 150px!important;
    font-family: "Montserrat"!important;
}
.iti--separate-dial-code .iti__selected-flag {
    height: 65%!important;
    background-color:#fff!important;
    border-right: 1px solid #8dcdd7!important;
}
.iti__dial-code {
    font-size: 12px!important;
}
.iti__arrow {
    margin-right: 5px;
    border-left: 5px solid transparent!important;
    border-right: 5px solid transparent!important;
    border-top: 6px solid #8dcdd7!important;
}
.iti--allow-dropdown input,
.iti--separate-dial-code input {
    padding-left:102px!important;
}
.iti__arrow--up {
    border-top: none!important;
    border-bottom: 6px solid #8dcdd7!important;
}
.iti--separate-dial-code .iti__selected-dial-code {
    font-family: "Montserrat"!important;
    color: rgb(100, 100, 100)!important;
    font-size: 12px!important;
}
.iti__flag-box,
.iti__country-name {
    font-size: 12px!important;
}

/* Form controls inside popup */

.form-control {
    height: 43px;
    color: rgb(100, 100, 100);
    border:2px solid #e1f2f4!important;
    border-radius:8px!important;
}

select>option {
    color: rgb(100, 100, 100);
}

/* Bootstrap .form-select on popup */
.form-select {
    border:2px solid #e1f2f4!important;
    border-radius:8px!important;
    background-image: url('../images/drop.png')!important;
    background-size: 9px 6px!important;
    color: rgb(100, 100, 100)!important;
    font-size: 12px!important;
    height: 43px!important;
}
.form-select:focus {
    outline:none !important;
    box-shadow: none !important;
}

/* Modal box */
.modal-content {
    border-radius:10px !important;
}

/* Submit button inside popup */
.btn-enquiry-yellow1,
.btn-enquiry-yellow1:hover,
.btn-enquiry-yellow1:focus {
    font-size: 13px;
    outline: none;
    word-break: break-word;
    background: #fec508;
    color: #151d36;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    padding: 11px 15px;
    border-radius: 5px;
    font-weight: 500;
    width: auto;
    border: none;
    text-transform: uppercase;
    display: block;
}

/* Validation placeholders for select */
select:invalid,
select option[value=""] {
    color: #999999;
}
option {
    color: #000;
}

/* ===================== RESPONSIVE ===================== */

@media all and (max-width: 1402px) {
    .price-content {
        margin-left: 1px;
    }
}

@media (max-width: 1202px) {
    .price-content {
        padding: 22px 17px;
        margin-left: 1px;
    }
}

/* <= 992px (tablet & below) */
@media all and (max-width: 992px) {

    .page_section {
        scroll-snap-align: start!important;
        scroll-margin-top: 80px!important;
        padding:0 !important;
    }

    /* sidebar becomes normal block, no sticky margin left */
    .sidebar-item {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .make-me-sticky {
        position: relative;
        top: 225px;
        padding: 0 0 18px;
    }

    .Tour_package_itinerary {
        font-size: 14px;
        line-height: 20px;
    }

    .modal-content {
        border-radius:10px 10px 0 0 !important;
    }

    #nav-info1 ul {
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-bottom: 10px;
    }

    .fly-img {
        width:50%;
    }

    #title-blue {
        background-color: rgb(28, 157, 173);
        height:auto;
        padding: 20px 0 !important;
    }
}

/* <= 768px (mobile) */
@media all and (max-width: 768px) {

    #title-blue .title2 {
        font-size:22px;
    }
    #title-blue .title1 {
        font-size:12.5px;
    }

    .tab-content {
        scroll-snap-align: start!important;
        scroll-margin-top: 100px!important;
        padding:10px 15px 20px 0;
    }

    #nav-info1 ul {
        padding:12px 10px !important;
    }
    #nav-info1 .sec_scroll {
        padding:0 !important;
    }

    .timeline-item.active::before {
        left: 1px;
    }
    .timeline-item::before {
        left: 2px;
    }

    .price2 {
        font-size: 26px;
        color: rgb(6, 44, 44);
        line-height: 0.96;
        text-align: center;
        font-weight: 500;
    }
    .price-value2 {
        font-size: 16px;
        color: #002d2d;
    }
    .price-label2 {
        font-size: 11px;
        color: rgb(100, 100, 100);
        gap: 1px;
    }

    .btn-borderline,
    .btn-borderline:hover,
    .btn-borderline:focus {
        border: 1px solid #dee3e3;
    }

    .price-content {
        padding: 22px 17px;
        margin-left:0;
    }

    .responsive-img {
        max-height: 300px;
    }

    /* Popup tweaks for small screens */
    .content-block-popup {
        padding: 20px 15px;
    }
    .btn-enquiry-yellow1,
    .btn-enquiry-yellow1:hover,
    .btn-enquiry-yellow1:focus {
        width:100%;
    }
    .title-booking {
        font-size: 17px;
    }

    .iti {
        display: block!important;
    }
    .iti__flag-container {
        position:absolute!important;
    }
    .iti__country-list {
        max-height: 100%!important;
        width: 100%!important;
    }
    .iti__selected-flag {
        position: relative!important;
        top: 50%;
        left: 2px!important;
        transform: translateY(-50%);
        height: 100%;
    }
    .iti--separate-dial-code .iti__selected-flag {
        height: 77%!important;
        background-color:#fff!important;
    }

    .fly-img {
        width:78%;
    }
    .img-flight {
        position: absolute;
        top: -3px;
        left: 10px;
    }

    #Itinerary-info {
        padding: 7px 0;
    }

    .banner {
        min-height: auto;
    }

    .form-control,
    select {
        height: 44px;
    }
}
