﻿/* In your CSS file */
@font-face {
    font-family: 'Whitney-Book';
    src: url('../css/fonts/Whitney-Book.woff2') format('woff2'),
        url('../css/fonts/Whitney-Book.woff') format('woff');
}

@font-face {
    font-family: 'Whitney-Light';
    src: url('../css/fonts/Whitney-Light.woff2') format('woff2'),
        url('../css/fonts/Whitney-Light.woff') format('woff');
}

@font-face {
    font-family: 'Whitney-Semibold';
    src: url('../css/fonts/Whitney-Semibold.woff2') format('woff2'),
        url('../css/fonts/Whitney-Semibold.woff') format('woff');
}

body {
    margin: 0;
    font-family: 'Whitney-Book', sans-serif;
    color: #262626;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 7.5px;
    font-weight: 600;
}
h1{
    font-size: 26px;
}
h2{
    font-size: 22px;
}
h3{
    font-size: 20px;
}
h4{
    font-size: 20px;
}
h5{
    font-size: 18px;
}
p {
    margin-top: 0;
}

a {
    color: #262626;
    text-decoration: none
}
ul{
    list-style: none;
}

strong,
b {
    font-family: 'Whitney-Semibold', sans-serif;
}

sup {
    color: #ff8b00;
}

.txt-center{
    text-align:center
}
.is--orange {
    color: #ef6e10;
}

.is--font-20 {
    font-size: 20px;
}

.is--font-26 {
    font-size: 26px;
}

.is--marbtm-5 {
    margin-bottom: 5px;
}

.container {
    max-width: 1170px;
    margin: 0 auto
}

/* header */
.header {
    position: fixed;
    width: 100%;
    z-index: 3;
    top: 0;
    background: #454545;
}
header.header.fixed {
    background: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
}

.header ul {
    margin: 0;
    padding: 0;
    list-style: none;    
    position: fixed;
    top: 0;
    right: -70%;    
    width: 70%;   
    height: 100%;
    transition: right 0.3s ease-in-out;    
    z-index: 2;
}

.header ul li {
    position: relative;
    border-bottom: #ccc 1px solid;
}

.header ul li.dropdownmenu {
    position: relative;
}

    .header ul li.dropdownmenu::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 18px;
        border: solid #fff;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 2px;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }
.header.fixed ul li.dropdownmenu::after {
    content: "";    
    border: solid #2d2d2d;
    border-width: 0 2px 2px 0;  
}

.header li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color:#fff;
    font-weight:600
}
.header.fixed li a {   
    color: #2d2d2d
}
.header ul ul {
    display: none;
    width: 100%;
    background: #fff;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10000;
}
.header ul ul li{
    border-bottom: 0;
}

    .header ul ul li a {
        text-align: left;
        padding: 10px 15px;
        border-bottom: 1px solid #e3e3e3;
        color: #2d2d2d;
    }
.header ul ul li a:last-of-type {    
    border-bottom: 0;
}

.header ul ul li a:hover {
    background: #e4e4e4;
}

/* Display Dropdowns on Hover */
.header ul li:hover>ul {
    display: inherit;
}

.header ul ul li {
    float: none;
    display: list-item;
    position: relative;
}

.header .logo {
    float: left;
    padding: 0;
}

.header .logo img {
   
    margin-left: 5px;
}

/* menu icon */
.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 15px 5px;
    position: relative;
    user-select: none;
    z-index: 10000;
}

.header .menu-icon .navicon {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}
.header.fixed .menu-icon .navicon {
    background: #666;
    
}

    .header .menu-icon .navicon:before,
    .header .menu-icon .navicon:after {
        background: #fff;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
.header.fixed .menu-icon .navicon:before,
.header.fixed .menu-icon .navicon:after {
    background: #666;
    content: '';
   
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}

/* menu btn */
.header .menu-btn {
    display: none;
}

.header .menu-btn:checked~.menu {
    right: 0;
        z-index: 9999;
    /* Menu comes in from the right */
}

.header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
}

.header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        top: 0;
        background: #666;
    }

/* Overlay effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);    
    transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
    z-index: 10;
    display:none
}

.header .menu-btn:checked~.overlay {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
}

/* Default hidden overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998; /* Below menu but above content */
}

/* Show overlay when menu is checked */
.header .menu-btn:checked ~ .menu,
.header .menu-btn:checked ~ .menu-overlay {
    visibility: visible;
    opacity: 1;
}
.tfn {
    width: 43%;
    padding: 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto;
}
.tfn_button {
    background: #fff;
    border-radius: 10px;
    width: fit-content;
    padding: 7px;
    display: flex;
    align-items: center;
}

.tfn a {
    text-decoration: none;
    color: #ff8b00;
    font-size: 15px;
}

.herobanner {
    background: #333;
    margin-bottom: 30px;    
    position:relative;
}
    .herobanner:before {
        content: "";
        background: -webkit-linear-gradient(0deg, rgb(5, 48, 76) 0%, rgba(5, 48, 76, 0.1) 100%);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }


.herobanner__content {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    line-height: 32px;    
    text-align: center;
    margin-top:50px;
}
.herobanner__content strong {    
    font-size: 26px;    
}

.herobanner__widget {
    float: left;
    width: 100%;
    margin-bottom: 15px;    
    border-radius: 6px;
    position: relative;
    z-index: 1;    
}

.herobanner__widget__container {
    float: left;
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
}

.custom-radio {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
}

    .custom-radio.active {
        background: var(--brand-sand);
        border-radius: 6px;
        color: #fff;
    }
    .custom-radio.active .widget_label {
        color: #fff;
    }

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked+label,
[type="radio"]:not(:checked)+label {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    padding-left: 0;
}

.widget [type="radio"]:checked+label,
.widget [type="radio"]:not(:checked)+label {
    color: #625350;
    padding: 0;
}

.widget_label {
    display: inline-block;
    font-weight: 700;
    color: #666;
}

#multiCity1,
#multiCity2,
#multiCity3 {
    display: none;
    margin-top: 10px;
}

.is--multicity {
    display: block !important;
}

.departure_icon,
.arrival_icon,
.cal_icon,
.user_icon,
.phone_icon,
.email_icon,
.send_icon, .chat_icon, .location_icon, .time_icon {
    position: relative;
    float: left;
    width: 100%;
}
    .departure_icon:before,
    .arrival_icon:before,
    .cal_icon:before,
    .user_icon:before,
    .phone_icon:before,
    .email_icon:before,
    .send_icon:before, .chat_icon:before,
    .location_icon:before, .time_icon:before {
        position: absolute;
        left: 5px;
        top: 10px;
        content: "";
        font-size: 22px;
        color: #666;
        width: 20px;
        height: 20px;
    }

.departure_icon:before {    
    background: url(/Content/images/icons/departure.svg) no-repeat 0 0;    
}

.arrival_icon:before {    
    background: url(/Content/images/icons/arrivals.svg) no-repeat 0 0;   
}
    .cal_icon:before {        
        top: 11px;        
        background: url(/Content/images/icons/calendar.svg) no-repeat 0 0;
        width: 18px;
        height: 18px;
    }
    .user_icon:before {
        background: url(/Content/images/icons/user.svg) no-repeat 0 0;
    }

    .phone_icon:before {
        top: 12px;
        width: 18px;
        height: 18px;
        background: url(/Content/images/icons/phone.svg) no-repeat 0 0;
    }

    .email_icon:before {
        top: 10px;
        width: 18px;
        height: 18px;
        background: url(/Content/images/icons/email.svg) no-repeat 0 0;
    }

    .chat_icon:before {
        background: url(/Content/images/icons/chat.svg) no-repeat 0 0;
    }
    .location_icon:before {
        background: url(/Content/images/icons/location.svg) no-repeat 0 0;
    }
.time_icon:before {
    background: url(/Content/images/icons/time.svg) no-repeat 0 0;
}

input[type="text"] {
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #d1d1d1;
    transition: .3s border-color;
    height: 38px;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
    padding-left: 25px;
}
.contact input[type="text"] {
    width: 100%;  
    padding-left: 30px; 
}



.addflights,
.deleteflights {
    text-align: right;
    color: #373737;
    text-decoration: none;
    display: none;
    float: right;
    margin-left: 10px;
}

.travelers {
    font-size: .75rem;
    position: relative;
    border-radius: 0.5rem;
    margin: 0px 0 5px;
}

.travelers.traveler-active {
    background: #FFF;
    border-radius: 6px 6px 0 0;
    border-bottom: 0;
}

.travelers a.form-control {
    color: #313541;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
    padding: 5px 10px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    display: block;
    height:36px
}

.travelers a.form-control:after {
    transition: all .2s linear;
    border: solid #505050;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    content: "";
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 10px;
    right: 12px;
}

.traveler-section {
    background: #fff;
    border: 1px solid #b9bec2;
    box-shadow: 0 0 1rem rgba(0, 0, 0, .25);
    border-radius: 0px 0 8px 8px;
    padding: 0px 10px 10px;
    width: 270px;
    z-index: 10000;
    position: absolute;
    right: 0;
    top: 30px;
    display: none;
}

.traveler-active .traveler-section {
    display: block;
}

.travelers__title {
    color: #313541;
    display: block;
    font-size: 12px;
    font-weight: 700;
    padding: .375rem 0 .25rem;
    white-space: nowrap;
}

.travelers__plus-minus {
    border: none;
    background: #ccc;
    color: #313541;
    display: block;
    float: left;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s linear;
    font-size: 14px;
    width: 20%;
    height: 25px;
    margin-right: 0;
}

.travelers__value {
    background: #fff;
    color: #313541;
    display: block;
    float: left;
    width: 60% !important;
    height: 25px !important;
    margin-right: 0;
    border-radius: 0 !important;
    line-height: 20px;
    padding: 0 !important;
    text-align: center;
}

.select-wrap {
    position: relative;
}

.travelers select {
    border: .0625rem solid #ccc;
    cursor: pointer;
    font-size: 12px;
    padding-left: .25rem;
    box-shadow: none;
    height: 28px;
    line-height: normal;
    padding-top: 5px;
    margin-bottom: 10px;
}

.traveler__button {
    margin-top: 10px;
}

.traveler__button .btn-default {
    padding: 3px 15px;
    float: right;
    width:100%
}

.flexcontainer {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.flexcontainer-left {
    width: 100%;
}

.flexcontainer-right {
    width: 100%;
}
.widget .flexcontainer {
    flex-direction:column
}

.is--wd73 {
    width: 73%;
}

.is--wd23 {
    width: 23%;
}




.page__content {
    margin-top: 30px;
}
.btn-default {
    cursor: pointer;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    padding: 0px 16px;
    height: 40px;
    background: #024f78;
    border: 0;
    font-size: 18px;
    margin-bottom: .125rem;
    line-height: 1.5;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .3);
    position: relative;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
    .btn-default:hover, .btn-default.focus, .btn-default:focus {
        background-color: #dd0000;
        color: #fff
    }

    .send_icon:before {
        content: "";
        width: 20px;
        height: 20px;
        background: url(/Content/images/icons/send.svg) no-repeat 0 0;
        position: absolute;
        left: 25px;
        top: 10px;
        z-index: 1;
        cursor: pointer
    }

.departmc1Container,
.departmc2Container,
.departmc3Container {
    display: none;
}

.is--error {
    background: #fee8bf;
    border: .0625rem dashed #fcc45b;
    color: #dc3545;
    margin-bottom: 10px;
}

.is--error ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.is--error ul li {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: none;
    color: #dc3545;
    position: relative;
}

.popularflightdeals {
    margin-top: 30px;
    width: 100%;
    float: left;
}

.is--commonhd {
    font-size: 32px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 15px;
    color: #2d2d2d;
}

#sidebar.fixed {
    position: sticky;
    top: 90px;
    right: 0;
}

.popular {
    margin: 30px 0;
    float: left;
    width: 100%;
}
.popular-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}
.popular-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s;
}
.popular-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
    .popular-card .label {
        position: absolute;
        bottom: 0;
        background: var(--brand-sand);
        color: white;
        width: 100%;
        padding: 10px 5px;
        font-weight: bold;
        font-size: 14px;
        text-align: center;
    }

.slick-prev:before,
.slick-next:before {
    color: #262626;
}

.slick-next {
    right: -10px;
}

.slick-prev {
    left: 0;
}

.slick-dots li button:before {
    font-size: 0;
    border: #666 1px solid;
    border-radius: 50%;
    width: 18px;
    height: 18px;
}

.slick-dots li.slick-active button:before {
    background: #ff8b00;
}

.popular-destination {
    float: left;
    width: 100%;
}
.popular_places {
    display:flex;
    flex-wrap:wrap;
    flex-direction:column;
    gap:15px
}
.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 100%; /* Ensure cards are equal height */
}

    .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


    .info h3 {
        font-size: 1.2em;
        margin-bottom: 5px;
    }

.card .info .price:empty {
    display: none;
}

/* Responsive Fix */
.row {
    margin-bottom: 0; /* Remove extra margin between rows */
}

    .row > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
.ui-timepicker-standard{
    z-index: 1 !important
}
/* Optional: Control spacing on mobile */

@media (max-width: 768px) {
    .row {
        flex-wrap: wrap;
    }
}
.row.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

    .row.equal-height-row > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }

.card.h-100 {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
    .card.h-100.maldives,
    .card.h-100.roma {
        height: 350px;
    }

    .card.h-100 img {
        flex: 1 1 auto;
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }

    .card.h-100:hover img {
        transform: scale(1.1); /* Smooth zoom */
    }

    .card.h-100::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%; /* Adjust the height as needed */
        background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        transition: background 0.5s ease;
        pointer-events: none;
    }

    .card.h-100:hover::before {
        background: linear-gradient(to center, rgba(0,0,0,0.7), transparent); /* Darker effect on hover */
    }

.card .info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    z-index: 2;
    width: 100%;
}

.price {
    position: absolute;
    top: 0px;
    right: 20px;
    background-color: #00aaff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9em;
    z-index: 2;
}



.usp {
    float: left;
    width: 100%;
    margin-bottom: 30px;
}

.usp__container {
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.usp__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.usp__item {
    display: flex;
    align-items: center;
    border-radius: 6px;
    font-size: 18px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .12);
    padding: 15px;
}
.usp__item img {
    margin-right: 10px
}

    .usp__item h3 {
        color: #ef6e10;
    }

.intro {
    margin: 0;
    float: left;
    width: 100%;
}
.intro ul {        
    padding: 0
}
.intro li {
    list-style: disc;
    
}

.intro-usp {
    padding-left:20px;
}
.intro-usp li {
    list-style:disc
}

.intro__container {
    display: flex;
    justify-content: space-between;
    flex-direction:column
}

.intro-about .intro__container {
    flex-direction: row-reverse;
    flex-direction: column;
}

.intro__image {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
    display:none
}
.intro__image img {
   object-fit:cover;
   border-radius:6px;
}
.intro__textfulllength {
    grid-column: 1 / -1; /* full width across grid */
    width: 100%;
}
.intro__textfulllength ul {
  margin-left:15px
}
.img-box12 {
    position: relative;
}
.global-img {
    position: relative;
    overflow: hidden;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
.img-box12 .img1 {
    max-width: 317px;
    border-radius: 100px;
}
.global-img img {
    width: 100%;
    object-fit: cover;
    -webkit-transition: 1.3s all ease;
    transition: 1.3s all ease;
}
.img-box12 .img1 img {
    width: auto;
    border-radius: 100px;
}
.global-img:after {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    height: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9;
}
.img-box12 .img2 {
    position: absolute;
    bottom: 0;
    left: 40%;
    max-width: 232px;
    border-radius: 85px;
    overflow: hidden;
    background-color: #fff;
    z-index: 2;
}
.img-box12 .img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 85px;
    padding: 8px;
}
.img-box12 .img3 {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 208px;
    border-radius: 85px;
}
.img-box12 .img3 img {
    border-radius: 85px;
}


.intro__text {
    width: 100%;
    text-align: left;
    font-size: 20px;
    line-height: 26px;
}

.intro-about .intro__text {
    font-size: 16px;
    text-align: left;
}

.intro__btn {
    background: #ef6e10;
    color: #fff;
    line-height: 20px;
    padding: 10px 35px;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 600;
    margin: 15px 0;
    border: 0;
}

.intro__btn:hover {
    background: #ff8b00;
    color: #fff !important;
}


.faqs {
    margin: 30px 0 0;
    float: left;
    width: 100%;
}

.faq-container {
    margin: 30px auto 0;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid var(--brand-border);
    font-weight: 600;
    border-radius: 6px;
}

.faq-answer {
    padding: 10px 0;
    display: none;
}
.faq-answer ul {
    padding-left: 15px
}
.faq-answer ul li {
    list-style-type: disc;
}

.arrow {
    transition: transform 0.3s ease;
    border: solid #666;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.arrow.open {
    transform: rotate(226deg);
}

.destination {
    float: left;
    width: 100%;
}

.destination__container {
    display: flex;
    justify-content: space-between;
}

.destination__leftarea {
    width: 100%;
}

.destination__places {   
    float: left;
    width: 100%;
}
.boxcontainer .head {    
    color: #2d2d2d;    
    border-radius: 12px;
    margin-bottom: 20px;
}
    .boxcontainer .head h1 {       
        margin-bottom: 10px;
    }
    .boxcontainer .head p {
        font-size: 16px;
    }

.box {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.box h2 {
    color: #1d3557;
    margin-bottom: 15px;
    font-size: 1.5em;
}


.box ul {
    list-style: none;
    padding-left: 0;
}

.box ul li {
        padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

    .box ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #2ecc71;
        font-weight: bold;
    }
.destination__rightarea {
    display:none;
}

.destination__nav {
    padding: 20px;
}

.destination__navlist {
    padding: 0;
    margin: 0;
    list-style: none;
}

.destination__navlistitem {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.destination__navicon {
    margin-right: 7px;
}

.destination__activities {
   /* display: grid;*/
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.destination__activities_item ul {    
    margin: 0;
    padding: 0;
    list-style: none;    
    gap: 0px 15px;
}

.destination__activities_item ul li {
    position: relative;
    padding-left: 15px;
    line-height: normal;
}

.footer {    
    float: left;
    width: 100%;
    padding: 15px 0 0;
    color: #5f6366;
    margin-top: 30px;
    font-size: 15px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    padding: 0;
}



.footer__container ul,
.footer__container li {
    list-style: none;
    padding: 0;
}

.footer__container li {
    margin-bottom: 7px;
}

    .footer__container a {
        color: #5f6366;
        text-decoration: none;
        display: flex;
        align-items: center;
    }
.logo-white {
    width: 70%;
    margin-bottom: 10px
}


.footer__container a img {
    margin-right: 7px;
}

.copyright {
    text-align: center;    
    padding: 10px 0;
    float: left;
    width: 100%;
    font-size: 13px;
}

.Phone {
    position: relative;
    display: block;
    margin: 0;
    width: 20px;
    height: 20px;
    font-size: 60px;
    background-color: #024f78;
    border-radius: 0.5em;
    box-shadow: 0 0 0 0em rgba(#3498db, 0), 0em 0.05em 0.1em rgba(#000000, 0.2);
    transform: translate3d(0, 0, 0) scale(1);
    margin-right: 5px;
}

.Phone::before,
.Phone::after {
    position: absolute;
    content: "";
}

.Phone::before {
    top: 0;
    left: 0;
    width: .2em;
    height: .2em;
    background-color: rgba(#fff, 0.1);
    border-radius: 100%;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0);
}

.Phone::after {
    top: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0.25em;
    height: 0.25em;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTYuNiAxMC44YzEuNCAyLjggMy44IDUuMSA2LjYgNi42bDIuMi0yLjJjLjMtLjMuNy0uNCAxLS4yIDEuMS40IDIuMy42IDMuNi42LjUgMCAxIC40IDEgMVYyMGMwIC41LS41IDEtMSAxLTkuNCAwLTE3LTcuNi0xNy0xNyAwLS42LjQtMSAxLTFoMy41Yy41IDAgMSAuNCAxIDEgMCAxLjIuMiAyLjUuNiAzLjYuMS40IDAgLjctLjIgMWwtMi4zIDIuMnoiIGZpbGw9IiNmZmZmZmYiLz48L3N2Zz4=);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate3d(0, 0, 0);
}

.Phone.is-animating {
    animation: phone-outer 3000ms infinite;

    &::before {
        animation: phone-inner 3000ms infinite;
    }

    &::after {
        animation: phone-icon 3000ms infinite;
    }
}

@keyframes phone-outer {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow:
            0 0 0 0em rgba(#3498db, 0),
            0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    33.3333% {
        transform: translate3d(0, 0, 0) scale(1.1);
        box-shadow:
            0 0 0 0em rgba(#3498db, 0.1),
            0em 0.05em 0.1em rgba(#000000, 0.5);
    }

    66.6666% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow:
            0 0 0 0.5em rgba(#3498db, 0),
            0em 0.05em 0.1em rgba(#000000, 0.2);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow:
            0 0 0 0em rgba(#3498db, 0),
            0em 0.05em 0.1em rgba(#000000, 0.2);
    }
}

@keyframes phone-inner {
    0% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(0);
    }

    33.3333% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(0.9);
    }

    66.6666% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0);
    }

    100% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0);
    }
}

@keyframes phone-icon {
    0% {
        transform: translate3d(0em, 0, 0);
    }

    2% {
        transform: translate3d(0.01em, 0, 0);
    }

    4% {
        transform: translate3d(-0.01em, 0, 0);
    }

    6% {
        transform: translate3d(0.01em, 0, 0);
    }

    8% {
        transform: translate3d(-0.01em, 0, 0);
    }

    10% {
        transform: translate3d(0.01em, 0, 0);
    }

    12% {
        transform: translate3d(-0.01em, 0, 0);
    }

    14% {
        transform: translate3d(0.01em, 0, 0);
    }

    16% {
        transform: translate3d(-0.01em, 0, 0);
    }

    18% {
        transform: translate3d(0.01em, 0, 0);
    }

    20% {
        transform: translate3d(-0.01em, 0, 0);
    }

    22% {
        transform: translate3d(0.01em, 0, 0);
    }

    24% {
        transform: translate3d(-0.01em, 0, 0);
    }

    26% {
        transform: translate3d(0.01em, 0, 0);
    }

    28% {
        transform: translate3d(-0.01em, 0, 0);
    }

    30% {
        transform: translate3d(0.01em, 0, 0);
    }

    32% {
        transform: translate3d(-0.01em, 0, 0);
    }

    34% {
        transform: translate3d(0.01em, 0, 0);
    }

    36% {
        transform: translate3d(-0.01em, 0, 0);
    }

    38% {
        transform: translate3d(0.01em, 0, 0);
    }

    40% {
        transform: translate3d(-0.01em, 0, 0);
    }

    42% {
        transform: translate3d(0.01em, 0, 0);
    }

    44% {
        transform: translate3d(-0.01em, 0, 0);
    }

    46% {
        transform: translate3d(0em, 0, 0);
    }
}

.adsbanner {
    float: left;
    width: 100%;
    text-align: center;
    margin: 0;
}

.adsbanner__container {
    border: 1px solid #ddd;
    padding: 0;
    border-radius: 6px;
    max-width: 728px;
    margin: 0 auto;
    height: auto;
}

.adsbanner__container img {
    border-radius: 0 6px 6px 0;
    width: 100%;
    height: auto;
}

.blogDetails .flexcontainer {
    justify-content: space-between;
}

.blogDetails .flexcontainer-right {
    margin-top: 30px;
}

.blogcontainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    border-radius: 6px;
    box-shadow: 0px 2px 6px 4px rgba(0, 0, 0, .12), 0 2px 4px 0 rgba(0, 0, 0, .12);
}
.blogcontainer.reverse {
   flex-direction: row-reverse;
}
.blogDetails .blogcontainer {
    flex-direction: column;
    margin-top: 15px;
}

.blog__left {
    width: 48%;
}

.blogDetails .blog__left {
    width: 100%;
}

.blog__left img {
    border-radius: 6px 0 0 6px;
    height: 100%;
    width: 100%;
}
.blogcontainer.reverse .blog__left img {
    border-radius: 0 6px 6px 0;
    float: right;    
}
.blogDetails .blog__left img {
    border-radius: 6px 6px 0 0;
    height: 300px;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.blog__right {
    width: 48%;
    padding: 2% 15px 0 0;
}
.blogcontainer.reverse .blog__right {
    padding: 15px 0 0 15px;    
}

.blogDetails .blog__right {
    width: 96%;
    padding: 2% 2% 0;
}

.blogDetails-right .flexcontainer {
    flex-direction: column;
}

.blogDetails-right input[type="text"] {
    width: 85%;
    padding-left: 35px;
}

.blog-category {
    background: #f1f1f1;
    padding: 15px 0;
    margin-top: -30px;
}
.blog-category ul {    
    list-style: none;  
    margin: 0;
    padding: 0;    
}
.blog-category li {
    font-weight: 600;
    display: inline-block;
    margin-right: 30px;
}
.blog-category li a {
    text-decoration: none;
    position: relative;
}
.blog-category li a.active::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #ff8b00;
}
.blogDetails .blog-category li a::before {
    content: "";
    position: absolute;
    right: -15px;
    top: 9px;
    border: solid black;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);

}
.button {
    float: right;
    padding: 10px;
    border: #ff8b00 1px solid;
    background: #fff;
    font-size: 18px;
    cursor: pointer;   
    display: block;
    width: fit-content;
    text-decoration: none;
}

.blog__right button:hover {
    background: #ff8b00;
    color: #fff;
}

.is--wd75{
    width: 75%;
}
.is--wd25{
    width: 25%;
}
.error-message {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
    display:none
}
.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px;
  }
.legalinfo{
    margin-top: 50px
}
.error1 {
    display: none;
    width: auto;
    z-index: 999;
    bottom: -25px;
    left: 30px;
    color: rgb(254, 0, 0);
    box-shadow: rgb(212, 212, 212) 1px 1px 1px;
    margin-top: 10px;
    font-size: 12px;
    text-transform: capitalize;
    position: absolute !important;
    padding: 2px 5px;
    background: rgb(217, 217, 217);
    border-radius: 0px !important;
}
.antispm {
    display: none;
}
.showthanksPopup {
    display: block !important
}
.full-popup {
    height: 100%;
    overflow: auto;
}

.full-popup:before {
    content: "";
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.7);
}
.intentPopup {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 20%;
    width: 80%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
#thanksPopup.intentPopup, #thanksSubscriptionPopup.intentPopup {
    width: 90%;
}
.intentPopup-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 8px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
#thanksPopup .intentPopup-content {
    width: 100%;
    float: left;
    padding: 0 0 10px;
}
.close, .showthanksPopupClose {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 25px;
    height: 25px;
    color: #323746;
    cursor: pointer;
    z-index: 10000;
    background: #666;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    opacity: 1 !important
}
.close img, .showthanksPopupClose img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 7px;
}

.intentPopup-body {
    text-align: center;
    font-size: 24px;
    color: #222;
    padding: 20px 15px 10px;
    min-height: 350px;
}
#thanksPopup .intentPopup-body, #thanksSubscriptionPopup .intentPopup-body {
    min-height: inherit !important;
    padding-top: 0 !important;
}
.intentPopup-body__text {
    position: relative;
    width: 100%;
    float: left;
}
.intentPopup-body__left {
    float: left;
    width: 65%;
    margin-right: 2%;
}
#thanksPopup .intentPopup-body__left, #thanksSubscriptionPopup .intentPopup-body__left {
    width: 100%;
    margin-right: 0;
}
.intentPopup-body__content {
    float: left;
    text-align: center;
    width: 100%;
    font-size: 23px;
    color: #222;
    padding-top: 20px;
}
    .intentPopup-body__content p {
        line-height: 26px;
        font-size: 20px;
        font-weight: 600;
        color: #333;
    }
    .intentPopup-body__content p {
        line-height: 26px;
    }
    .intentPopup-body__content a .fa-phone:before {
        content: "\f095";
        transform: rotate(90deg);
        top: 15px;
        left: 57px;
        font-size: 18px;
    }
.immediate-assit {
    color: #c42401;
    font-weight: 700;
    font-size: 28px;
    padding-top: 10px;
    display: inline-block;
}
.widget [class*=col-] {
    padding-right: 0;
    padding-left: 0;    
}
.contact__info{
    padding-left:0;
}
textarea {
    padding: 5px 15px 0 35px;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    top: 35%;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    background: url(/Content/images/icons/left_arrow.svg) no-repeat 0 0;
    width: 20px;
    height: auto
}
.ui-datepicker .ui-datepicker-next span {
    transform:rotate(180deg)
}

@media(max-width:340px) {
    .header .logo img {
        width: 140px !important;
    }
    
}
@media(max-width:360px) {
    .header .logo img {
        width: 150px;
    }
    .tfn a {
        font-size: 14px;
    }
}
@media(max-width:767px) {
    
    .header ul {
        background: #fff
    }
    .header li a {
        color: #333;
    }
    .header .logo {
        padding-top: 5px;
    }
    .herobanner {
        background: #ef7011 !important;
        height: auto !important;
        padding-bottom: 15px;
    }
    .departFieldContainer{
        width: 100% !important
    }
    .Phone {
        margin-right: 1px;
    }
    
    .card.h-100 img{
        height:350px
    }
}



@media (min-width: 768px) {
    .container {
        padding-right: 0;
        padding-left: 0;
    }
    .widget [class*=col-] {
        padding-right: .25rem;
        padding-left: .25rem;
    }

    .header .logo {
        padding: 5px 0;
        margin-top: 5px;
    }

    .header ul {
        height: auto;
        /* Disable right-to-left effect for larger screens */
        position: static;
        width: auto;
        transition: none;
        /* Disable sliding for larger screens */
        float: left;
        text-align: center;
        margin: 0 auto;
        width: 60%;
    }
    .header ul li {    
    border-bottom: none;
}
.header ul li.dropdownmenu::after {    
    right: 0;
    top: 27px;    
}

    .header .menu-icon {
        display: none;
    }

    .header li {
        display: inline-block;
    }

    .header li a {
        padding:20px;
    }

    .header ul ul {
        width: 170px;        
        box-shadow: 0px 1px 4px 0px rgba(29, 29, 29, 0.4);
        position: absolute;
        top: 50px;        
        z-index: 10000;
    }

    .tfn {
        width: 20%;
        padding: 10px 0;
        float: right;
    }

    .tfn a {
        font-size: 20px;
    }
    .traveler-section {        
        top: 50px;        
    }

    .Phone {
        width: 30px;
        height: 30px;
    }

    .Phone::before {
        width: .5em;
        height: .5em;
    }

    .Phone::after {
        top: 4px;
        width: 0.35em;
        height: 0.35em;
    }
    .noWidget .herobanner__widget {
        display: none;
    }

    .noWidget .herobanner__content {
        padding: 45px 0;
    }

    .noWidget.herobanner:before {
        top: 0px;
    }
    .noWidget.herobanner {
        height: 330px;
    }
    .herobanner {
        background: #F7B030;
        background: linear-gradient(90deg,rgba(239, 112, 17, 1) 0%, rgba(247, 176, 48, 1) 100%);
        background-size: 100% !important;
        position: relative;
        box-shadow: 0 0 57px rgba(0, 0, 0, .2);
        padding: 45px 0 0;
        background-size: 100%;
    }
    .herobanner__content {
        position: relative;
        z-index: 1;
        color: #fff;
        text-align: left;
        font-size: 32px;
        line-height: 45px;
        margin-bottom: 0;
        margin-top: 50px;
    }       
    .herobanner__content strong {    
    font-size: 30px;    
}
    .intro__image {
        display: inline;
        text-align: right;
    }
    .user_icon:before {       
        top: 10px;
    }
    .flexcontainer {
        flex-direction: row;
    }
    .flexcontainer-left {
        width: 48%;
    }
    .flexcontainer-right {
        width: 48%;
    }
    .widget .flexcontainer {
        flex-direction: row
    }


    .overlay {
        display: none;
        /* Hide overlay for larger screens */
    }
    .usp__container {
             
    }
    .intro {
        margin: 15px 0;        
    }
    .intro__container {        
        flex-direction: row
    }
    .intro__text {        
        padding: 0 30px 0 0;
    }
    .intro-about .intro__container {
        flex-direction: row;
        margin-bottom: 70px;
    }
    .intro-about .intro__container:last-child {       
        margin-bottom: 30px;
    }
    .contact__info {
        padding-left: 30px;
    }
    .contact__info li {
        margin-bottom: 15px;
    }

    .faqs {
        margin: 30px 0;        
    }
    .legalinfo {
        margin-top: 80px
    }
   

    .footer__container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
    .traveler-section {
        width: 500px;
        padding: 10px;
    }
    .travelers__plus-minus {        
        width: 20px;        
    }
    .travelers__value {        
        width: 55px !important;
    }
    .travelers select {        
        margin-bottom: 0;
    }
    .traveler__button .btn-default {        
        width: fit-content
    }
    #thanksPopup.intentPopup, #thanksSubscriptionPopup.intentPopup {
        width: 30%;
    }
    .row.equal-height-row {        
        flex-wrap: nowrap;
    }
    .usp__list {       
        flex-direction: row;
        
    }
    .tfn_button {
        display: flex
    }
    .herobanner__widget {       
        width: 80%;        
    }
        .herobanner__widget.carWidget {
            width: 100%;
        }
    .herobanner_img {       
        display: inline-block
    }
    .ui-timepicker-viewport {
        width: 112.875px !important
    }
}

:root {
    --brand-ink: #082f49;
    --brand-ocean: #0f766e;
    --brand-ocean-deep: #fff;
    --brand-sun: #26957c;
    --brand-sand: #0f766e;
    --brand-mist: #ecfeff;
    --brand-panel: #ffffff;
    --brand-copy: #334155;
    --brand-border: rgba(237 237 237 1);
    --brand-shadow: 0 22px 60px rgba(8, 47, 73, 0.12);
}

body {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.12), transparent 30%),
        linear-gradient(180deg, #f8fffe 0%, #ffffff 30%, #f8fafc 100%);
    color: var(--brand-copy);
}

a {
    color: var(--brand-ink);
}

.header {
    background: #015285;
    backdrop-filter: blur(14px);
}

header.header.fixed {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    z-index: 10000;
}

.tfn_button {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 8px 14px;
}

.header.fixed .tfn_button {
    background: var(--brand-sand);    
}

.tfn a {
    color: #fff;
}
.header.fixed .tfn_button:hover {
    background: -webkit-linear-gradient(0deg, rgb(5, 48, 76) 0%, rgba(5, 48, 76, 0.9) 100%)
}

.header.fixed .tfn a {
    color: var(--brand-ocean-deep);
}

.Phone {
    background-color: transparent;
}

.hero-brand {
    background: #26957c;
}


.hero-brand .container,
.hero-brand .herobanner__content,
.hero-brand .herobanner__widget {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-summary {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.7;
}

.is--orange {
    color: var(--brand-sun);
}

.is--commonhd {
    color: var(--brand-ink);
}

.text-start {
    text-align: left;
}

.btn-default,
.button {
    background: var(--brand-sand);
    border: 0;
    color: #fff;
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.18);
    border-radius: 6px;
}

    .btn-default:hover,
    .btn-default.focus,
    .btn-default:focus,
    .button:hover {
        background: -webkit-linear-gradient(0deg, rgb(5, 48, 76) 0%, rgba(5, 48, 76, 0.9) 100%);
        color: #fff;
    }

.button-inline {
    float: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
    margin-top: 12px;
}

.herobanner__widget,
.box,
.usp__item,
.popularflightdeals__card,
.contact form,
.contact__info,
.intentPopup-content {
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-shadow);
}

.usp__item,
.box,
.popularflightdeals__card,
.contact__info {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    
}

.usp__item h3,
.box h2,
.head h1,
.contact h1,
.contact h2 {
    color: var(--brand-ink);
}

.popularflightdeals__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 18px;
    color: var(--brand-ink);
}

.popularflightdeals__info span:last-child {
    color: var(--brand-copy);
    font-size: 15px;
}

.intro-brand .intro__text,
.destination__activities_item,
.legalinfo .destination__activities_item {
    color: var(--brand-copy);
}

.intro-brand p,
.destination__activities_item p,
.destination__activities_item li,
.legalinfo p,
.legalinfo li {
    line-height: 1.8;
}

.contact-brand .flexcontainer-left,
.contact-brand .contact__info {
    background: rgba(255, 255, 255, 0.94);
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--brand-border);
    box-shadow: var(--brand-shadow);
}

.faq-item {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--brand-border);
    border-radius: 18px;
    margin-bottom: 14px;
    box-shadow: 0 12px 26px rgba(8, 47, 73, 0.08);
}

.faq-question {
    padding: 18px 22px;
}

.faq-answer {
    padding: 0 22px 18px;
    color: var(--brand-copy);
}

.footer {
    
    margin-top: 30px;
}

.logo-white {
    max-width: 100%;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 767px) {
    .header .logo img {
        width: 190px !important;
    }

    .hero-summary {
        font-size: 16px;
    }

    .contact-brand .flexcontainer-left,
    .contact-brand .contact__info {
        padding: 20px;
    }
}

@media (min-width: 768px) {
 

    .herobanner {
        min-height: 360px;
    }

    
}

/* Full visual redesign */
.site-redesign {
    overflow: hidden;
}

.site-redesign .container {
    position: relative;
    z-index: 1;
}



.hero-brand::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 68%);
}

.hero-brand .herobanner__content strong {
    display: block;
    font-size: clamp(30px, 5vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.hero-brand--home .herobanner__content {
    padding-top: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-link {
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-bottom: 2px;
}

.homepage-hero {
    min-height: 560px;
    padding: 120px 0 20px !important;
}

.hero-home-grid {
   
}

.hero-home-copy {
    margin-top: 0;
    text-align: left;
}

.hero-widget-shell {
    position: relative;
    z-index: 2;
}

.hero-widget-shell .herobanner__widget {
    width: 100%;
    margin-bottom: 0;
}

.hero-checklist {
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.hero-checklist li {
    list-style: none;
    padding-left: 26px;
    position: relative;
    color: rgba(255,255,255,.9);
    font-weight: 600;
}

.hero-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,.5));
}

.brand-metrics {
    margin-top: -46px;
    margin-bottom: 34px;
    position: relative;
    z-index: 4;
}

.brand-metrics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.brand-metrics__item {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 20px 45px rgba(8, 47, 73, .12);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 24px 22px;
}

.home-truststrip {
    margin: -18px 0 26px;
    position: relative;   
    z-index: 0;
}

.home-truststrip__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.home-truststrip__item {
    padding: 15px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 118, 110, .08);
    box-shadow: 0 5px 10px rgba(8,47,73,.09);
    text-align: center;
}

.home-truststrip__item strong {
    display: block;
    color: var(--brand-ink);
    font-size: 19px;
    margin-bottom: 6px;
}

.home-truststrip__item span {
    color: var(--brand-copy);
    line-height: 1.55;
}

.brand-metrics__value {
    display: block;
    color: var(--brand-ink);
    font-family: 'Whitney-Semibold', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.brand-metrics__label {
    display: block;
    color: var(--brand-copy);
    line-height: 1.5;
}

.usp {
    position: relative;
    padding: 22px 0 8px;
}
.usp__container,
.popular-flightdeals,
.intro-brand .intro__container,
.story-band__panel,
.destination-redesign .boxcontainer,
.contact-brand .flexcontainer,
.legalinfo .container {
    position: relative;
}

.usp__item {
    min-height: 180px;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
}

.usp__item img {
    width: 62px;
    height: 62px;
    padding: 10px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245, 158, 11, .14), rgba(15, 118, 110, .1));
}



.intro-brand {
    margin: 18px 0 8px;
}
.intro-brand .intro__container {
    display: grid;
    gap: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,247,237,.94));
    border: 1px solid rgba(245, 158, 11, .14);
    border-radius: 34px;
    box-shadow: 0 22px 60px rgba(8, 47, 73, .09);
    overflow: hidden;
    color: var(--brand-copy);
    font-size: 18px;
    padding: 34px;
}

.intro-brand .intro__image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 22px 52px rgba(8, 47, 73, .18);
    height: auto;
}

.intro-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 22px 0 6px;
}

.intro-pill-list li {
    list-style: none;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 118, 110, .08);
    color: var(--brand-ink);
    font-weight: 700;
}

.story-band {
    padding: 0 0 18px;
}

.story-band__panel {
    border-radius: 34px;
    padding: 34px;
    background: linear-gradient(135deg, var(--brand-ink), var(--brand-ocean));
    color: #fff;
    box-shadow: 0 24px 70px rgba(8, 47, 73, .24);
}

.story-band__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.74);
    margin-bottom: 14px;
}

.story-band__panel h2 {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    margin-bottom: 14px;
}

.story-band__panel p {
    color: rgba(255,255,255,.84);
    margin: 0;
    font-size: 18px;
}

.destination-redesign {
    padding: 10px 0 12px;
}

.home-offers {
    padding: 10px 0 18px;
}

.home-offers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-offers__card {
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(240,253,250,.96));
    border: 1px solid rgba(15, 118, 110, .08);
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(8,47,73,.08);
    padding: 28px;
}

.home-offers__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand-ocean);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-offers__card h2 {
    font-size: 28px;
    line-height: 1.12;
    color: var(--brand-ink);
    margin-bottom: 12px;
}

.home-offers__card p {
    margin: 0;
}

.destination-redesign .boxcontainer {
    width: 100%;
}

.head-redesign {
    padding: 30px;
    margin-bottom: 18px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, .22), transparent 30%),
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(240,253,250,.98));
    border: 1px solid rgba(15, 118, 110, .1);
    box-shadow: 0 24px 70px rgba(8, 47, 73, .08);
}

.head-redesign h1 {
    font-size: clamp(30px, 4vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.destination-redesign .box {
    position: relative;
    padding: 28px 28px 28px 32px;
    margin-bottom: 18px;
    overflow: hidden;
}

.destination-redesign .box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-sun), var(--brand-ocean));
}

.destination-redesign .box:nth-child(odd) {
    transform: translateX(0);
}

.destination-redesign .box h2 {
    font-size: 28px;
    line-height: 1.15;
}

.destination-redesign .cta.box {
    background: linear-gradient(135deg, rgba(8,47,73,.98), rgba(15,118,110,.96));
    color: #fff;
}

.destination-redesign .cta.box h2,
.destination-redesign .cta.box p,
.destination-redesign .cta.box li {
    color: #fff;
}

.destination-redesign .cta.box a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 13px 22px;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-ink);
    font-weight: 700;
}

.contact-brand .flexcontainer,
.legalinfo .container {
    gap: 24px;
}

.legalinfo .destination__activities_item {
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.96));
    border: 1px solid rgba(15, 118, 110, .08);
    box-shadow: 0 24px 70px rgba(8,47,73,.08);
    border-radius: 30px;
    padding: 32px;
}

.legalinfo h1 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.06;
    color: var(--brand-ink);
}

.faqs {
    margin: 22px 0 16px;
}

.faq-container {
    display: grid;
    gap: 12px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.question-text {
    font-family: 'Whitney-Semibold', sans-serif;
    font-size: 18px;
    color: var(--brand-ink);
}

.arrow {
    min-width: 12px;
}

.footer {
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    overflow: hidden;
}

.footer__container > div {
    padding: 12px 0;
}

.usp__list--premium .usp__item--premium {
    position: relative;
}

.popularflightdeals__card--premium .popularflightdeals__info {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,253,250,.96));
}

.about-redesign {
    padding-top: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.about-card {
    grid-column: span 6;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
    border: 1px solid rgba(15, 118, 110, .08);
    border-radius: 28px;
    box-shadow: 0 20px 55px rgba(8,47,73,.08);
    padding: 28px;
}

.about-card--wide {
    grid-column: span 12;
}

.about-card__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand-ocean);
}

.about-card h2 {
    font-size: 28px;
    line-height: 1.12;
    color: var(--brand-ink);
    margin-bottom: 14px;
}

.about-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0;
}

.about-pill-grid span,
.contact-badges span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 118, 110, .08);
    color: var(--brand-ink);
    font-weight: 700;
}

.contact-redesign {
    padding-top: 12px;
}

.contact__info--premium,
.contact-form-shell {
    border-radius: 30px;
}

.contact-form-shell {
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,247,237,.94));
    border: 1px solid rgba(245, 158, 11, .14);
    box-shadow: var(--brand-shadow);
    padding: 30px;
}

.contact-form-shell h2 {
    color: var(--brand-ink);
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.legal-redesign {
    padding-top: 12px;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.legal-grid .box {
    grid-column: span 6;
}

.legal-grid .cta.box {
    grid-column: span 12;
}

.legal-grid .cta.box a {
    display: inline-flex;
    margin-top: 10px;
    font-weight: 700;
    color: var(--brand-ink);
    background: #fff;
    padding: 12px 18px;
    border-radius: 999px;
}

@media (max-width: 767px) {
    .homepage-hero {
        min-height: auto;
        padding: 92px 0 26px !important;
    }

    .hero-home-grid,
    .home-truststrip__grid,
    .home-offers__grid {
        grid-template-columns: 1fr;
    }

    .hero-brand {
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .hero-brand .herobanner__content strong {
        font-size: 32px;
    }

    .brand-metrics {
        margin-top: -24px;
    }

    .brand-metrics__grid {
        grid-template-columns: 1fr;
    }

    .home-truststrip {
        margin: 10px 0 18px;
    }

    .intro-brand .intro__text,
    .story-band__panel,
    .head-redesign,
    .destination-redesign .box,
    .legalinfo .destination__activities_item {
        padding: 22px;
    }

    .intro-brand .intro__container {
        grid-template-columns: 1fr;
    }

    .destination-redesign .box h2 {
        font-size: 23px;
    }

    .intro-pill-list {
        flex-direction: column;
    }

    .about-card,
    .legal-grid .box,
    .legal-grid .cta.box {
        grid-column: span 12;
    }
}

@media (min-width: 768px) {
    .hero-brand--home {
        min-height: 530px;
        padding-top: 38px;
    }

    .hero-brand--inner {
        min-height: 430px;
        padding-top: 34px;
    }

    .intro-brand .intro__container {
        grid-template-columns: 1.05fr .95fr;
    }

    .destination-redesign .boxcontainer {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 18px;
    }

    .destination-redesign .head {
        grid-column: span 12;
    }

    .destination-redesign .box {
        grid-column: span 6;
        margin-bottom: 0;
        min-height: 100%;
    }

    .destination-redesign .cta.box {
        grid-column: span 12;
    }
}
