/*
  Extra rules on top of custom.css: the hero (single static image, no slider
  library), the vanilla-JS carousel used for the "Travel With Us" gallery and
  the "Our Partners" logo strip, and the booking iframe wrapper. None of this
  file touches the booking widget's own markup/script - only the container
  around it.
*/

/* Hero: existing image kept as the background, headline sits directly on the
   photo (no white card) with a strong left-to-right gradient for contrast. */
.hero-single {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.hero-single::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.82) 42%, rgba(8, 8, 10, 0.55) 72%, rgba(8, 8, 10, 0.35) 100%),
        linear-gradient(to bottom, rgba(8, 8, 10, 0.2), rgba(8, 8, 10, 0.55));
}

.hero-single .container {
    position: relative;
    z-index: 1;
}

.hero-single .content-box {
    width: 100%;
    padding: 0;
}

.hero-single .content-box h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    background-color: transparent;
    width: fit-content;
    padding: 0;
    border-radius: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-single .content-box h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    padding: 16px 0 30px;
    line-height: 1.15;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
    max-width: 640px;
}

.hero-single .content-box .btn-1 {
    margin-right: 10px;
    background-color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: var(--radius);
    padding: 16px 36px;
    color: #fff !important;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.hero-single .content-box .btn-1:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.hero-single .content-box .btn-2 {
    background-color: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 16px 36px;
    border-radius: var(--radius);
    color: #fff !important;
    transition: 0.3s;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.hero-single .content-box .btn-2:hover {
    background-color: #fff;
    border-color: #fff;
    color: var(--text) !important;
}

/* Hero supporting paragraph, sits between the H1 and the CTA buttons */
.hero-single .content-box .hero-lead {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 0 30px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
}

.hero-single .content-box h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65);
}

@media (max-width: 767.98px) {
    .hero-single {
        min-height: unset;
        padding: 40px 0;
    }

    /* Keep the hero text (and the H1) visible on mobile, below the booking box,
       on a solid dark panel so it stays readable over any part of the photo. */
    .hero-single .content-box {
        display: block;
        margin-top: 24px;
        text-align: center;
        background: rgba(10, 10, 11, 0.82);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
        padding: 26px 20px 28px;
    }

    .hero-single .content-box h1 {
        font-size: 30px;
        padding: 12px 0 16px;
    }

    .hero-single .content-box .hero-lead {
        font-size: 14.5px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }
}

/* Check-list reused inside .sec-about (intro block) - mirrors .sec-why .check-list */
.sec-about .content-box .check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 22px;
    margin: 26px 0 32px;
    padding: 0;
    list-style: none;
}

.sec-about .content-box .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.sec-about .content-box .check-list li i {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent) !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 10.5px;
    margin-top: 1px;
}

@media (max-width: 991.98px) {
    .sec-about .content-box .check-list {
        grid-template-columns: 1fr;
    }
}

/************************** FAQ **************************/
.sec-faq {
    padding: 90px 0;
    background: var(--bg-soft);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    box-shadow: var(--shadow-card);
    transition: 0.3s ease;
}

.faq-item[open] {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-hover);
}

.faq-item summary {
    display: block;
    list-style: none;
    cursor: pointer;
    padding: 20px 54px 20px 24px;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    content: '';
    display: none;
}

.faq-item summary::after {
    content: '\002B';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 767.98px) {
    .sec-faq {
        padding: 60px 0;
    }

    .faq-item summary {
        font-size: 15px;
        padding: 16px 46px 16px 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}

/* Booking widget box: on mobile it's shown first (above the text), on desktop it's the right column 
.hero-booking-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 14px;
    box-shadow: 0 30px 60px rgba(17, 18, 20, 0.22);
}*/

@media (max-width: 991.98px) {
    .hero-booking-box {
        margin-bottom: 24px;
    }
}

/* Booking widget wrapper on book-now.html */
#booking-iframe-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    padding: 6px;
    background: #fff;
}

/* Generic auto-sliding carousel (replacement for slick.js), used by the
   "Travel With Us" gallery and the "Our Partners" logo strip. */
.carousel-wrap {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

/* Gallery: 4 photos visible at a time */
.gallery-track .slide-item {
    flex: 0 0 25%;
    max-width: 25%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 6px;
}

.gallery-track .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    transition: 0.5s;
}

.gallery-track .slide-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 767.98px) {
    .gallery-track .slide-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Partners: 4 logos visible at a time on desktop, each in its own hairline-bordered card */
.partner-track .slide-item {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.partner-track .slide-item .img-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 100%;
    padding: 22px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.partner-track .slide-item .img-box:hover {
    border-color: var(--border-strong);
}

.partner-track .slide-item .img-box img {
    width: 100%;
    max-width: 150px !important;
}

@media (max-width: 767.98px) {
    .partner-track .slide-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
    }
}
