﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background: linear-gradient(to bottom, #feb47b, #ffffff);*/
    /*background: url('~/images/background.jpg') no-repeat center center fixed;*/
    background-size: cover;
}

/*=================== HOMEPAGE ======================*/

.sunshine-special-link{
    background-color: darkorange;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
}

    .sunshine-special-link:hover {
        background-color: orange;
        color: darkblue;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        transition: box-shadow .5s ease;
    }

/* Sunshine Specials cards */
.special-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.special-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.special-card .card-img-top {
    transition: transform 0.35s ease;
}
.special-card:hover .card-img-top {
    transform: scale(1.04);
}
.special-card-img-wrap {
    overflow: hidden;
}
.price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: darkorange;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Trust bar */
.trust-bar {
    background: #fff8f0;
    border-top: 3px solid darkorange;
    border-bottom: 1px solid #ffe0b2;
}
.trust-bar .trust-item {
    text-align: center;
    padding: 16px 8px;
}
.trust-bar .trust-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 4px;
}
.trust-bar .trust-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #444;
    display: block;
    line-height: 1.3;
}

/*=================== COOKIE CONSENT ======================*/
.cookie-alert {
    margin-bottom:0px !important;
}

/*=================== SEARCH FORM ===================*/
/* ── Modern search bar ── */
.search-bar-modern {
    font-family: Arial, Helvetica, sans-serif;
}
.sb-wrapper {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.97);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: visible;
}
.sb-fields {
    display: flex;
    align-items: stretch;
    flex: 1 1 0;
    flex-wrap: wrap;
    min-width: 0;
}
.sb-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 16px;
    flex: 1 1 130px;
    min-width: 110px;
}
.sb-field-sm { flex: 0 1 175px; min-width: 165px; }
.sb-field-guests { flex: 0 1 170px; min-width: 150px; }
.sb-label {
    font-size: .72em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #555;
    margin-bottom: 3px;
    white-space: nowrap;
}
.sb-select,
.sb-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-size: .97em;
    font-weight: 500;
    color: #111;
    background: transparent !important;
    padding: 0 !important;
    height: auto !important;
    width: 100%;
}
.sb-select > button,
.sb-select.selectpicker > button {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: .97em !important;
    font-weight: 500 !important;
    color: #111 !important;
    box-shadow: none !important;
}
.sb-divider {
    width: 1px;
    background: #e0e0e0;
    margin: 10px 0;
    flex-shrink: 0;
}
.sb-guests-btn {
    border: none;
    background: transparent;
    padding: 0;
    font-size: .97em;
    font-weight: 500;
    color: #111;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.sb-guests-btn:hover { color: darkorange; }
.guests-popup {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 20px;
    min-width: 240px;
    z-index: 1050;
}
.guests-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}
.guests-row:last-of-type { border-bottom: none; }
.guests-label { font-weight: 600; font-size: .95em; color: #333; }
.guests-counter { display: flex; align-items: center; gap: 12px; }
.counter-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    font-size: 1.1em;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .15s, color .15s;
}
.counter-btn:hover { border-color: darkorange; color: darkorange; }
.counter-val { font-weight: 700; font-size: 1.05em; min-width: 20px; text-align: center; }
.sb-search-btn {
    background: darkorange;
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    padding: 0 28px;
    font-size: 1.05em;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
    flex-shrink: 0;
}
.sb-search-btn:hover { background: #c96000; }

/* Inline nights counter */
.sb-inline-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .97em;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    flex-wrap: nowrap;
}
.sb-counter-btn {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    font-size: 1em;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color .15s, color .15s;
}
.sb-counter-btn:hover { border-color: darkorange; color: darkorange; }

/* Date picker button */
.sb-date-btn {
    border: none;
    background: transparent;
    padding: 0;
    font-size: .97em;
    font-weight: 500;
    color: #111;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
}
.sb-date-btn:hover { color: darkorange; }

/* Moon icon */
.sb-moon-icon { font-size: 1.5em; color: #555; }

/* ---- Month Picker Popup ---- */
.month-picker-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    padding: 22px 20px 18px;
    min-width: 300px;
    z-index: 1060;
}
.mpp-header {
    font-size: 1.05em;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}
.mpp-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.mpp-tab {
    padding: 6px 16px;
    border-radius: 20px;
    border: 2px solid #ccc;
    background: transparent;
    font-size: .88em;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all .15s;
}
.mpp-tab.active {
    border-color: #1a3faa;
    color: #1a3faa;
    background: rgba(26,63,170,0.07);
}
.mpp-year-block { margin-bottom: 14px; }
.mpp-year-heading {
    font-size: 1.08em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #111;
}
.mpp-months-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
.mpp-month-btn {
    padding: 9px 4px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-size: .88em;
    font-weight: 500;
    color: #222;
    cursor: pointer;
    transition: all .15s;
}
.mpp-month-btn:hover:not(.mpp-month-disabled) { border-color: darkorange; color: darkorange; }
.mpp-month-btn.mpp-month-selected { background: rgba(26,63,170,0.1); border-color: #1a3faa; color: #1a3faa; font-weight: 700; }
.mpp-month-btn.mpp-month-disabled { color: #ccc; cursor: default; border-color: #f0f0f0; }

/* Day picker */
.mpp-day-grid { padding-top: 2px; }
.mpp-day-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mpp-day-nav button { background: none; border: 1px solid #ddd; border-radius: 6px; cursor: pointer; font-size: .95em; padding: 4px 10px; color: #333; }
.mpp-day-nav button:hover { border-color: darkorange; color: darkorange; }
.mpp-day-nav span { font-weight: 700; font-size: .97em; }
.mpp-day-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: .75em; font-weight: 700; color: #888; margin-bottom: 4px; }
.mpp-day-cells { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.mpp-day-cell {
    aspect-ratio: 1;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: .85em;
    color: #222;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .1s;
}
.mpp-day-cell:hover:not(.mpp-day-disabled):not(.mpp-day-empty) { background: #f0f0f0; }
.mpp-day-cell.mpp-day-selected { background: rgba(26,63,170,0.12); color: #1a3faa; font-weight: 700; }
.mpp-day-cell.mpp-day-disabled { color: #ccc; cursor: default; }
.mpp-day-cell.mpp-day-empty { cursor: default; }

/* ---- Rooms Popup ---- */
.rooms-popup {
    min-width: 300px;
    padding: 20px 18px 16px;
}
.rooms-popup-title {
    font-size: 1.05em;
    font-weight: 700;
    margin: 0 0 14px;
    color: #111;
}
.room-block {
    background: #f7f7f7;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
}
.room-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
.room-title { font-weight: 700; font-size: .93em; color: #111; }
.room-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.15em;
    color: #999;
    padding: 0 4px;
    line-height: 1;
}
.room-remove-btn:hover { color: #333; }
.room-guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border-top: 1px solid #ececec;
}
.room-guest-label { font-weight: 500; font-size: .92em; color: #333; }
.room-guest-counter { display: flex; align-items: center; gap: 14px; }
.counter-btn-disabled { opacity: 0.35; cursor: default !important; pointer-events: none; }
.add-room-btn {
    width: 100%;
    background: #efefef;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: .9em;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    margin-bottom: 14px;
    transition: background .15s;
    text-align: center;
}
.add-room-btn:hover { background: #e4e4e4; }
.rooms-popup-footer {
    display: flex;
    gap: 10px;
}
.rooms-cancel-btn, .rooms-done-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: .92em;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background .15s;
}
.rooms-cancel-btn { background: #efefef; color: #333; }
.rooms-cancel-btn:hover { background: #e0e0e0; }
.rooms-done-btn { background: #2557a7; color: #fff; }
.rooms-done-btn:hover { background: #1a3f85; }

/* Sidebar (vertical-container) overrides */
.vertical-container .sb-wrapper {
    flex-direction: column;
    border-radius: 10px;
}
.vertical-container .sb-fields {
    flex-direction: column;
}
.vertical-container .sb-field,
.vertical-container .sb-field-sm,
.vertical-container .sb-field-guests {
    flex: unset;
    width: 100%;
    min-width: unset;
}
.vertical-container .sb-divider {
    width: 100%;
    height: 1px;
    margin: 0;
}
.vertical-container .sb-search-btn {
    border-radius: 0 0 10px 10px;
    width: 100%;
    padding: 12px;
}
.vertical-container .guests-popup {
    position: static;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 6px;
    padding: 12px;
}

@media (max-width: 767px) {
    .sb-wrapper { border-radius: 10px; }
    .sb-field { flex: 1 1 45%; }
    .sb-divider { display: none; }
    .sb-search-btn { border-radius: 0 0 10px 10px; width: 100%; padding: 14px; }
}

/* Legacy .searchForm kept for any other usages */
.searchForm {
    font-family: Arial, Helvetica, sans-serif;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
}
    .searchForm label {
        font-size: .8em !important;
        color: #555;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .04em;
        margin-bottom: 4px;
    }
    .searchForm select, .searchForm input {
        font-size: .95em !important;
        border: 1px solid #e0e0e0;
        background: #fff;
    }
    .searchForm input[type="text"] {
        font-size: 1em !important;
        font-weight: 500;
        color: #000;
        padding: .375rem .75rem;
    }
    .searchForm button {
        font-weight: bold;
        background-color: darkorange;
        color: white;
        border: none;
        font-size: 1rem !important;
        letter-spacing: .02em;
    }
    .searchForm button:hover {
        background-color: #e07000;
    }
    .searchFormTitle {
        color: white;
        font-size: 1.8rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        font-weight: 700;
        letter-spacing: .02em;
    }

.vertical-container .row {
    flex-direction: column;
}

.vertical-container .col-md-1,
.vertical-container .col-md-2,
.vertical-container .col-md-3,
.vertical-container .col-md-4,
.vertical-container .col-md-5,
.vertical-container .col-md-6,
.vertical-container .col-md-7,
.vertical-container .col-md-8,
.vertical-container .col-md-9,
.vertical-container .col-md-10,
.vertical-container .col-md-11,
.vertical-container .col-md-12 {
    width: 100%;
    max-width: 100%;
    font-size: 0.9em;
    padding: 0.25rem 0.5rem;
    font-size: 0.9em;
    line-height: 1;
    font-size: 0.9em;
}

@media (max-width: 767px) {
    .vertical-container {
        display: none;
    }
}

.form-select-Search {
    padding: 0px !important;

}

    .form-select-Search > button {
        background-color: #ffffff;
    }

    .form-select-Search .filter-option-inner-inner {
        font-family: Arial;
        font-size: 1em;
        color: black !important;
        font-weight: 500;
    }

.bootstrap-select {
    width: 100% !important;
}

/*=================== HEADER ===================*/
.nav-link {
    color: white !important;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: rgb(34, 34, 33) !important; 
    text-shadow: 1px 1px 1px rgba(128, 128, 128, 0.7);
    transition: all 0.3s ease; 
}

.navbar-nav .nav-link.active {
    color: orangered !important;
    font-weight: bold;
}

.nav-link {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .navbar-collapse {
        padding: 20px 0; /* Adds padding to the top and bottom */
        max-height: none !important; /* Ensures the collapse doesn't restrict height */
        overflow: visible; /* Prevents overflow cutting off content */
    }
}

.header-container {
    padding: 0px;
}


/*=================== FOOTER ===================*/
.footer-contact {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #bbbbbb !important;
    padding: 5px 30px;
}

.footer-contact table td {
    padding: 5px 10px;
}

.footer-disclaimer {
    color: gray;
    font-size: .8em;
    padding: 10px 50px;
}

.footer-copyright {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    color: #bbbbbb !important;
}

.footer-custom {
    background-color: #000000; /* Fallback */
    background-repeat: repeat;
    background-size: auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 -1px 3px rgba(0, 0, 0, 0.7);
}

.footer-links a {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #bbbbbb !important;
}

.footer-links a:hover {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: orange !important;
}

.footer-col-link:hover {
    color: darkorange !important;
    transition: color 0.2s ease;
}

.socialMedia {
    height: 30px;
}

/*=================== CAROUSEL ==================*/
.carousel-caption {
    bottom: 50%; 
}

.carousel-item {
    position: relative;
    max-height: 500px; 
    overflow: hidden;
}

.carousel-caption {
    position: absolute;
    top: 20%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    text-align: center; 
    width: 100%; 
}

.carousel-caption h2 {
    font-size: 2.5rem; /* Adjust as per your preference */
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.carousel-caption .btn {
    padding: 10px 20px;
    font-size: 1rem;
}

#heroCarousel {
    position: relative;
    z-index: 1;
}

.search-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    border-radius: 10px;
    z-index: 10;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .search-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
    }
}

    /* Optional: style form fields inside _searchForm for white text */
    .search-overlay input,
    .search-overlay select,
    .search-overlay button {
        color: #000; /* inputs usually black text */
    }

    /*=================== NEWS AND OFFER ==================*/
    .newsItem {
        height: 200px;
        border: 1px solid #e6e6e6;
        border-radius: 5px;
    }

    .newsAndOfferSubject {
        color: darkorange;
        font-size: 1.3em;
        font-weight: 700;
    }

    .arrowIcon {
        color: orangered
    }

#newsOffersCarousel .carousel-inner.newsItem {
    background-color: #ffffff;
    border: 1px solid #ffa500;
    border-radius: 8px;
    background-color: rgba(255, 165, 0, 0.3); /* light orange, 80% transparent */
    /*background: linear-gradient(rgba(255,140,0,0.5), rgba(255,140,0,0.5)), url('/images/your-image.jpg') center/cover no-repeat;*/
    background: radial-gradient(circle, #e5e5e5, white);
}

    .newsAndOfferSubject {
        font-size: 1.25rem;
        font-weight: bold;
        color: orangered;
        margin-bottom: 0.5rem;
    }

    .carousel-control-prev-icon.icon-news,
    .carousel-control-next-icon.icon-news {
        background-image: url('data:image/svg+xml,...custom_icon_or_color...');
        filter: invert(49%) sepia(99%) saturate(564%) hue-rotate(5deg) brightness(105%) contrast(100%);
    }

    .prev-news {
        width: 5%;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /*filter: invert(38%) sepia(85%) saturate(430%) hue-rotate(3deg) brightness(98%) contrast(100%);*/
    background-size: 100% 100%;
    background-color: rgba(89,89,89,0.7);
    width: 1.2rem;
    height: 2.5rem;
    border-radius: 3px;
}

    /*=================== Destination Banner ========*/
    .destination-banner {
        position: relative;
        width: 100%;
        max-height: 400px;
        overflow: hidden;
    }

    .banner-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .destination-name-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.75); /* Semi-transparent black */
        color: white;
        padding: 20px 40px;
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        border-radius: 5px;
        text-transform: uppercase;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #ff6600;
        border-bottom: 2px solid orange;
        padding-bottom: 0.5rem;
        /*text-transform: uppercase;*/
        font-weight: bold;
        background: linear-gradient(to right, darkorange, white);
        color: aliceblue;
        padding: 5px;
        border-radius: 5px;
    }

    .destination-item-card {
        border: 1px solid #f0ad4e;
        border-radius: 15px;
        overflow: hidden;
        background-color: #fff8f0;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
        transition: transform 0.2s;
    }

        .destination-item-card:hover {
            transform: scale(1.02);
        }

    .tile-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .tile-info {
        padding: 15px;
    }

        .tile-info h4 {
            color: #d35400;
            font-weight: 600;
        }

    .btn-orange {
        background-color: #ff6600;
        color: white;
        padding: 8px 16px;
        border-radius: 5px;
        text-decoration: none;
        display: inline-block;
        margin-top: 10px;
    }

        .btn-orange:hover {
            background-color: #e65c00;
            color: #fff;
        }

    .img-jss {
        border: 1px solid #e6e6e6;
        border-radius: 5px !important
    }

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

.searchingHolidaysBackground {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    margin-top: -50px;
    
}

.searchingHolidaysAnimation {
    position: fixed;
    z-index: 9999;
    background: rgba(255,135,0,0.9);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.paragraph h2 {
    font-size: 1.2em;
    color: darkorange;
    padding: 3px;
    font-weight: bold;
}

    .flag-icon {
        width: 24px;
        height: 16px;
        vertical-align: middle;
        margin-right: 8px;
    }

    .destination-table-list {
        width: 100%;
        background-color: #fefefe !important;
        border-radius: 5px !important;
        border: 2px solid orange;
        border-collapse: collapse;
    }

        .destination-table-list thead th {
            background-color: darkorange;
            color: snow;
            padding: 5px 10px;
        }

        .destination-table-list tr {
            background-color: white;
        }

            .destination-table-list tr:hover {
                background-color: orange !important;
            }

        .destination-table-list tbody td {
            color: #333;
            padding: 5px 10px;
            border: 1px solid #f3f3f3;
        }

            .destination-table-list tbody td a {
                color: navy;
                text-decoration: none;
            }

                .destination-table-list tbody td a:hover {
                    color: orangered;
                    text-decoration: underline;
                }


    .main-image {
        width: 100%;
        height: 200px;
    }

    .destination-main-image {
        width: 100%;
        max-height: 400px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .box-div {
        width: 110px;
        height: 150px;
        padding: 5px;
        border: 1px solid #E6E6e6;
        align-items: center;
        justify-content: center;
    }

    .gallery-image {
        width: 100px;
        height: 100px;
        border-radius: 5px;
    }

    .destination:hover a {
        text-decoration: underline;
        cursor: pointer;
    }

    .destination-country a {
        text-decoration: none;
        color: orangered;
        font-size: 1.2em;
        font-weight: 700;
        padding: 5px;
        margin: 3px;
    }

    .destination-resort a {
        text-decoration: none;
        color: darkorange;
        font-size: 1em;
        font-weight: 600;
        padding: 5px 10px;
        margin: 3px;
    }

    .destination-hotel a {
        text-decoration: none;
        color: gray;
        font-size: 1em;
        font-weight: 400;
        padding: 5px 20px;
        margin: 3px;
    }

    .page-content-area {
        min-height: 600px;
        padding: 20px 0;
    }

    .image-container {
        padding: 3px;
        border-radius: 5px !important;
        background-color: orange;
    }

    .image-container-size {
        width: 400px;
    }

    .image-container-margin {
        margin: 20px 0;
    }

    .page-title {
        color: darkorange;
        font-weight: 700;
        font-size: 1.7em;
        padding: 20px 0;
    }

    .paragraph-header {
        font-size: 1.2em;
        padding: 3px;
        font-weight: 700;
        color: orange;
    }

    .paragraph {
        font-size: 1.0em;
        color: black;
        padding: 3px;
    }

    .row-gap {
        padding: 20px 3px;
    }

    .bold-text {
        color: orange;
        font-weight: bold;
        text-decoration: none
    }

        .bold-text a:hover {
            font-weight: bold;
            color: blue;
        }

    .white-background {
        background-color: white !important;
    }

    hr {
        color: orange;
        padding: 2px 2px;
        height: 1px;
    }

    /*Start: contact us form*/
    .btn-submit {
        background-color: orange;
        color: white;
        border-radius: 5px;
        padding: 10px 20px;
        width: 100%;
        font-size: 1.1rem;
    }

        .btn-submit:hover {
            background-color: orangered;
            transition: background-color 0.3s;
        }

    .form-text {
        font-size: 0.875rem;
        color: #6c757d;
    }

    .form-check-label {
        font-size: 0.9rem;
    }

    .contact-us-info {
        background-size: auto;
        background-repeat: no-repeat;
        background-position: right;
    }
    /*End: contact us form*/

    /*START: Table*/
    .table-content {
        width: 100%;
        border-collapse: separate;
        background-color: #e6e6e6;
        border-radius: 3px;
        border-spacing: 1px !important;
    }

        .table-content thead {
            background-color: orange;
            color: white;
        }

            .table-content thead td {
                padding: 5px;
            }

        .table-content tbody td {
            padding: 1px;
            background-color: white;
            padding: 5px;
        }

    .topAlign {
        vertical-align: top;
    }

    .general-links {
        color: grey;
        text-decoration: none;
    }

        .general-links a:hover {
            text-decoration: underline;
        }
    /*END: Table*/


.transfer_mode {
    font-size: 0.9em;
    color: darkorange;
    
    background: #e5e5e5;
    padding: 3px;
    border-radius: 3px;
}

/*=================== SEARCH RESULT ===================*/
.flight_icon {
    width: 35px;
    height: 22px;
}

.flight_direction {
    font-size: 0.9em;
    font-weight: 500;
    color: orange;
}

.flight_class {
    background-color: darkorange;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.7);
    margin: 0 5px;
    padding: 3px 5px;
    border-radius: 3px;
    font-size: .9em;
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
}
.flight_class.fare-light {
    background-color: #5b9bd5;
    box-shadow: 0 0 8px rgba(91, 155, 213, 0.7);
}
.flight_class.fare-inclusive {
    background-color: darkorange;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.7);
}
.flight_class.fare-inclusive-plus {
    background-color: #27ae60;
    box-shadow: 0 0 8px rgba(39, 174, 96, 0.7);
}

.flight_from {
    font-size: 0.9em;
}

.flight_airport {
    font-size: 0.9em;
    color: black;
}

.flight_time {
    font-size: 0.85em;
    color: darkorange;
}

.airline_logo {
    height: 33px;
}

.airline_name, .time_title {
    font-size: 0.85em;
    color: darkgrey;
}

.flight_number {
    font-size: 0.85em;
    color: darkorange;
    font-weight: 600;
}

.flight_number_container {
    background: #e9e9e9;
    padding: 3px 5px;
    margin:2px;
    border-radius: 5px;
}

.divider {
    margin: 5px;
}

.btn_flight_selection {
    font-weight: bold;
    background-color: darkorange;
    color: white;
}

.btn_transfer_selection {
    font-size: 1em;
    font-weight: bold;
    background-color: darkorange;
    color: white;
    border: 1px solid darkorange;
}

.btn_transfer_selected {
    font-size: 0.9em;
    font-weight: normal;
    background-color: grey!important;
    color: white;
    border: 1px solid #e5e5e5 !important;
}

.btn_option {
    font-size: 0.9em !important;
    font-weight: normal;
    border: 0px;
    padding: 3px 10px;
    border-radius: 7px;
    min-width: 130px;
}

.btn_option_selection {
    background-color: #e9e9e9;
    color: darkorange;
}

.btn_option_selection:hover {
    background-color: orange;
    color: white;
}

.btn_option_selected {
    background-color: darkorange;
    color: white;
}

.btn_option_selected:hover {
    background-color: darkorange;
    color: white;
}

    .btn_option_selected::before {
        content: "✔";
        color: darkgreen;
        padding: 2px 5px 2px 2px;
    }

.div_options_container {
    display: flex;
    padding: 10px 5px;
}

.inline-box_div_option {
    display: inline-block;
    margin: 5px;
}

.selectedTransfer, .selectedHotel, .selectedFlight, .selectedBooking, .paymentDetails {
    font-size: 1.1em;
    font-weight: bold;
    color: orange;
    margin-top: 10px;
}

.hotel-cell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; 
}

.hotel-top, .hotel-bottom {
    display: flex;
    flex-direction: column;
}

.hotel_name{
    font-size: 1.1em;
    color: black;
    font-weight: bold;
}

.hotel_star {
    font-size: 1.1em;
    color: darkorange;
    font-weight: bold;
}

.hotel_description {
    font-size: 0.9em;
    color: darkgray;
}

.hotel_room {
    font-size: 0.9em;
    color: black;
}

.hotel_board {
    font-size: 0.8em;
    font-weight: 600;
    color: black;
}

.resort_name {
    font-size: 0.95em;
    color: darkgray;
    font-weight: 500;
}

.discount {
    font-size: 1.1em;
    color: green;
    background-color: yellow;
    padding: 3px;
    border-radius: 5px;
}

.package_price {
    font-size: 2em;
    color: orangered;
    font-weight: bold;
    white-space: nowrap;
}

.hotel-row-gap {
    min-height: 30px;
}

.hotel_dates{
    padding: 3px 0 1px 0;
    font-size: 0.80em;
    font-weight: 600;
    color: darkgray;
}
.hotel_nights {
    padding: 1px 0 10px 0;
    font-size: 0.75em;
    font-weight: 500;
    color: darkgray;
}

.hotel_room_options {
    font-weight: bold;
    color: darkorange;
}

@media (max-width: 768px) {
    .hotel-row-gap {
        min-height: 10px;
    }
}

.continue_button {
    background-color: darkorange;
    color: white;
    font-weight: bold;
    border: 1px solid #e5e5e5;
}

.attribute_label {
    min-width: 100px;
    font-weight: bold;
    font-size: 0.9em;
    display: inline-block;
}

.hotel_attribute {
    font-size: 0.9em;
    min-height: 25px;
}

.transfer_icon {
    
    height: 22px;
}

.transfer_direction {
    font-size: 0.9em;
    font-weight: 500;
    color: orange;
}

.transfer_details {
    font-size: 0.9em;
    color: black;
}

.btn-navigation {
    padding: 5px 10px;
    font-size: 0.9em;
}
.btn-navigation-back {
    background-color: lightgray;
    color: black;
}
    .btn-navigation-back:hover {
        background-color: grey;
        color: white;
    }
.btn-navigation-next {
    background-color: darkorange;
    color: white;
}
    .btn-navigation-next:hover {
        background-color: orange;
        color: black;
    }
.package-price-label {
    color: darkorange;
    font-size: 1em;
    font-weight: 600;
}
/*=================== Booking Progress ===================*/
.step-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.step {
    padding: 5px 10px;
    border-bottom: 2px solid lightgray;
    color: gray;
    font-size: 0.9em;
    text-align: center;
}

    .step.active {
        border-color: orange;
        background-color: orange;
        color: white;
        font-weight: bold;
        border-radius: 5px 5px 0 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .step.completed {
        border-color: darkorange;
        color: darkorange;
        font-weight: bold;
    }
.step {
    z-index: 1;
    width: 25%;
}

.progress-line {
    z-index: 0;
}

.booking_details {
    font-size: 0.9em;
}

    .booking_details .small-form-control {
        font-size: 0.9em;
        padding: 0.3rem 0.5rem;
    }
.btn_review_selection {
    font-size: 1.2em;
    font-weight: bold;
    background-color: darkorange;
    color: white;
    border: 1px solid darkorange;
}

.PaxDetails {
    width: 100%;
    border: 1px solid #e6e6e6;
}

.PaxDetails thead th {
    min-height: 25px;
    color: darkorange;
    background-color: #E9E9E9;
    font-size: 1em;
    padding: 3px;
}
    .PaxDetails thead th:first-child {
        width: 10%;
    }

    .PaxDetails tbody td {
        min-height: 20px;
        color: black;
        font-size: 0.95em;
        padding: 3px;
        border: 1px solid #e6e6e6;
    }

.chkAgree {
    padding: 3px 30px;
}

.booking_reference{
    font-weight: bold;
    color: darkorange;
    font-size: 1.2em;
}

/*=============FLIGHT CLASS DESCRIPTION===============*/
.popup {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.popup-content {
    background: #fff;
    margin: 100px auto;
    width: 50%; /* default for larger screens */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    overflow: hidden; /* ensures header corners match rounded box */
}

/* Header row */
.popup-header {
    background: #f0f0f0; /* light grey */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

/* Close button */
.close-btn {
    cursor: pointer;
    font-size: 18px;
}

/* Body */
.popup-body {
    padding: 20px;
}

.fare-section {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
}

.fare-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fare-title {
    font-weight: 700;
    font-size: 0.95em;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.fare-desc {
    margin: 0 0 6px 0;
    font-size: 0.88em;
    color: #333;
}

.fare-list {
    margin: 0;
    padding-left: 16px;
}

.fare-list li {
    font-size: 0.88em;
    color: #444;
    margin-bottom: 2px;
}

/* Responsive width */
@media (max-width: 768px) {
    .popup-content {
        width: 80%;
    }
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%; 
    background-color: steelblue; 
    color: #fff; /* white text */
    font-weight: bold;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    font-style: italic;
}

    /* Hover effect */
    .info-icon:hover {
        background-color: darkorange; /* darker blue */
        transform: scale(1.1); /* slight zoom */
    }
/* Destination table row hover */
.dest-table tbody tr {
    transition: background-color 0.18s ease;
    cursor: default;
}
.dest-table tbody tr:hover {
    background-color: #fff3e0;
}
.dest-table tbody tr:hover td {
    color: darkorange !important;
}
.dest-table tbody tr:hover a {
    color: darkorange !important;
    font-weight: 600;
}

/* =================== HOMEPAGE REDESIGN =================== */

/* Hero section wrapper */
.hero-section {
    position: relative;
    background: #000;
}
.hero-carousel {
    position: relative;
}
.hero-img {
    height: 440px;
    object-fit: cover;
    filter: brightness(.72);
}
.hero-caption {
    position: absolute;
    top: 36%;
    left: 0; right: 0;
    text-align: center;
    z-index: 5;
    pointer-events: none;
}
.hero-title {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0,0,0,.55);
    margin-bottom: .5rem;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.88);
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
    margin-bottom: 0;
}
/* Search bar pulled to bottom of hero, hanging below */
.hero-search-wrap {
    position: relative;
    margin-top: -28px;
    z-index: 20;
    padding-bottom: 12px;
}
@media (max-width: 768px) {
    .hero-img { height: 260px; }
    .hero-search-wrap { margin-top: 0; padding: 0 1rem 1rem; }
}

/* Airline logos strip */
.airline-strip {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.airline-logo-item {
    font-size: .95rem;
    font-weight: 600;
    color: #444;
    letter-spacing: .01em;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Resort label overlay on card image */
.resort-label {
    position: absolute;
    bottom: 8px;
    left: 12px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Feature cards */
.feature-card {
    border: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.07) !important;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.13) !important;
}
.feature-icon { font-size: 2rem; }
.feature-link {
    color: darkorange;
    font-weight: 600;
    text-decoration: none;
    font-size: .9rem;
}
.feature-link:hover { text-decoration: underline; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(120deg, #ff8a00, #e65c00);
}

/* FAQ */
.faq-item { border: none; margin-bottom: 10px; border-radius: 10px !important; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.faq-btn { font-weight: 600; background: #fff !important; box-shadow: none !important; border-radius: 0 !important; }
.faq-btn:not(.collapsed) { color: darkorange; }
.faq-btn::after { filter: none; }

/* Testimonials */
.testimonial-card {
    border: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.07) !important;
}
.testimonial-stars { color: darkorange; font-size: 1.1rem; }
.testimonial-author { font-size: .9rem; }
