:root {
    --primary: #966904;
    --accent: #e2ca95;
    --cream: #fdf6ea;
    --text: #616565;
    --white: #fff;
    --success: #28b463;
    --danger: #ff4d2d;
}

/* ===== GLOBAL ===== */

body {
    font-family: 'Raleway', sans-serif !important;
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    background: var(--white);
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary) !important;
    color: #fff;
    border-color: var(--primary) !important;
}

.container {
    max-width: 1440px !important;
}

h4, h5 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
}

p {
    line-height: 28px;
}

/* ===== HERO ===== */

.hero {
    height: 65vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .75));
}

.hero h1 {
    text-shadow: 0 4px 18px rgba(0, 0, 0, .6);
    letter-spacing: .5px;
}


.hero h1 {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
}

/* ===== CARDS ===== */

.route-card {
    background: var(--white);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 20px;
    border: 1px solid #f3f3f3;
}

/* ===== ACCORDION ===== */

.custom-accordion .accordion-item {
    background: var(--accent);
    border: none;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background: var(--accent);
    color: #fff !important;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 18px;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
}

.custom-accordion .accordion-body {
    background: var(--cream);
    padding: 18px;
}

/* ===== SIDEBAR ===== */

.price-box {
    background: #fff7e3;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid var(--accent);
    position: sticky;
    top: 20px;
}

.price-box h2 {
    color: var(--primary);
    font-size: 26px;
    font-weight: 700;
}

.price-box p {
    font-size: 14px;
}

/* ===== BUTTONS ===== */

.btn-main {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-main:hover {
    background: #7f5603;
}

.btn-alt {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px;
    border-radius: 8px;
    background: transparent;
    font-weight: 600;
}

/* ===== GALLERY ===== */

.gallery-main img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.gallery-thumbs img {
    width: 90px;
    height: 70px;
    border-radius: 10px;
    opacity: .7;
    cursor: pointer;
}

.gallery-thumbs img.active,
.gallery-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lb-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 45px;
    color: #fff;
    cursor: pointer;
    padding: 20px;
}

.lb-prev {
    left: 25px;
}

.lb-next {
    right: 25px;
}

/* ===== OVERVIEW ===== */

.overview-wrap {
    background: var(--cream);
    border: 1px dashed var(--accent);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 18px;
}

.overview-grid {
    display: grid;
    gap: 24px;
}

.overview-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.overview-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 25px;
}

.overview-text small {
    font-size: 13px;
    color: var(--text);
}

.overview-text b {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* auto columns */

.overview-grid:has(.overview-item:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
}

.overview-grid:has(.overview-item:nth-child(3)):not(:has(.overview-item:nth-child(4))) {
    grid-template-columns: repeat(3, 1fr);
}

/* ===== ITINERARY STATS ===== */

.itn-stats {
    background: var(--cream);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(12px);
    transition: .5s ease;
}

.itn-stats.show {
    opacity: 1;
    transform: none;
}

.itn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.itn-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.itn-icon {
    font-size: 22px;
    color: var(--primary);
}

.itn-text small {
    font-size: 13px;
    color: var(--text);
}

.itn-text b {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.itn-item:not(:last-child) {
    border-right: 1px solid var(--accent);
    padding-right: 18px;
}

/* ===== INCLUDES ===== */

.includes-row {
    display: flex;
    gap: 50px;
}

.includes-col {
    flex: 1;
}

.includes-col h6 {
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 7px 0;
    font-size: 15px;
    color: var(--text);
}

.icon-yes {
    color: #d1a54a;
    font-size: 18px;
}

.icon-no {
    color: var(--danger);
    font-size: 18px;
}

/* ===== WHATSAPP ===== */

.whatsapp-box {
    margin-top: 10px;
}

.whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid var(--success);
    padding: 10px 20px;
    border-radius: 14px;
    background: var(--cream);
    color: var(--success);
    text-decoration: none;
    transition: .3s ease;
}

.wa-icon {
    font-size: 28px;
}

.wa-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wa-title {
    font-size: 14px;
    font-weight: 500;
}

.wa-number {
    font-size: 15px;
    font-weight: 600;
    margin-top: -4px;
}

.whatsapp-cta:hover {
    background: #e3fdd7;
    color: #188b48;
}

/* ===== RESPONSIVE ===== */

/* =====================
   HEADER
===================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 42px;
}

.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .5px;
}

.main-nav a:hover {
    opacity: .8;
}

.header-cta .cta-btn {
    background: var(--accent);
    color: #333;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.header-cta .cta-btn:hover {
    background: #f1d7a2;
}

/* =====================
   FOOTER
===================== */

.site-footer {
    background: url('assets/images/footer-bg.jpg') center/cover no-repeat;
    color: #fff;
    position: relative;
    margin-top: 80px;
}

.footer-overlay {
    background: rgba(0, 0, 0, .65);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-top p {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #ddd;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-grid h6 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    margin-bottom: 10px;
    color: #ddd;
}

.footer-grid a {
    color: #ddd;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #ccc;
}

.footer-bottom a {
    color: #ccc;
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* ===== MOBILE MENU ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Mobile layout */

@media(max-width:992px) {

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, .92);
        max-height: 0;
        overflow: hidden;
        transition: .4s ease;
    }

    .main-nav.open {
        max-height: 400px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 18px;
    }

    .main-nav a {
        font-size: 16px;
    }

    .header-cta {
        display: none;
    }
}


/* Responsive */

@media(max-width:992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}



@media(max-width:992px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .itn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .itn-item:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }
}

@media(max-width:768px) {
    .overview-grid {
        grid-template-columns: 1fr !important;
    }

    .itn-grid {
        grid-template-columns: 1fr;
    }

    .includes-row {
        flex-direction: column;
        gap: 25px;
    }
}