﻿/********** Template CSS **********/
:root {
    --primary: #F7941D;
    --secondary: #D97D12;
    --light: #F5F5F5;
    --dark: #14141F;
    --bs-primary: #F7941D;
    --bs-primary-rgb: 247, 148, 29;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--secondary);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #000000;
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #000000;
}

.btn.btn-outline-primary {
    color: #000000;
    border-color: var(--primary);
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
    color: #000000;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.navbar-light .navbar-brand {
    position: relative;
    min-width: 180px;
}

.navbar-light .navbar-brand .brand-logo {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

.navbar-light .navbar-brand .brand-logo-dark {
    display: none;
}

.sticky-top.navbar-light .navbar-brand .brand-logo-light {
    display: none;
}

.sticky-top.navbar-light .navbar-brand .brand-logo-dark {
    display: inline-block;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.sticky-top.navbar-light .navbar-brand .brand-logo {
    width: 150px;
    height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }

    .navbar-light .navbar-brand .brand-logo {
        width: 145px;
        height: 45px;
    }

    .navbar-light .navbar-brand .brand-logo-light {
        display: none;
    }

    .navbar-light .navbar-brand .brand-logo-dark {
        display: inline-block;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/site-130.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header.hero-home {
    background: linear-gradient(rgba(20, 20, 31, .68), rgba(20, 20, 31, .68)), url(../img/site-130.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header.hero-destination {
    background: linear-gradient(rgba(20, 20, 31, .68), rgba(20, 20, 31, .68)), url(../img/site-132.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #000000;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: #FFFFFF;
    transform: translateY(-6px);
    box-shadow: 0 0 55px rgba(0, 0, 0, .12);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: inherit !important;
}

.service-item i {
    color: #000000 !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}

.destination .destination-label {
    background: var(--primary);
    color: #000000;
    border-radius: 6px;
    max-width: 88%;
    line-height: 1.3;
    text-align: right;
}

.destination .destination-highlight,
.destination .trip-highlight {
    max-width: calc(100% - 130px);
    margin: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(20, 20, 31, .58);
    color: #FFFFFF;
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.35;
    z-index: 2;
    pointer-events: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.destination .destination-label,
.destination .trip-days-label {
    z-index: 4;
}

/* Reduce scroll stutter in image-dense sections */
.destination .wow,
.service-gallery .wow,
.home-gallery .wow,
.travel-highlights .wow {
    animation: none !important;
    visibility: visible !important;
}

/* Gallery page: keep destination-style frame sizes and crop images to fit */
.service-gallery .row.g-3 > .col-lg-7 .col-lg-12 img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.service-gallery .row.g-3 > .col-lg-7 .col-lg-6 img {
    width: 100%;
    height: 172px;
    object-fit: cover;
}

.service-gallery .row.g-3 > .col-lg-4 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-gallery .row.g-3 > .col-lg-5 .position-absolute {
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .service-gallery .row.g-3 > .col-lg-7 .col-lg-12 img,
    .service-gallery .row.g-3 > .col-lg-7 .col-lg-6 img,
    .service-gallery .row.g-3 > .col-lg-4 img {
        height: 240px !important;
    }

    .service-gallery .row.g-3 > .col-lg-5 {
        min-height: 240px !important;
    }
}

.destination .trip-card-link {
    border-radius: 8px;
}

.destination .trip-grid-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.destination .trip-days-label {
    background: #FFFFFF;
    color: #000000;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

@media (max-width: 767.98px) {
    .destination .destination-highlight,
    .destination .trip-highlight {
        max-width: calc(100% - 24px);
        font-size: .78rem;
        -webkit-line-clamp: 2;
    }
}

#tripDetailModal .modal-content {
    border: none;
    border-radius: 10px;
}

.trip-modal-details li,
.trip-modal-includes li,
.trip-modal-excludes li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 26px;
    color: #2C3E50;
    line-height: 1.5;
}

.trip-modal-details li:last-child,
.trip-modal-includes li:last-child,
.trip-modal-excludes li:last-child {
    margin-bottom: 0;
}

.trip-modal-details li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
}

.trip-modal-includes li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

.trip-modal-excludes li::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #5A5A5A;
}

.faq-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 0 35px rgba(0, 0, 0, .06);
}

.faq-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    transition: background-color .25s ease, border-color .25s ease;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-number {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
}

.faq-item .faq-question {
    margin: 4px 0 0;
    flex: 1 1 calc(100% - 46px);
    color: #2C3E50;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item .faq-answer {
    margin: 0 0 0 46px;
    width: calc(100% - 46px);
    color: #5A6573;
    font-weight: 500;
    line-height: 1.55;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height .3s ease, opacity .25s ease, transform .25s ease;
}

.faq-item:hover,
.faq-item:focus-within,
.faq-item.is-open {
    background: rgba(247, 148, 29, .08);
    border-color: rgba(247, 148, 29, .32);
}

.faq-item:hover .faq-answer,
.faq-item:focus-within .faq-answer,
.faq-item.is-open .faq-answer {
    margin-top: 2px;
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
}

.faq-item:focus-within {
    outline: 2px solid rgba(247, 148, 29, .35);
    outline-offset: 2px;
}

.contact-icon {
    background: var(--primary) !important;
}

.contact-icon i {
    color: #000000 !important;
}

.booking-info-card {
    position: relative;
    overflow: hidden;
    background: url(../img/site-155.jpg) center center / cover no-repeat;
    border: none;
}

.booking-info-card::before {
    position: absolute;
    content: "";
    inset: 0;
    background: rgba(20, 20, 31, .48);
    z-index: 1;
    transition: .35s ease;
}

.booking-info-card > * {
    position: relative;
    z-index: 2;
    color: #FFFFFF !important;
}

.booking-info-card i {
    color: #FFFFFF !important;
}

.service-item.booking-info-card:hover {
    background: url(../img/site-155.jpg) center center / cover no-repeat;
    border: none;
    box-shadow: 0 0 55px rgba(0, 0, 0, .22);
}

.service-item.booking-info-card:hover::before {
    background: rgba(20, 20, 31, .34);
}

.service-item.booking-info-card:hover * {
    color: #FFFFFF !important;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #000000;
}

.footer .row.g-2 .col-4 {
    display: flex;
}

.footer .row.g-2 .col-4 img {
    width: 100%;
    height: 84px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 575.98px) {
    .footer .row.g-2 .col-4 img {
        height: 72px;
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
