/* ==========================================================================
   Dreams Tours and Vacation — main stylesheet
   Palette pulled from the brand logo: deep olive green + gold/orange sun,
   with the magenta accent used for the "Tours and vacation" wordmark.
   ========================================================================== */

:root {
    --brand-green-dark: #3c4a17;
    --brand-green: #59691f;
    --brand-gold: #f2b52b;
    --brand-gold-light: #ffd873;
    --brand-orange: #F39C12;
    --brand-red: #E74C3C;
    /* --brand-magenta: #b81e6b; */
    --brand-cream: #fbf8f1;
    --brand-ink: #23260f;
    --gradient-gold: linear-gradient(120deg, #f2b52b 0%, #f2b52b 100%);
    /* --gradient-gold: linear-gradient(120deg, #f2b52b 0%, #ef7c3c 100%); */
    --gradient-brand: linear-gradient(120deg, #59691f 0%, #3c4a17 100%);

    /* Inner-page tokens (--color-*) — kept in sync with the --brand-* palette above.
       ~187 rules across this stylesheet reference these, so they must stay defined. */
    --color-green-dark: #3c4a17;
    --color-green: #59691f;
    --color-green-light: #7c8f3a;
    --color-gold: #f2b52b;
    --color-gold-light: #ffd873;
    --color-orange: #F39C12;
    --color-magenta: #E74C3C;
    --color-cream: #fbf8f1;
    --color-white: #ffffff;
    --color-ink: #23260f;
    --color-text: #4a4c3d;
    --color-text-light: #767a63;
    --color-border: #e7e2d3;
    --font-heading: 'Fraunces', serif;
    --font-body: 'Nunito', sans-serif;

    --shadow-sm: 0 2px 10px rgba(35, 38, 15, 0.06);
    --shadow-md: 0 10px 30px rgba(35, 38, 15, 0.10);
    --shadow-lg: 0 20px 50px rgba(35, 38, 15, 0.16);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;

    --header-h: 96px;
    --header-overlay: 110px;
    --topbar-h: 52px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--brand-green-dark);
    line-height: 1.25;
    font-weight: 700;
}
/* 
.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
} */

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 60px 0;
}

.bg-alt {
    background: var(--brand-cream);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-orange);
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
    padding: 8px 18px 8px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.2);
}

.section-title {
    font-size: clamp(2.2rem, 4.2vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.section-desc {
    max-width: 620px;
    color: var(--color-text-light);
    font-size: 1.02rem;
}

.section-head {
    margin-bottom: 48px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head.center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-tag.center-tag {
    justify-content: center;
}

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-ink);
    box-shadow: 0 10px 28px rgba(243, 156, 18, 0.4);
}

.btn-brand {
    background: var(--brand-green);
    color: #fff;
    font-weight: 700;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 34px rgba(243, 156, 18, 0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-green);
    color: var(--color-green);
}

.btn-outline:hover {
    background: var(--color-green);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--color-green-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ---------------- Topbar ---------------- */
.topbar {
    position: relative;
    z-index: 200;
    background: var(--brand-green-dark);
    color: #eef0e2;
    font-size: 0.82rem;
}

/* Home page: topbar floats transparently over the hero photo */
.has-hero .topbar {
    background: transparent;
}

.has-hero .topbar::before {
    content: none;
}

.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 46px;
    padding: 8px 0;
}

.topbar-contact {
    display: flex;
    gap: 24px;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    opacity: 0.9;
    transition: color 0.2s ease;
}

.topbar-contact a i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.topbar-contact a:hover {
    color: var(--color-gold-light);
}

.topbar-badge {
    color: var(--color-gold-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 156, 18, 0.12);
    border: 1px solid rgba(243, 156, 18, 0.35);
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
}

.topbar-badge-logo {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    object-fit: contain;
    flex: none;
}

.topbar-social {
    display: flex;
    gap: 10px;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.topbar-social a:hover {
    background: var(--color-gold);
    color: var(--color-ink);
    transform: translateY(-2px);
}

/* ---------------- Header / Nav ---------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: white;
    box-shadow: none;
    border-bottom: none;
    padding: 0px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 74px;
    background: #fff;
    border-radius: 0px;
    /* box-shadow: 0 12px 34px rgba(35, 38, 15, 0.14); */
    padding: 0 14px 0 28px;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-radius 0.3s ease, height 0.3s ease;
}

/* solid bar once scrolled */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}

.site-header.scrolled .header-inner {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--color-ink);
    position: relative;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--gradient-gold);
    transition: width 0.25s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--color-green-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-dark);
    font-size: 1rem;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease;
}

.header-search-btn:hover {
    background: var(--color-cream);
    color: var(--color-orange);
}

.header-talk {
    padding: 13px 24px;
    font-size: 0.88rem;
}

.header-talk i {
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 34px;
}

.nav-toggle span {
    height: 3px;
    width: 100%;
    background: var(--color-green-dark);
    border-radius: 2px;
    transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------------- Hero slider ---------------- */
.hero {
    position: relative;
    min-height: 100vh;
    margin-top: calc(-1 * (var(--topbar-h) + var(--header-overlay)));
    padding-top: calc(var(--topbar-h) + var(--header-overlay));
    display: flex;
    align-items: center;
    background: var(--color-green-dark);
    isolation: isolate;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 65%;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.4s ease;
    animation: heroZoom 9s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 3, 0.68);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 6, 0.45) 0%, rgba(15, 17, 6, 0.2) 40%, rgba(15, 17, 6, 0.78) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-text-slides {
    display: grid;
}

.hero-text-slide {
    grid-area: 1 / 1;
    pointer-events: none;
}

.hero-text-slide>* {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-text-slide.active {
    pointer-events: auto;
}

.hero-text-slide.active>* {
    opacity: 1;
    transform: translateY(0);
}

/* staggered entrance — Touria-style */
.hero-text-slide.active .hero-kicker {
    transition-delay: 0.05s;
}

.hero-text-slide.active h1 {
    transition-delay: 0.18s;
}

.hero-text-slide.active p {
    transition-delay: 0.32s;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 18px;
}

.hero-kicker::before, .hero-kicker::after {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--color-gold);
    display: inline-block;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.25s ease;
}

.hero-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    width: 28px;
    border-radius: 50px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}

.hero-arrow:hover {
    background: var(--color-gold);
    color: var(--color-ink);
    border-color: var(--color-gold);
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 216, 115, 0.6);
    color: var(--color-gold-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}

.hero-badge-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    object-fit: contain;
    flex: none;
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
}

.hero p {
    font-size: 1.05rem;
    color: #f1efe4;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    opacity: 0.75;
    font-size: 1.4rem;
    animation: bounce 2.2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* ---------------- Touria full-bleed hero ---------------- */
.hero-touria {
    text-align: left;
}

.hero-touria-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-touria .hero-content {
    max-width: 640px;
    color: #fff;
}

.hero-kicker-script {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    line-height: 1;
    color: var(--color-gold-light);
    margin-bottom: 10px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4);
}

.hero-touria h1 {
    text-align: left;
    font-size: clamp(2.4rem, 5.6vw, 4rem);
    margin-bottom: 18px;
}

.hero-touria p {
    margin-left: 0;
    margin-right: 0;
    max-width: 520px;
    font-size: 1.05rem;
}

.hero-touria .hero-buttons {
    justify-content: flex-start;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 30px;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-features i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 1rem;
    backdrop-filter: blur(3px);
}

.hero-touria .hero-dots {
    justify-content: flex-start;
    margin-top: 34px;
}

/* dashed flight path */
.hero-path {
    position: absolute;
    z-index: 2;
    top: 15%;
    left: 7%;
    width: min(520px, 42%);
    height: auto;
    pointer-events: none;
    opacity: 0.85;
}

/* right-side floating cards */
.hero-cards {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}

.hero-pop-card {
    width: 330px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 18px;
}

.hero-pop-label {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.hero-pop-media {
    position: relative;
    height: 200px;
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.hero-pop-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 6, 0) 40%, rgba(15, 17, 6, 0.72) 100%);
}

.hero-pop-arrow {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
}

.hero-pop-arrow:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

.hero-pop-name {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 16px;
    line-height: 1.3;
}

.hero-trust-card {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border-radius: 50px;
    padding: 10px 24px 10px 10px;
    box-shadow: var(--shadow-lg);
}

.hero-trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex: none;
}

.hero-trust-card strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-green-dark);
    font-size: 0.98rem;
}

.hero-trust-card span {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

/* ---------------- Hero search bar ---------------- */
.hero-search-wrap {
    position: relative;
    z-index: 5;
    margin-top: -46px;
}

.hero-search {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(35, 38, 15, 0.18);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
}

.hero-search-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 20px;
    border-right: 1px solid var(--color-border);
}

.hero-search-field:nth-child(2) {
    border-right: none;
}

.hero-search-field label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-orange);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-search-field label i {
    color: var(--color-gold);
}

.hero-search-field select {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-ink);
    cursor: pointer;
    padding: 2px 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23767a63' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}

.hero-search-btn {
    background: var(--gradient-gold);
    color: var(--color-ink);
    border: none;
    border-radius: calc(var(--radius-lg) - 6px);
    padding: 0 34px;
    font-weight: 800;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(243, 156, 18, 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hero-search-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 30px rgba(243, 156, 18, 0.5);
}

/* ---------------- Trust strip ---------------- */
.trust-strip {
    background: var(--gradient-brand);
    color: #fff;
    padding: 48px 0;
    position: relative;
}

.trust-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-grid div {
    position: relative;
    padding: 4px 10px;
    transition: transform 0.3s ease;
}

.trust-grid div:hover {
    transform: translateY(-4px);
}

.trust-grid div:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 8%;
    right: -10px;
    height: 84%;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.trust-grid div strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3vw, 2.8rem);
    letter-spacing: -0.01em;
    color: var(--color-gold-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.trust-grid div span {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 600;
}

/* ---------------- Marquee band ---------------- */
.marquee-band {
    background: var(--gradient-gold);
    color: var(--color-ink);
    overflow: hidden;
    padding: 18px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-right: 52px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.marquee-track i {
    font-size: 0.9rem;
    opacity: 0.8;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------------- About brief ---------------- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-decor-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.16), transparent 70%);
    top: -140px;
    left: -160px;
}

.about-decor-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(184, 30, 107, 0.10), transparent 70%);
    bottom: -120px;
    right: -140px;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media>img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-media-frame {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -34px;
    right: -30px;
    width: 55%;
    height: 190px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 6px solid var(--color-cream);
    box-shadow: var(--shadow-lg);
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.about-media:hover .about-img-accent {
    transform: rotate(0deg) scale(1.03);
}

.about-media-badge {
    position: absolute;
    top: -22px;
    left: -22px;
    background: #fff;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.about-media-badge i {
    font-size: 1.8rem;
    color: var(--brand-gold);
}

.about-media-badge strong {
    display: block;
    font-size: 1.3rem;
    color: var(--brand-green-dark);
}

.about-media-badge span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.why-list {
    margin-top: 30px;
    display: grid;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
    transition: padding-left 0.25s ease;
}

.why-item:first-child {
    padding-top: 0;
}

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

.why-item:hover {
    padding-left: 6px;
}

.why-item .icon {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.why-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.92rem;
    color: var(--color-text-light);
}

.about-more-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 32px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-green);
    padding-bottom: 3px;
    border-bottom: 2px solid var(--color-gold);
}

.about-more-link i {
    transition: transform 0.25s ease;
}

.about-more-link:hover {
    color: var(--color-magenta);
}

.about-more-link:hover i {
    transform: translateX(5px);
}

/* ---------------- Services ---------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    position: relative;
    background: #fff;
    padding: 38px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--color-gold);
    background: var(--gradient-brand);
}

.service-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-border);
    opacity: 0.6;
    line-height: 1;
    transition: color 0.35s ease, opacity 0.35s ease;
}

.service-card:hover .service-num {
    color: rgba(255, 255, 255, 0.18);
    opacity: 1;
}

.service-card .icon {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.18), rgba(243, 156, 18, 0.18));
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.service-card:hover .icon {
    background: var(--gradient-gold);
    color: var(--color-ink);
    transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
    position: relative;
    font-size: 1.15rem;
    margin-bottom: 10px;
    transition: color 0.35s ease;
}

.service-card p {
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: color 0.35s ease;
}

.service-card:hover h3 {
    color: #fff;
}

.service-card:hover p {
    color: #d9dcc5;
}

/* ---------------- Packages ---------------- */
.pkg-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.pkg-chip {
    background: #fff;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.pkg-chip:hover {
    border-color: var(--color-gold);
    color: var(--color-green-dark);
    transform: translateY(-2px);
}

.pkg-chip.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.packages-empty {
    display: none;
    text-align: center;
    padding: 50px 20px;
    color: var(--color-text-light);
}

.packages-empty i {
    font-size: 2.4rem;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.packages-empty p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.package-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.package-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 6, 0) 55%, rgba(15, 17, 6, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.package-card:hover .package-media img {
    transform: scale(1.1);
}

.package-card:hover .package-media::after {
    opacity: 1;
}

.package-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.package-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-green);
}

.package-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.package-meta i {
    color: var(--color-gold);
    font-size: 0.85rem;
}

.package-body h3 {
    font-size: 1.2rem;
    line-height: 1.35;
}

.package-route {
    font-size: 0.82rem;
    color: var(--color-magenta);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-route span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.package-body p.summary {
    font-size: 0.9rem;
    color: var(--color-text-light);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.view-package {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: var(--color-ink);
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    padding: 11px 22px;
    border-radius: 50px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.view-package:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.view-package i {
    transition: transform 0.25s ease;
}

.view-package:hover i {
    transform: translateX(4px);
}

/* ---------------- Package Modal (route/map style) ---------------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 6, 0.72);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--color-cream);
    max-width: 880px;
    width: 100%;
    max-height: 88vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-header {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 26px 34px;
    color: #fff;
}

.modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 6, 0.15) 0%, rgba(15, 17, 6, 0.85) 100%);
}

.modal-header h3, .modal-header span {
    position: relative;
    z-index: 1;
}

.modal-header h3 {
    color: #fff;
    font-size: 1.6rem;
}

.modal-header span {
    font-size: 0.85rem;
    color: var(--color-gold-light);
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-close:hover {
    background: var(--color-magenta);
    border-color: var(--color-magenta);
}

.modal-body {
    padding: 30px 34px 36px;
    overflow-y: auto;
}

.route-map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 30px;
}

.route-stop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green-dark);
}

.route-stop i {
    color: var(--color-magenta);
}

.route-arrow {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.itinerary-timeline {
    position: relative;
    padding-left: 8px;
}

.itinerary-day {
    position: relative;
    padding: 0 0 32px 42px;
    border-left: 2px dashed var(--color-border);
    margin-left: 15px;
}

.itinerary-day:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.itinerary-day .day-pin {
    position: absolute;
    left: -17px;
    top: -2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 0 0 4px var(--color-cream);
}

.itinerary-day h4 {
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.itinerary-day ul {
    display: grid;
    gap: 6px;
}

.itinerary-day ul li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding-left: 18px;
    position: relative;
}

.itinerary-day ul li::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.72rem;
    color: var(--color-magenta);
}

.modal-cta {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------------- Fleet ---------------- */
.fleet-category {
    margin-bottom: 54px;
}

.fleet-category:last-child {
    margin-bottom: 0;
}

.fleet-category-title {
    font-size: 1.3rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fleet-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.vehicle-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.vehicle-media {
    height: 190px;
    overflow: hidden;
    position: relative;
}

.vehicle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-media img {
    transform: scale(1.08);
}

.vehicle-media.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eee7d4, #f6f1e4);
    color: var(--color-text-light);
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
}

.vehicle-media.placeholder i {
    font-size: 2.2rem;
    color: var(--color-gold);
}

.self-drive-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-magenta);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
}

.vehicle-body {
    padding: 20px 22px 24px;
}

.vehicle-body h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 16px;
}

.vehicle-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.vehicle-specs i {
    color: var(--color-green);
}

.vehicle-body .btn {
    width: 100%;
}

/* ---------------- Fleet teaser (homepage) ---------------- */
.fleet-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.fleet-teaser-tile {
    position: relative;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fleet-teaser-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-teaser-tile:hover img {
    transform: scale(1.08);
}

.fleet-teaser-tile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eee7d4, #f6f1e4);
    color: var(--color-gold);
    font-size: 2rem;
}

.fleet-teaser-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(15, 17, 6, 0.75), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.fleet-teaser-cta {
    text-align: center;
}

.self-drive-section-compact {
    padding: 60px;
}

.self-drive-section-compact .self-drive-head {
    margin-bottom: 0;
}

/* ---------------- Self-drive Jaffna ---------------- */
.self-drive-section {
    background: var(--gradient-brand);
    color: #f1efe4;
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.self-drive-section::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.25), transparent 70%);
    top: -140px;
    right: -140px;
}

.self-drive-head {
    /* max-width: 640px; */
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.self-drive-head .section-tag {
    color: var(--color-gold-light);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 216, 115, 0.3);
}

.self-drive-head .section-tag::before {
    background: var(--color-gold-light);
}

.self-drive-head h2 {
    color: #fff;
}

.self-drive-head p {
    color: #d9dcc5;
}

.self-drive-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 22px;
}

.self-drive-requirements span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.self-drive-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.self-drive-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.self-drive-card .vehicle-media.placeholder {
    background: rgba(255, 255, 255, 0.08);
    color: #d9dcc5;
}

.self-drive-card .vehicle-media.placeholder i {
    color: var(--color-gold-light);
}

.self-drive-card-body {
    padding: 22px 24px 26px;
}

.self-drive-card-body h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.self-drive-card-body p {
    font-size: 0.86rem;
    color: #d9dcc5;
    margin-bottom: 18px;
}

/* ---------------- Drivers ---------------- */
.drivers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.drivers-points {
    margin-top: 26px;
    display: grid;
    gap: 16px;
}

.drivers-points li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
}

.drivers-points i {
    color: var(--color-gold);
    margin-top: 3px;
}

.drivers-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.drivers-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.drivers-media:hover img {
    transform: scale(1.06);
}

/* ---------------- Gallery ---------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 18px;
}

.gallery-grid a {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    display: block;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.1);
}

.gallery-grid a::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    background: rgba(20, 22, 10, 0);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-grid a:hover::after {
    opacity: 1;
    background: rgba(20, 22, 10, 0.35);
}

.gallery-grid .tall {
    grid-row: span 2;
}

.gallery-grid .wide {
    grid-column: span 2;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 4, 0.9);
    z-index: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    padding: 30px;
}

.lightbox-overlay.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 26px;
    right: 30px;
    color: #fff;
    font-size: 1.8rem;
}

/* ---------------- Fare table ---------------- */
.fare-table-wrap {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fare-table {
    width: 100%;
    border-collapse: collapse;
}

.fare-table th, .fare-table td {
    padding: 18px 26px;
    text-align: left;
    font-size: 0.95rem;
}

.fare-table thead th {
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fare-table tbody tr:nth-child(even) {
    background: #faf7ee;
}

.fare-table tbody td:not(:first-child) {
    font-weight: 600;
    color: var(--color-green-dark);
}

.fare-note {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ---- Rental-rates table extras (fleet.php) ---- */
.fare-table thead th i { color: var(--color-gold-light); margin-right: 6px; }
.fare-th-route { text-align: left !important; }
.fare-th-book { text-align: right !important; }

/* wider tables scroll sideways instead of clipping */
.fare-table-wrap.is-scroll { overflow: hidden; overflow-x: auto; }
.fare-table-wrap.is-scroll .fare-table { min-width: 820px; }

.fare-route-cell { display: flex; align-items: center; gap: 4px; }
.fare-route-icon {
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 auto;
    width: 36px; height: 36px;
    margin-right: 10px;
    border-radius: 10px;
    background: rgba(242,181,43,0.16);
    color: var(--color-orange);
    font-size: 1rem;
}
.fare-route-cell strong { color: var(--color-green-dark); font-weight: 700; }

.fare-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-green-dark);
    background: rgba(89,105,31,0.1);
}
.fare-badge-van { color: #a9781a; background: rgba(242,181,43,0.18); }

.fare-book-cell { text-align: right !important; }
.fare-book-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}
.fare-book-btn:hover { color: #fff; transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 18px rgba(37,211,102,0.45); }

/* ---------------- Blog teaser ---------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.blog-media {
    height: 170px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 2.2rem;
}

.blog-body {
    padding: 24px 24px 28px;
}

.blog-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-magenta);
    margin-bottom: 10px;
    display: inline-block;
}

.blog-body h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.blog-body p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green);
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

/* ---------------- FAQ ---------------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px;
    font-weight: 600;
    color: var(--color-green-dark);
    text-align: left;
    font-size: 0.98rem;
}

.faq-question i {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 26px 22px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* ---------------- CTA band ---------------- */
.cta-band {
    background: var(--gradient-brand);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.22), transparent 70%);
    top: -180px;
    left: -120px;
}

.cta-band::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(184, 30, 107, 0.16), transparent 70%);
    bottom: -160px;
    right: -100px;
}

.cta-band-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 64px 0;
    flex-wrap: wrap;
}

.cta-band-inner h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.cta-band-inner p {
    color: #d9dcc5;
    font-size: 1.02rem;
}

.cta-band-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------------- Footer ---------------- */
.site-footer {
    background: #262b12;
    color: #cfd2bd;
    padding-top: 70px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 60px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #fff;
    padding: 6px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: #aeb197;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-ink);
}

.footer-col h4 {
    color: #fff;
    font-size: 1.02rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: grid;
    gap: 12px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: #b4b79c;
}

.footer-col ul a:hover {
    color: var(--color-gold-light);
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: #b4b79c;
}

.footer-contact i {
    color: var(--color-gold);
    margin-top: 3px;
}

.footer-sltda {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}

.sltda-badge-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    object-fit: contain;
    flex: none;
}

.footer-sltda strong {
    color: #fff;
    font-size: 0.95rem;
}

.footer-sltda p {
    font-size: 0.8rem;
    color: #aeb197;
}

.footer-note {
    font-size: 0.82rem;
    color: #9a9d84;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 0.82rem;
    color: #8d9077;
    flex-wrap: wrap;
    gap: 8px;
}

/* ---------------- Floating widgets ---------------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 300;
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ---------------- Back-to-top (scroll-progress ring) ---------------- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 26px;
    z-index: 1049;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--brand-red);
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.85);
    transition: opacity .35s ease, transform .35s ease, box-shadow .3s ease;
    box-shadow: 0 8px 22px rgba(35, 38, 15, 0.28);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.45);
}

.back-to-top:hover .back-to-top-icon {
    transform: translateY(-3px);
}

.back-to-top-icon {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1;
    transition: transform .25s ease;
}

.back-to-top .progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.back-to-top .progress-ring circle {
    fill: none;
    stroke-width: 3;
}

.back-to-top .ring-track {
    stroke: rgba(255, 255, 255, 0.18);
}

.back-to-top .ring-bar {
    stroke: var(--brand-gold);
    stroke-linecap: round;
    transition: stroke-dashoffset .12s linear;
}

/* ---------------- Inner page hero (About / Contact) ---------------- */
.page-hero {
    position: relative;
    padding: 130px 0 90px;
    /* Common inner-page hero image + dark overlay.
       To change the picture, just replace  assets/images/page-hero.jpg  */
    background-color: var(--color-green-dark);
    background-image: linear-gradient(rgb(15 18 6 / 69%), rgb(15 18 6 / 90%)), url(../images/page-hero.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.18), transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4.6vw, 3.6rem);
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    position: relative;
}

.page-hero p {
    color: #d9dcc5;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    /* display: flex;
    justify-content: center;
    gap: 8px; */
    font-size: 0.85rem;
    color: var(--color-gold-light);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

/* About page */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.mission-card {
    background: #fff;
    padding: 36px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.mission-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.18), rgba(243, 156, 18, 0.18));
    color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
}

/* Our Mission callout */
.about-mission {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 50px 44px;
    box-shadow: var(--shadow-sm);
}

.about-mission-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 12px 26px rgba(39, 174, 96, 0.32);
}

.about-mission .section-tag {
    margin-bottom: 18px;
}

.about-mission-text {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    line-height: 1.5;
    color: var(--color-green-dark);
    font-weight: 600;
    margin: 0;
}

@media (max-width: 575.98px) {
    .about-mission {
        padding: 38px 24px;
    }
}

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.timeline-stats .stat-card {
    background: #fff;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-stats .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.timeline-stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3vw, 2.6rem);
    color: var(--color-green-dark);
}

.timeline-stats span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Contact page */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.contact-info-card {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
}

.contact-info-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
        background: var(--brand-cream);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex: none;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-family: unset !important;
}

 
.contact-info-card p, .contact-info-card a {
    font-size: 0.9rem !important;
    color: var(--color-text-light);
}

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green-dark);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 13px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.92rem;
    background: var(--color-cream);
    color: var(--color-ink);
    transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* ---- Date fields ----
   Every browser draws this control differently: desktop Chrome shows an mm/dd/yyyy hint
   plus a calendar button, while several mobile browsers show only an arrow and no hint.
   Date inputs also carry an intrinsic width that mobile browsers size to instead of
   stretching, so the width below is required. We hide the browser's own empty-state text
   and supply our own hint, giving one consistent field everywhere. */
.date-field {
    position: relative;
    display: block;
    width: 100%;
}

.form-group input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    min-height: 46px;
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23767a63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

/* iOS centres the value — keep it left-aligned like every other field. */
.form-group input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
    margin: 0;
}

/* Our hint stands in for the browser's empty-state text, so hide theirs while empty.
   Once a date is chosen the native value text shows normally. */
.date-field:not(.has-value) input[type="date"]::-webkit-datetime-edit {
    opacity: 0;
}

.date-hint {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9a9e88;
    font-size: 0.92rem;
    pointer-events: none;
}

.date-field.has-value .date-hint {
    display: none;
}

/* Hide Chrome's built-in calendar button (ours replaces it) but stretch its hit area
   over the whole field, so tapping anywhere opens the picker. */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.form-alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-alert.success {
    background: #e5f6ea;
    color: #1c7a3d;
    border: 1px solid #b9e6c6;
}

.form-alert.error {
    background: #fdecec;
    color: #b8271f;
    border: 1px solid #f6c6c3;
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .self-drive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fleet-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .timeline-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .topbar-contact {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-arrow-prev {
        left: 12px;
    }

    .hero-arrow-next {
        right: 12px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        /* top: calc(var(--header-overlay) + 4px); */
        left: 0;
        right: 0;
        flex: none;
        background: #fff;
        flex-direction: column;
        padding: 10px 24px 26px;
        box-shadow: var(--shadow-md);
        transform: translateY(-130%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 199;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        display: block;
        padding: 14px 4px;
        border-bottom: 1px solid var(--color-border);
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-touria-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-touria .hero-content {
        max-width: none;
        text-align: center;
        margin: 0 auto;
    }

    .hero-kicker-script {
        text-align: center;
    }

    .hero-touria .hero-buttons {
        justify-content: center;
    }

    .hero-touria p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-touria .hero-dots {
        justify-content: center;
    }

    .hero-cards {
        align-items: center;
    }

    .hero-path {
        display: none;
    }

    .about-grid, .drivers-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-media>img, .about-img-main, .drivers-media {
        height: 320px;
    }

    .about-media-badge {
        left: 0;
        top: -18px;
        padding: 14px 18px;
    }

    .about-img-accent {
        width: 60%;
        height: 140px;
        bottom: -24px;
        right: -14px;
    }
}

@media (max-width: 720px) {
    :root {
        --header-h: 78px;
        --topbar-h: 0px;
    }

    .section {
        padding: 64px 0;
    }

    .hero-search-wrap {
        margin-top: -24px;
    }

    .hero-search {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px;
    }

    .hero-search-field {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 12px 16px;
    }

    .hero-search-field:nth-child(2) {
        border-bottom: none;
    }

    .hero-search-btn {
        padding: 15px;
        margin-top: 6px;
    }

    .hero-kicker {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
        gap: 10px;
    }

    .hero-kicker::before, .hero-kicker::after {
        width: 20px;
    }

    .brand img {
        height: 52px;
    }

    .topbar {
        display: none;
    }

    .hero-arrow {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .hero-pop-card {
        width: 100%;
        max-width: 340px;
    }

    .services-grid, .packages-grid, .fleet-grid, .self-drive-grid, .blog-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }

    .fleet-teaser-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .self-drive-section-compact {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .self-drive-section {
        padding: 40px 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .timeline-stats {
        grid-template-columns: 1fr 1fr;
    }

    .modal-header {
        height: 160px;
        padding: 20px;
    }

    .modal-body {
        padding: 24px 20px 30px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 16px;
        right: 16px;
    }

    .back-to-top {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
        bottom: 68px;
        right: 16px;
    }
}

/* ==========================================================================
   Tour Packages page (packages.php)
   ========================================================================== */
/* --- Filter tabs --- */
.pkg-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 42px;
    max-width: 900px;
}

.pkg-filter {
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.86rem;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .25s ease;
}

.pkg-filter:hover {
    border-color: var(--color-green);
    color: var(--color-green-dark);
}

.pkg-filter.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.28);
}

/* --- Grid & cards --- */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pkg-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .28s ease, box-shadow .28s ease;
    height: calc(100%);
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pkg-media {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--gradient-brand);
}

.pkg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pkg-card:hover .pkg-media img {
    transform: scale(1.06);
}

.pkg-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: rgba(255, 255, 255, 0.9);
    font-size: 3.4rem;
}

.pkg-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
}

.pkg-duration {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: wheat;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: var(--brand-green-dark);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}

.pkg-duration i {
    color: var(--brand-green-dark);
}

.pkg-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 24px;
}

.pkg-cat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: 10px;
}

.pkg-title {
    font-size: 1.28rem;
    line-height: 1.25;
    color: var(--color-green-dark);
    margin-bottom: 10px;
}

.pkg-headline {
    color: var(--color-text);
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.pkg-bestfor {
    font-size: 0.86rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.pkg-bestfor i {
    color: var(--color-gold);
    margin-right: 4px;
}

.pkg-bestfor strong {
    color: var(--color-text);
}

.pkg-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: rgba(39, 174, 96, 0.08);
    border: 1px solid rgba(39, 174, 96, 0.25);
    color: var(--color-green-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s ease;
}

.pkg-toggle:hover {
    background: rgba(39, 174, 96, 0.14);
}

.pkg-toggle i {
    transition: transform .28s ease;
    font-size: 0.8rem;
}

.pkg-card.is-open .pkg-toggle i {
    transform: rotate(180deg);
}

.pkg-toggle .pkg-toggle-hide {
    display: none;
}

.pkg-card.is-open .pkg-toggle .pkg-toggle-show {
    display: none;
}

.pkg-card.is-open .pkg-toggle .pkg-toggle-hide {
    display: inline;
}

/* --- Expandable details --- */
.pkg-details {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--color-border);
    animation: pkgFade .3s ease;
}

@keyframes pkgFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.pkg-block {
    margin-bottom: 20px;
}

.pkg-block:last-child {
    margin-bottom: 0;
}

.pkg-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-green-dark);
    margin-bottom: 12px;
}

.pkg-block-title i {
    color: var(--color-gold);
}

.pkg-route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.pkg-route-stop {
    background: rgba(39, 174, 96, 0.1);
    color: var(--color-green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
}

.pkg-route-arrow {
    color: var(--color-gold);
    font-size: 0.75rem;
}

.pkg-itinerary {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pkg-itinerary li {
    position: relative;
    padding: 0 0 24px 28px;
    border-left: 1px solid var(--color-border);
    margin-left: 0px;
}

.pkg-itinerary li:last-child {
    padding-bottom: 0;
}

.pkg-itinerary li::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-gold-light);
    border: 1px solid #fff;
    box-shadow: 0 0 0 2px var(--color-border);
}

.pkg-day-title {
   display: block;
    font-weight: 700;
    color: black;
    font-size: 0.95rem;
    line-height: 1.35;
    margin-bottom: 6px;
}

.pkg-day-text {
    display: block;
    color: #3f4235;
    font-size: 0.96rem;
    line-height: 1.7;
}

.pkg-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pkg-highlights li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #3f4235;
    line-height: 1.5;
    font-weight: 600;
    background: rgba(89, 105, 31, 0.055);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
}

.pkg-highlights li i {
    color: var(--color-green);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

.pkg-inclusions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pkg-inc-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.25);
    color: #8a5a08;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
}

.pkg-inc-chip i {
    color: var(--color-gold);
}

.pkg-route-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin: 4px 0 16px;
}

.pkg-route-preview i {
    color: var(--color-gold);
}

.pkg-actions {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    gap: 10px;
}

.pkg-actions .btn {
    justify-content: center;
}

.pkg-actions .btn-gold {
    flex: 1;
}

.pkg-actions .btn-whatsapp {
    flex: 0 0 auto;
    width: 48px;
    padding-left: 0;
    padding-right: 0;
}

.pkg-empty {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    padding: 30px 0;
}

/* ==========================================================================
   Single package detail page (package.php) — route map + details
   ========================================================================== */
.pkg-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pkg-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 15px;
    border-radius: 50px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.pkg-hero-chip i {
    color: var(--color-gold-light);
}

/* --- Map --- */
.pkg-map-wrap {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pkg-map-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 22px;
    background: var(--gradient-brand);
    color: #fff;
}

.pkg-map-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
}

.pkg-map-title i {
    color: var(--color-gold-light);
}

.pkg-map-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.82);
}

.pkg-map {
    height: 400px;
    width: 100%;
    background: #e9eef0;
    z-index: 1;
}

.pkg-map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 16px 22px;
    border-top: 1px solid var(--color-border);
}

.pkg-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-text);
}

.pkg-legend-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-magenta);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
}

/* Leaflet red location pin (strip the default white div-icon box) */
.leaflet-div-icon.pkg-pin {
    background: transparent;
    border: none;
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.35));
}

/* --- Tour details: clean label / value list card --- */
.pkg-details-card {
    background: var(--color-white);
    /* border: 1px solid var(--color-border); */
    border-radius: var(--radius-lg);
    padding: 10px 26px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 26px;
}

.pkg-details-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--color-green-dark);
    margin: 0 0 6px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-border);
}

.pkg-details-title i {
    color: var(--color-gold);
    font-size: 1rem;
}

.pkg-detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pkg-detail-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

.pkg-detail-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pdl-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-green-dark);
    flex-shrink: 0;
}

.pdl-label i {
    color: var(--color-gold);
    width: 18px;
    text-align: center;
    font-size: 0.98rem;
}

.pdl-value {
   text-align: right;
    color: var(--brand-green-dark);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
}

/* --- Tour photo gallery: multi-item auto carousel --- */
.pkg-gallery-section {
    padding: 40px 0 0;
}

.pkg-gallery {
    position: relative;
    padding: 0 8px;
}

.pkg-gallery-viewport {
    overflow: hidden;
}

.pkg-gallery-track {
    display: flex;
    gap: 18px;
    will-change: transform;
}

.pkg-gallery-slide {
    flex: 0 0 auto;
    min-width: 0;
}

.pkg-gallery-img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    transition: transform .35s ease, box-shadow .35s ease;
}

.pkg-gallery-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pkg-gallery-arrow {
    position: absolute;
    top: 150px;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-green-dark);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: background .2s ease, transform .2s ease;
}

.pkg-gallery-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}

.pkg-gallery-prev {
    left: -6px;
}

.pkg-gallery-next {
    right: -6px;
}

.pkg-gallery-dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.pkg-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, width .2s ease;
}

.pkg-gallery-dot:hover {
    background: var(--color-green-light);
}

.pkg-gallery-dot.is-active {
    background: var(--color-gold);
    width: 26px;
    border-radius: 50px;
}

/* --- Lightbox overlay --- */
.pkg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(12, 14, 6, 0.92);
    padding: 40px;
}

.pkg-lightbox.is-open {
    display: flex;
}

.pkg-lb-img {
    max-width: 90vw;
    max-height: 86vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.pkg-lb-close {
    position: absolute;
    top: 22px;
    right: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
    transition: background .2s ease;
}

.pkg-lb-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.pkg-lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    transition: background .2s ease;
}

.pkg-lb-arrow:hover {
    background: rgba(255, 255, 255, 0.28);
}

.pkg-lb-prev {
    left: 26px;
}

.pkg-lb-next {
    right: 26px;
}

.pkg-lb-count {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 640px) {
    .pkg-gallery-img {
        height: 240px;
    }

    .pkg-gallery-arrow {
        width: 40px;
        height: 40px;
        top: 120px;
    }

    .pkg-lightbox {
        padding: 16px;
    }

    .pkg-lb-arrow {
        width: 44px;
        height: 44px;
    }

    .pkg-lb-prev {
        left: 8px;
    }

    .pkg-lb-next {
        right: 8px;
    }
}

/* --- Two-column layout: details (col-md-7) + map/CTA (col-md-5) --- */
.pkg-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 34px;
    align-items: start;
}

.pkg-col-main {
    min-width: 0;
}

.pkg-detail-bestfor {
    font-size: 0.98rem;
    color: var(--color-text);
    margin-bottom: 24px;
    background: rgba(242, 181, 43, 0.12);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
}

.pkg-detail-bestfor i {
    color: var(--color-gold);
    margin-right: 6px;
}

.pkg-detail-bestfor strong {
    color: var(--color-green-dark);
}

.pkg-detail-block {
    background: var(--color-white);
    /* border: 1px solid var(--color-border); */
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.pkg-detail-block:last-child {
    margin-bottom: 0;
}

.pkg-detail-h {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1.2rem;
    color: var(--color-green-dark);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border);
    font-weight: 600;
}

.pkg-detail-h i {
    color: var(--color-gold);
    font-size: 1.05rem;
}

.pkg-col-side {
    min-width: 0;
    display: grid;
    gap: 20px;
    align-content: start;
}

.pkg-side-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.pkg-side-cta {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
}

.pkg-side-cta h3 {
       color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600; 
}

.pkg-side-cta p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 18px;
}

.pkg-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
    text-decoration: none;
    opacity: 0.92;
}

.pkg-back-link:hover {
    opacity: 1;
   text-decoration: unset;
    color: var(--brand-gold);
}

.pkg-side-h {
display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--color-green-dark);
    margin-bottom: 14px;
}

.pkg-side-h i {
    color: var(--color-gold);
}

.pkg-inclusion-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.pkg-inclusion-list li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.45;
}

.pkg-inclusion-list li i {
    color: var(--color-green);
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .pkg-layout {
        grid-template-columns: 1fr;
    }

    .pkg-map {
        height: 340px;
    }

    .pkg-highlights {
        grid-template-columns: 1fr;
    }

    .pkg-detail-block {
        padding: 22px 20px;
    }

    .d-none {
        display: none;
    }
}

@media (max-width: 1080px) {
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .pkg-grid {
        grid-template-columns: 1fr;
    }

    .pkg-filters {
        gap: 8px;
        margin-bottom: 32px;
    }

    .pkg-filter {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* ==========================================================================
   Fleet category cards (fleet.php)
   ========================================================================== */
.fleet-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fleet-cat-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.fleet-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fleet-cat-media {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--gradient-brand);
}

.fleet-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.fleet-cat-card:hover .fleet-cat-media img {
    transform: scale(1.05);
}

.fleet-cat-ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: var(--gradient-brand);
    color: rgba(255, 255, 255, 0.9);
    font-size: 3.4rem;
}

.fleet-cat-ph span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fleet-cat-pass {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 18, 6, 0.66);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 50px;
}

/* ---- Per-category photo carousel (self-contained, no Bootstrap) ---- */
.fleet-slides {
    position: absolute;
    inset: 0;
}

.fleet-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.fleet-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.fleet-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.fleet-cat-card:hover .fleet-slide.active img {
    transform: scale(1.05);
}

/* Caption for the vehicle shown on the current slide */
.fleet-cat-slide-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 14px 12px;
    background: linear-gradient(to top, rgba(15, 18, 6, 0.72), transparent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

/* Prev / next arrows — revealed on hover to keep the card clean */
.fleet-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 18, 6, 0.5);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity .25s ease, background .25s ease;
    z-index: 3;
}

.fleet-nav-prev { left: 12px; }
.fleet-nav-next { right: 12px; }

.fleet-cat-card:hover .fleet-nav { opacity: 1; }
.fleet-nav:hover { background: var(--color-gold); }

/* Photo-count badge — signals extra photos even before the card is hovered */
.fleet-cat-count {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15, 18, 6, 0.66);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 3;
}

/* Thumbnail strip — previews the other photos instead of plain dots */
.fleet-thumbs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 12px;
    z-index: 3;
}

.fleet-thumb {
    width: 54px;
    height: 40px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(15, 18, 6, 0.45);
    cursor: pointer;
    opacity: 0.78;
    transition: opacity .25s ease, border-color .25s ease, transform .25s ease;
}

.fleet-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The card-hover zoom applies to .fleet-cat-media img — keep thumbnails steady. */
.fleet-cat-card:hover .fleet-thumb img {
    transform: none;
}

.fleet-thumb:hover,
.fleet-thumb:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
}

.fleet-thumb.active {
    opacity: 1;
    border-color: var(--color-gold);
}

.fleet-thumb-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Lift the slide caption clear of the thumbnail strip. */
.fleet-cat-carousel .fleet-cat-slide-label {
    padding-bottom: 60px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fleet-slide,
    .fleet-slide img {
        transition: none;
    }
}

.fleet-cat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 26px 28px;
}

.fleet-cat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--color-green-dark);
    margin-bottom: 10px;
}

.fleet-cat-title i {
    color: var(--color-gold);
    font-size: 1.05rem;
}

.fleet-cat-headline {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Daily-rate block on each fleet card */
.fleet-cat-rate {
    margin: 0 0 22px;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-gold);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(242,181,43,0.08) 0%, rgba(242,181,43,0.02) 100%);
}
.fleet-rate-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
}
.fleet-rate-from {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-light);
}
.fleet-rate-amount {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: black;
    /* color: var(--color-green-dark); */
}
.fleet-rate-unit {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
}
.fleet-rate-meta {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}
.fleet-rate-meta li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
}
.fleet-rate-meta i { color: var(--color-orange); font-size: 0.85rem; }

.fleet-cat-specs {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.fleet-cat-specs li {
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 10px;
    align-items: start;
}

.fleet-spec-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--color-green);
}

.fleet-spec-label i {
    color: var(--color-gold);
    width: 15px;
    text-align: center;
}

.fleet-spec-val {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.45;
}

.fleet-cat-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.fleet-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.22);
    color: #8a5a08;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
}

.fleet-feature-chip i {
    color: var(--color-orange);
}

.fleet-cat-btn {
    margin-top: auto;
}

@media (max-width: 860px) {
    .fleet-cat-grid {
        grid-template-columns: 1fr;
    }

    .d-none {
        display: none;
    }
}

@media (max-width: 460px) {
    .fleet-cat-specs li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .d-none {
        display: none;
    }
}

@media (max-width:350px) {
    .d-none {
        display: none;
    }
}