:root {
    --primary: #50b7eb;
    --primary-shade: #9ccbeb;
    --accent: #69C395;
    --dark: #003348;
    --darker: #002839;
    --dark-shade: #606f75;
    --light: #f0f4f7;
    --disable: #7c8a91;
    --white: #FFFFFF;

    --font-primary: "Inter", sans-serif;
    --font-accent: "Pacifico", cursive;
    --fontsize-default: 1.15rem;
    --small: 1.1rem;
    --extrasmall: 0.64rem;

    --shadow-1: 0px 3px 15px 3px rgba(13, 101, 101, 0.21);
    --shadow-subtle: 0px 4px 16px 2px rgba(13, 101, 101, 0.1);
    --shadow-2: inset 5px 0px 15px 2px rgba(0,40,57,0.1);
    
    --nav-scroll-offset: 120px;
    --nav-scroll-offset-single: 140px;
}
.under-construction {
  /* display: grid; */
  align-content: center;
  height: 86vh;
  text-align: center;
}
.under-construction img {
    max-width: 230px;
}
.under-construction h3 {
    line-height: 3rem;
}
html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: var(--nav-scroll-offset);
}
body.single-page [id] {
    scroll-margin-top: var(--nav-scroll-offset-single);
}
body {
    margin: 0;
    font-size: var(--fontsize-default);
    line-height: 1.4;
}
/* ===== GENERAL ===== */
a {
    color: var(--dark);
}
a:hover {
    color: var(--accent);
}
.img-fluid {
    width: 100%;
    height: auto;
}
/* Apply to all clickable elements */
a, 
button, 
select, 
input, 
textarea,
.filter-btn,
.filter-tag {
    -webkit-tap-highlight-color: transparent;
}
.bg-dark {
    background-color: var(--dark) !important;
}
.bg-light {
    background-color: var(--light) !important;
}

/* ===== LAYOUT ===== */
.container {
  margin-inline: auto;
  width: clamp(320px, 92%, 1400px);
}
.container-single {
  margin-inline: auto;
  width: clamp(320px, 92%, 1200px);
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-1 {
    margin-top: 1rem !important;
}
.mt-2 {
    margin-top: 2rem !important;
}
.mt-3 {
    margin-top: 3rem !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-2 {
    padding-bottom: 2rem !important;
}

/* ===== BUTTONS ===== */
/* Base button */
.btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    user-select: none;
    transition: all 0.2s ease;
    --btn-fill: transparent;
    z-index: 0;
    isolation: isolate;

    font-size: 1.1rem;
    font-weight: 800;

    padding: 0.6rem 1rem;
    border: 1.5px solid var(--dark);
    background-color: transparent;
    border-radius: 20px 14px 14px 18px / 14px 20px 18px 14px;
    box-shadow: 2px 4px 0px 0px var(--dark);
}
.btn::before {
    content: "";
    position: absolute;
    top: 2px; 
    left: 1px;
    right: 0px;
    bottom: 0px;
    background: var(--btn-fill);
    z-index: -1;
    border-radius: 21px 16px 16px 20px / 16px 21px 18px 14px;
    transition: all 0.2s ease;
}
.btn:hover {
    --btn-fill: var(--dark);
    box-shadow: 1px 2px 0px 0px var(--dark);
}
/* Variants */
.btn-primary {
    --btn-fill: linear-gradient(-45deg, var(--primary-shade) 40%, var(--primary) 100%);
    color: var(--dark) !important;
}
.btn-primary:hover {
    --btn-fill: linear-gradient(-45deg, var(--accent) 0%, var(--primary-shade) 80%);
    color: var(--darker);
}
.btn-secondary {
    --btn-fill: var(--white);
    color: var(--dark) !important;
}
.btn-secondary:hover {
    --btn-fill: var(--accent);
}
.btn-cta {
    --btn-fill: var(--darker);
    color: var(--light) !important;
    border-color: var(--primary);
}
.btn-cta:hover {
    --btn-fill: var(--darker);
}
.btn-outline {
    --btn-fill: transparent !important;
}
.btn-outline:hover {
    --btn-fill: transparent !important;
}
/* Sizes */
/* Width */
.btn-block {
    display: block;
    width: 100%;
}
/* Group */
.btn-group {
    display: flex;
    gap: 0;
}
.btn-group .btn {
    flex: 1;
}
/* Icon inside button */
.btn-icon-left {
    display: inline-flex;
    align-items: center;
}
.btn-icon-right {
    display: inline-flex;
    align-items: center;
}
.btn-icon-left span,
.btn-icon-right span {
    display: inline-block;
    margin-left: 1rem;
}
.btn.disabled,
button:disabled,
button.disabled,
a.disabled {
    color: var(--dark) !important;
    opacity: .6;
    cursor: not-allowed;
    pointer-events: none; 
}

/* Link button */
.btn-link {
    display: inline;
    cursor: pointer;
    text-decoration: none;
}

/* ===== FONTS ===== */
body {
    font-family: var(--font-primary);
    color: var(--dark);
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-accent);
    background: linear-gradient(90deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 2.6rem;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1.8;
    margin-bottom: 0px;
}
h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.8;
    margin-bottom: 0px;
}
h3 {
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.8;
    margin-bottom: 0px;
}
h4 {
    font-size: clamp(1.5rem, 2.8vw, 1.9rem);
    line-height: 1.7;
    margin-bottom: 0px;
}
p.display {
    font-size: clamp(1.4rem, 5vw, 1.6rem);
}
.txt-small {
    font-size: var(--small);
}
.txt-extra-small {
    font-size: 1rem;
}
.txt-center {
    text-align: center;
}
.txt-white {
    color: var(--white) !important;
}
.txt-gray {
    color: var(--dark-shade);
}
.strong {
    font-weight: 800;
}

/* ===== TOP BAR ===== */
/* 1. Mobile Layout */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
  padding: 8px 0;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* body {
  padding-top: 100px;
} */
.logo {
    max-width: 160px;
}
.drawer-logo {
    max-width: 140px;
    height: auto;
}
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--dark);
  z-index: 110;

  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;

  padding: 2rem;
  margin: 0;
  box-sizing: border-box;

  transition: right 0.4s cubic-bezier(0.77,0,0.175,1);
  
  list-style: none;
}
.nav-links.active {
  right: 0;
}
.menu-toggle {
    position: relative;
    z-index: 120;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.9rem;

    border: 1.5px solid var(--dark);
    background-color: transparent;
    border-radius: 20px 14px 14px 18px / 14px 20px 18px 14px;
}
.menu-toggle.active {
    border: 1.5px solid var(--light);
}
.bar {
  width: 20px;
  height: 2px;
  background: var(--dark);
  transition: 0.3s;
}
.menu-toggle.active .bar {
  background: var(--light);
}
/* animate bars */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links li a {
    color: var(--light);
    font-size: larger;
    text-decoration: none;
}
.nav-links.active .btn-primary {
    --btn-fill: var(var(--primary)) !important;
    color: var(--light) !important;
    border-color: var(--primary);
}

/* 4. Desktop Version */
@media (min-width: 768px) {
  .drawer-logo {
    display: none;
  }

  .menu-toggle {
    display: none; /* Hide burger */
  }

  .nav-links {
    position: static; /* Bring back to normal flow */
    height: auto;
    width: auto;
    flex-direction: row;
    padding: 0;
    background: transparent;
  }
  .nav-links li a {
    color: var(--dark);
    font-size: inherit;
    font-weight: 600;
    }
    .nav-links .btn-cta {
    --btn-fill: linear-gradient(-45deg, var(--primary-shade) 40%, var(--primary) 100%);
    color: var(--dark) !important;
    border: 2px solid var(--dark);
    }
    .nav-links .btn-cta:hover {
    --btn-fill: linear-gradient(-45deg, var(--accent) 0%, var(--primary-shade) 80%);
    }

    

}
.landing-section {
    text-align: center;
}
#hero-landing {
    padding-top: 7rem;
}
.hero-img {
    width: 100%;
    height: auto;
}
.hero-card img {
    display: block;
    width: 100%;
    height: auto;
}
.hero-cards {
    column-count: 2;
    column-gap: 1rem; 
    margin-top: 3rem;
}
.hero-card, .hero-video {
    border-radius: 1rem;
    break-inside: avoid;
    margin-bottom: 1rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    #hero-landing {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2.8rem;
    align-items: center;
    padding-top: 9rem;
    grid-template-areas: "right left";
    }
    #hero-landing > :nth-child(1) {
        grid-area: left;
    }

    #hero-landing > :nth-child(2) {
        grid-area: right;
    }
    .hero-img {
        max-width: 530px;
    }
    .hero-cards {
    margin-top: 0;
    }
}

.animate {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate:nth-child(1) { transition-delay: 0.1s; }
.animate:nth-child(2) { transition-delay: 0.2s; }
.animate:nth-child(3) { transition-delay: 0.3s; }

#logos {
    margin-top: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}
.logos-track {
    display: flex;
    gap: 0;
    transition: transform 0.28s ease;
    will-change: transform;
}
.logos-page {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
}
.logo-slide {
    width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    min-width: 0;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-slide img {
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
}
.logo-slide-text {
    border: 1.5px solid rgba(0, 51, 72, 0.12);
    border-radius: 1rem;
    background: rgba(240, 244, 247, 0.65);
    padding: 1rem;
    box-sizing: border-box;
}
.logo-slide-text span {
    font-size: clamp(1rem, 2.6vw, 1.4rem);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.02em;
}
.logos-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.logos-dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 51, 72, 0.2);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.logos-dot.is-active {
    background: var(--primary);
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .logo-slide {
        width: calc((100% - 6rem) / 4);
        max-width: calc((100% - 6rem) / 4);
    }
}

/* TOURS */
.tours {
    padding-bottom: 4rem;
    margin-top: 3rem;
}
.tours-intro {
    margin-bottom: 2rem;
}
.tours-header-img {
    text-align: center;
}
.tours-header-img img {
    width: clamp(360px, 55vw, 620px);
    height: auto;
}
.tour-filters.tour-filters-desktop {
    display: none;
}
.tour-filters-inline {
    display: none;
}
.tour-filters {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 14%;
    align-items: stretch;
    position: sticky;
    top: 79px;
    z-index: 82;
    margin-bottom: 3rem;
    background-color: var(--light);
    
}
.tour-cards-shell {
    width: 100%;
}
.filter-column {
    appearance: none;
    background-color: var(--light);
    text-align: center;
    border: none;
    border-right: solid 1px var(--white);
    padding: 0.7rem 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 0;
    color: #76858a;
    transition: background-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
}

@media (min-width: 768px) {
    .tours-intro {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: center;
        gap: 2rem;
        margin-top: 6rem;
    }

    .tours-header-img {
        text-align: right;
        order: 2;
    }

    .tours-header-img img {
        width: min(100%, 560px);
    }

    .tours-intro .txt-center {
        text-align: right;
        order: 1;
    }

    .tour-filters.tour-filters-mobile {
        display: none;
    }

    .tours-intro .tour-filters.tour-filters-desktop {
        display: inline-flex;
        margin-top: 0rem;
        margin-bottom: 1rem;
        background-color: transparent;
        gap: 1.8rem;
        position: static;
        top: auto;
    }

    .tours-intro .tour-filters-desktop .filter-column {
        flex-direction: row;
        gap: 0.8rem;
        background: transparent;
        box-shadow: none;
    }

    .tours-intro .tour-filters-desktop .destination-filter.is-active,
    .tours-intro .tour-filters-desktop .filters-toggle,
    .tours-intro .tour-filters-desktop .filters-toggle[aria-expanded="true"] {
        background: transparent;
        box-shadow: none;

    }

    .tours-intro .tour-filters-inline {
        display: inline-grid;
        grid-template-columns: repeat(3, max-content);
        gap: 1rem;
        justify-content: end;
        justify-self: end;
    }

    .tours-intro .filters-inline-field {
        display: grid;
        gap: 0.5rem;
        text-align: left;
    }

    .tours-intro .filters-inline-field .filter-label {
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--dark-shade);
        margin-left: 0.35rem;
    }

    .tours-intro .filters-inline-field .filter-select {
        min-width: 180px;
        padding: 0.8rem 2.9rem 0.8rem 1rem;
        border: 1px solid rgba(0, 51, 72, 0.14);
        border-radius: 999px;
        background-color: rgba(255, 255, 255, 0.88);
        box-shadow: 0 10px 24px rgba(0, 51, 72, 0.08);
        font-size: 0.98rem;
        font-weight: 600;
        transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }

    .tours-intro .filters-inline-field .filter-select:hover {
        border-color: rgba(80, 183, 235, 0.45);
    }

    .tours-intro .filters-inline-field .filter-select:focus {
        outline: none;
        border-color: rgba(80, 183, 235, 0.8);
        box-shadow: 0 0 0 4px rgba(80, 183, 235, 0.14), 0 12px 28px rgba(0, 51, 72, 0.1);
        transform: translateY(-1px);
    }

    .tours-intro .tour-filters-desktop .filter-column p {
        font-size: 1.3rem;
    }

    .tours-intro .tour-filters-desktop .destination-filter.is-active p {
        display: inline;
        background-image: linear-gradient(90deg, var(--accent), var(--primary));
        background-repeat: no-repeat;
        background-size: 100% 25%;
        background-position: 0 100%;
    }
}
.filter-column img {
    width: auto;
    height: 28px;
    margin-bottom: 0.4rem;
    filter: grayscale(60%);
    opacity: 0.4;
}
.filters-toggle img {
    filter: none;
    opacity: 1;
}
.filter-column p {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 600;
}
.filters-toggle {
    background-color: var(--dark);
    color: var(--white);
    border-radius: 0 0 0 8px;
    box-shadow: var(--shadow-2);
}
.destination-filter.is-active,
.filters-toggle[aria-expanded="true"] {
    background-color: var(--white);
    box-shadow: var(--shadow-1);
    border-radius: 0 0 8px 8px;
    transform: translateY(-2px);
}
.destination-filter.is-active p,
.filters-toggle[aria-expanded="true"] p {
    color: var(--dark);
}
.destination-filter.is-active img,
.filters-toggle[aria-expanded="true"] img {
    filter: none;
    opacity: 1;
}
.filters-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 40, 57, 0.28);
    z-index: 119;
}
.filters-backdrop[hidden],
.filters-drawer[hidden] {
    display: none !important;
}
.filters-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 380px);
    height: 100dvh;
    background: var(--white);
    z-index: 120;
    box-shadow: -16px 0 40px rgba(0, 51, 72, 0.18);
    transform: translateX(100%);
    transition: transform 0.24s ease;
    display: flex;
    flex-direction: column;
}
.filters-drawer.is-open {
    transform: translateX(0);
}
.filters-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(0, 51, 72, 0.12);
}
.filters-drawer__header h3 {
    margin: 0;
    font-family: var(--font-primary);
    background: none;
    -webkit-text-fill-color: currentcolor;
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 800;
}
.filters-drawer__close {
    border: 0;
    background: transparent;
    color: var(--dark);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}
.filters-drawer__body {
    display: grid;
    gap: 1.2rem;
    padding: 1.25rem;
}
.filters-drawer__footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 0 1.25rem 1.25rem;
    margin-top: 1rem;
}
.filters-drawer__field {
    display: grid;
    gap: 0.5rem;
}
.filter-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--dark);
}
.filter-select {
    appearance: none;
    width: 100%;
    font-size: 1rem;
    padding: 0.7rem 0.9rem;
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid var(--dark);
    border-radius: 20px 14px 14px 18px / 14px 20px 18px 14px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}
.filter-select option {
    background-color: var(--white);
    color: var(--dark);
}

.tour-cards {
    --tour-card-width: min(78vw, 420px);
    --tour-edge-space: 1rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 var(--tour-edge-space) calc(0.8rem + 6px);
    scrollbar-width: none;
}
.tour-cards::-webkit-scrollbar {
    display: none;
}
.tour-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 var(--tour-card-width);
    width: var(--tour-card-width);
    height: 100%;
    scroll-snap-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.tour-card.is-filtered-out {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}
.top-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 28px;
    max-height: 420px;
    transition: all 0.2s;
}
.top-card:hover {
    box-shadow: var(--shadow-1);
}

@media (min-width: 768px) {
    .top-card {
        max-height: 424px;
    }
}
.img-card {
    display: block;
    width: 100%;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
}
.top-card > a:not(.card-booking) {
    display: block;
    flex: 0 0 100%;
    width: 100%;
}
.card-features {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.card-features span {
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: 600;
    background-color: var(--light);
    padding: 5px 10px;
    border-radius: 8px;
}

.card-booking {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-inline: auto;
    z-index: 10;
    width: 40%;
    font-size: 1.3rem;
    font-weight: 800 !important;
    line-height: 1.2;
    
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 1.6rem 0 0 0;
    border: none;
    border-top: solid 1.5px transparent;
    border-left: solid 1.5px transparent;
    color: var(--white) !important;

    display: inline-block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    user-select: none;
    transition: all 0.4s ease;
    isolation: isolate;
    padding: 0.8rem 2.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-shadow: 0 2px 0px rgba(0,0,0,0.3);
}
.card-booking:hover {
    border-top: solid 1.5px var(--light);
    border-left: solid 1.5px var(--light);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    text-shadow: 0 2px 0px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}
.card-booking.is-secondary {
    background: var(--light);
    color: var(--dark) !important;
    text-shadow: none;
    border-top: solid 1.5px var(--dark-shade);
    border-left: solid 1.5px var(--dark-shade);
}

.card-link-img,
.card-link-title,
.card-read-more {
    text-decoration: none;
    color: inherit;
}

.card-link-img {
    display: block;
}

.card-link-title h3 {
    transition: color 0.2s ease;
}

.card-link-title:hover h3,
.card-read-more:hover {
    color: var(--accent);
}

.single-booking-cta {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 120;
}
.section-nav-booking {
    display: none;
}
.tour-card h3 {
    font-family: var(--font-primary);
    background: none;
    -webkit-background-clip: border-box; 
    background-clip: border-box;
    -webkit-text-fill-color: currentcolor; 
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem;
}
.tour-card p {
    margin-top: 0;
    font-size: var(--small);
    color: var(--dark-shade);
}
.tour-card a {
    text-decoration: none;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}
.tour-card a.read-more {
    display: inline;
    background-image: linear-gradient(90deg, var(--accent), var(--primary));
    color: var(--darker);
    background-repeat: no-repeat;
    background-size: 92px 25%;
    background-position: 0 100%;
    transition: all 0.2s;
}
.tour-card a.read-more:hover {
    translate: 4px 0;
    color: var(--accent);
}
.tour-empty-state {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 400;
}

@media (min-width: 768px) {
    .tour-filters {
        grid-template-columns: 1fr 1fr 1fr 14%;
    }

    .tour-cards {
        --tour-card-width: min(64vw, 460px);
        --tour-edge-space: calc(50% - (var(--tour-card-width) / 2));
    }

    .tour-card.highlighted {
        flex-basis: calc(var(--tour-card-width) * 2);
        width: calc(var(--tour-card-width) * 2);
    }
}

@media (min-width: 1100px) {
    .tour-cards-shell {
        width: clamp(320px, 92%, 1600px);
        margin-inline: auto;
    }

    .tour-cards {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem;
        overflow: visible;
        scroll-snap-type: none;
        scroll-behavior: auto;
        padding: 0;
        scrollbar-width: auto;
    }

    .tour-card {
        width: 100%;
        flex: initial;
    }

    .tour-card.highlighted {
        width: 100%;
        grid-column: span 2;
    }

    .tour-cards::-webkit-scrollbar {
        display: initial;
    }
}

.reviews {
    position: relative;
    background-color: var(--dark);
    text-align: center;
    min-height: 400px;
    padding: 2rem 0;
    padding-bottom: 3rem;
    border-radius: 0 0 1.5rem 1.5rem;
    overflow: hidden;
}
.reviews::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 182px;
    background: url('../img/reviews-top.svg') top center / cover no-repeat;
    pointer-events: none;
}
.reviews .container {
    position: relative;
    z-index: 1;
}
.reviews h1 {
    color: var(--white);
}

.no-gradient {
    background: transparent !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    color: inherit;
}
.reviews p a {
    color: var(--accent);
}
.card-review {
    color: var(--dark);
    display: grid;
    grid-template-columns: 1fr auto;
    background-color: var(--white);
    padding: 1.2rem;
    text-align: left;
    border-radius: 0.8rem;
    gap: 1rem;            /* This is the vertical space between cards */
    margin-top: 1rem;
}
.review-head-left {
    display: block;
}
.avatar-img {
    float: left;
    margin-right: 0.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.review-head-left h5 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin: 0;
}
.review-head-right {
    text-align: right;
}
.card-review p {
    font-size: 0.9rem;
}
.stars {
    color: #ffcc41;
}
.google-logo {
    max-width: 24px;
    max-height: 24px;
}
.review-body {
    grid-column: 1 / -1;
}
.review-body p:first-of-type {
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    #reviews {
        padding-bottom: 8rem;
        margin-top: 5rem;
    }
    .reviews .container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        align-items: start;
    }

    .reviews .container > h1,
    .reviews .container > p {
        grid-column: 1 / -1;
    }
    .reviews h1 {
        margin-bottom: 0;
    }

    .card-review {
        margin-top: 0;
        height: 100%;
    }
}

.FAQs-section {
    display: grid;
    gap: 2rem;
    padding: 2rem 0 4rem;
}
.faqs-intro {
    text-align: center;
}
.accordion {
    display: grid;
}
.accordion-item {
    border-bottom: 1px solid var(--primary-shade);
    background: var(--white);
    overflow: hidden;
}
.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0;
    border: 0;
    background: transparent;
    color: var(--dark);
    font: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.accordion-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.2s ease;
    font-weight: 400;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}
.accordion-item.is-open .accordion-panel {
    max-height: 24rem;
    padding-bottom: 1.2rem;
}
.accordion-panel p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-shade);
}

@media (min-width: 900px) {
    .FAQs-section {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        align-items: start;
        margin-top: 5rem;
    }
}

.meet-us {
    text-align: center;
}

.meet-us-img {
    --meet-bg-y: 50%;
    background: url('../img/bg-01.png');
    background-size: 90% auto;
    background-position: left var(--meet-bg-y);
    background-repeat: no-repeat;
    text-align: center;
    will-change: background-position;
}
.meet-us-img img {
    max-height: 440px;
    width: auto;
}

@media (min-width: 768px) {
    #meetus {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: 2rem;
        width: clamp(320px, 92%, 1600px);
        margin-inline: auto;
        margin-top: 5rem;
    }

    .meet-us {
        text-align: left;
    }

    .meet-us-img {
        background-image: url('../img/bg-02.png');
        text-align: center;
    }
}

.brisbane-guide {
    text-align: center;
    margin-top: 5rem;
    margin-bottom: 5rem;
}
.cards-guide {
    --card-guide-width: min(78vw, 420px);
    --card-guide-edge-space: 1rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 var(--card-guide-edge-space) calc(0.8rem + 6px);
    margin-top: 2rem;
    scrollbar-width: none;
}
.cards-guide::-webkit-scrollbar {
    display: none;
}
.card-guide {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    flex: 0 0 var(--card-guide-width);
    width: var(--card-guide-width);
    height: 380px;
    scroll-snap-align: center;
}
.card-guide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
}
.card-guide-text {
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--white);
    padding: 2rem;
    padding-bottom: 3rem;
    font-weight: 600;
    background: linear-gradient(
        to bottom, 
        rgba(0, 40, 57, 0) 0%, 
        rgba(0, 40, 57, 0.6) 100%
    );
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.btn-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: solid 1.5px var(--light);
    border-radius: 21px 16px 16px 20px / 16px 21px 18px 14px;
}
.card-guide-text a {
    text-decoration: none;
    color: var(--light);
    font-weight: 800;
    font-size: 1.2rem;
}

@media (min-width: 900px) {
    .brisbane-guide {
    margin-top: 7rem;
    }
    .cards-guide {
        width: clamp(320px, 92%, 1600px);
        margin-inline: auto;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        overflow: visible;
        scroll-snap-type: none;
        scroll-behavior: auto;
        padding: 0;
        scrollbar-width: auto;
    }

    .cards-guide::-webkit-scrollbar {
        display: initial;
    }

    .card-guide {
        width: 100%;
        flex: initial;
        height: 520px;
    }
}

.site-footer {
    position: relative;
    margin-top: 9rem;
    padding: 5.5rem 0 2rem;
    background-color: var(--dark);
    color: var(--light);
}
.site-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 180px;
    background: url('../img/reviews-top.svg') top center / cover no-repeat;
    pointer-events: none;
}
.footer-inner {
    position: relative;
    z-index: 1;
}
.footer-brand {
    max-width: 38rem;
    margin-bottom: 2rem;
    margin-inline: auto;
    text-align: center;
    position: relative;
    top: -142px;
    z-index: 2;
    margin-bottom: -110px;
}
.footer-logo {
    max-width: 170px;
    height: auto;
    margin-bottom: 1rem;
}
.footer-brand p,
.footer-column p,
.copy {
    margin: 0.35rem 0;
}
.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.footer-column h5 {
    margin: 0 0 0.8rem;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
}
.site-footer a {
    color: var(--light);
    text-decoration: none;
}
.site-footer a:hover {
    color: var(--white);
}
.footer-bottom {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.copy {
    font-size: 0.92rem;
}

@media (min-width: 800px) {
    .site-footer {
        overflow: visible;
        margin-top: 12rem;
    }

    .footer-columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* SINGLE PAGE */
.single-hero {
    position: relative;
    background-image: url("../img/single-bg.jpg");
    height: 380px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 16px;
    box-sizing: border-box;
}

.single-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70%;
    
    background: linear-gradient(
        to top,
        rgba(0, 51, 72, 1),
        rgba(0, 51, 72, 0)
    );
    
    pointer-events: none;
}
.resume {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.8rem;
    box-shadow: var(--shadow-subtle);
    align-items: center;
}

.resume > div {
    position: relative;
}

.resume > div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: -1rem;
    width: 1px;
    height: 70%;
    background: rgba(0, 0, 0, 0.15);
}
.resume-title {
    color: var(--dark-shade);
    font-size: 0.75rem;
    margin: 0;
    font-weight: 600
}
.resume p.display {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

.single-hero h1 {
    line-height: 1.1;
}

.single-hero h1,
.single-hero div {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .single-hero {
        height: 550px;
    }
    .resume {
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    }
    .resume-title {
    font-size: smaller;
    }
    .resume p.display {
    font-size: clamp(1.4rem, 5vw, 1.6rem);
    }
}

/* SUB MENU */
.section-nav {
    position: sticky;
    top: 79px;
    z-index: 10;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: var(--white);
    border-bottom: 1px solid #eee;
}

/* list */
.section-nav ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 10px 20px;
    list-style: none;

    overflow-x: auto;
    scroll-behavior: smooth;
}

.section-nav ul::-webkit-scrollbar {
    display: none;
}

/* links */
.section-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
}

/* hover / active underline */
.section-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--light);
    transition: width 0.3s ease;
}

.section-nav a:hover::after,
.section-nav a:focus::after {
    width: 100%;
}

.section-nav-booking .btn::after {
    display: none;
}

@media (min-width: 768px) {
    .section-nav ul {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
        align-items: center;
    }

    .section-nav-booking .btn {
        padding: 0.45rem 0.9rem;
    }
}

.single-tour-info h2 {
    margin-top: 2.9rem;
}
.single-highlights-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}
.single-highlights-pills span {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 0.9rem;
    background: var(--light);
    font-weight: 700;
    color: var(--dark);
}
.free-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    margin-top: 1.5rem;
}
.free-steps h4 {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.8rem;
    font-size: 1.2rem;
}
.start-end-points {
    margin-top: 1.5rem;
}
.start-end-points {
    display: grid;
    gap: 1rem;
}
.points-card {
    box-sizing: border-box;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}
.points-card img {
    padding: 2rem 0 0 2rem;
}
.points-card img.end-point {
    padding: 2rem 2rem 0 0;
    margin-left: -2rem;
}
.points-card p {
    padding: 0 2rem;
}
@media (min-width: 768px) {
    .start-end-points {
        grid-template-columns: repeat(2, 1fr);
    }
    .free-steps {
        gap: 3rem;
    }
    .free-steps h4 {
    line-height: 4rem;
    font-size: 2.4rem;
    }
}

/* MAPS */
.map-wrapper {
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    margin-top: 1rem;
}

#map {
    width: 100%;
    height: 480px;
    z-index: 5;
}

/* Custom marker styles */
.custom-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.custom-marker span {
    transform: rotate(45deg);
    font-size: 13px;
    font-weight: bold;
    color: #fff;
}

.marker-start { background: var(--accent); }
.marker-end   { background: var(--primary); }

.reviews .container-single {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .single-booking-cta {
        display: none;
    }

    .section-nav-booking {
        display: list-item;
    }

}

img.map{
    border-radius: 1.2rem;
    margin-top: 1.5rem;
}

/* BOOKING PAGE */
.booking-hero .container {
    position: relative;
    z-index: 1;
}
.resume-booking {
    position: relative;
    z-index: 10;
    margin-top: -18px;
}
.booking-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.booking-hero-copy {
    max-width: 40rem;
    margin: 0.75rem auto 0;
}
.booking-layout {
    display: grid;
    gap: 1.5rem;
    padding: 2rem 0 4rem;
}
.booking-sidebar {
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 1rem;
    order: 2;
}
.booking-main {
    display: grid;
    gap: 1.5rem;
    order: 1;
}
.booking-card {
    background: var(--white);
    border-radius: 0.8rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-subtle);
}
.booking-title {
    margin: 0 0 1rem;
}
.booking-card h3 {
    line-height: 2.6rem;
}
.booking-sidebar ul {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 1rem;
}
.booking-support {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-form {
    display: grid;
    gap: 1rem;
}

.booking-grid {
    display: grid;
    gap: 1rem;
}
.booking-field {
    display: grid;
    gap: 0.45rem;
}
.booking-field label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}
.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 1rem;
    font: inherit;
    color: var(--dark);
    background: var(--white);
    border: 1.5px solid rgba(0, 51, 72, 0.18);
    border-radius: 1.2rem;
}
.booking-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.8rem;
}
.booking-field textarea {
    resize: vertical;
    min-height: 8rem;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: rgba(80, 183, 235, 0.8);
    box-shadow: 0 0 0 4px rgba(80, 183, 235, 0.14);
}
.booking-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
    font-size: 0.95rem;
    color: var(--dark-shade);
}
.booking-check input {
    margin-top: 0.2rem;
}
.booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}
.booking-summary-img {
    border-radius: 1.4rem;
    margin-bottom: 1rem;
}
.booking-summary-list {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.7rem;
}
@media (min-width: 900px) {
    .booking-layout {
        grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
        align-items: start;
        gap: 2rem;
    }

    .booking-sidebar {
        order: 1;
    }

    .booking-main {
        order: 2;
    }

    .booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.about-pilgrim {
    display: grid;
    gap: 2rem;
    margin-top: 8rem;
}
.about-pilgrim div:first-child {
    padding: 0 3rem;
}


@media (min-width: 900px) {
    .about-pilgrim {
        grid-template-columns: 41.6% 1fr;
        align-items: center;
    }
}