/* ================================================
   TANZANIA SPECIALIST – Zanzibar Holiday Clone
   styles.css
   ================================================ */

/* --- Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit
}

input,
select {
    font: inherit
}

/* --- Root vars --- */
:root {
    --green: #465b2d;
    --green-light: #587233;
    --green-dark: #354621;
    --yellow: #ffbe3d;
    --yellow-hover: #f0af2a;
    --sand: #e4d8c6;
    --sand-light: #ede4d5;
    --beige: #f5f0ec;
    --white: #fff;
    --dark: #252525;
    --anthracite: #3a3a3a;
    --brown: #78695a;
    --red: #cc4b25;
    --gray: #777;
    --gray-light: #ccc;
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .09);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, .12);
    --transition: all .3s ease;
    --font: 'Montserrat', system-ui, -apple-system, sans-serif;
    --max-w: 1320px;
}

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--beige);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.delay-1 {
    transition-delay: .15s
}

.delay-2 {
    transition-delay: .3s
}

.delay-3 {
    transition-delay: .45s
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}


/* ===== MAIN HEADER ===== */
.main-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.4s ease;
    border-bottom: none;
}

.main-header.navbar-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 14px;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.logo-text strong {
    font-weight: 900;
    font-size: 19px;
    display: block;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 0;
    margin: 0 auto
}

.nav-item a {
    display: block;
    padding: 8px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nav-item a:hover {
    color: var(--yellow) !important;
}

.nav-item a:hover::after {
    transform: scaleX(1);
    background: var(--yellow);
}

.nav-item.active a {
    color: var(--yellow);
}

.nav-item.active a::after {
    transform: scaleX(1);
}

.nav-item a i {
    font-size: 10px;
    margin-left: 4px
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
}

.nav-icon-btn {
    font-size: 20px;
    color: var(--white);
    transition: var(--transition);
    padding: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-icon-btn:hover {
    color: var(--yellow) !important;
}

.btn-make-request {
    display: inline-block;
    padding: 10px 22px;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-make-request:hover {
    background: var(--green-dark)
}

.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .mobile-only {
        display: block;
    }
    
    /* Hide the desktop nav-actions button on mobile to avoid duplicates */
    .nav-actions .btn-make-request {
        display: none;
    }
    
    /* Match the standard desktop button style inside the mobile dropdown */
    .nav-links .mobile-only a.btn-make-request {
        display: inline-block;
        margin: 20px 20px 10px;
        padding: 12px 22px;
        background: var(--green);
        color: var(--white) !important;
        text-align: center;
        border-radius: var(--radius);
        font-weight: 700;
        text-transform: none;
        letter-spacing: normal;
        border: none;
        border-bottom: none; /* override nav-item a */
        transition: var(--transition);
        width: calc(100% - 40px);
    }

    .nav-links .mobile-only a.btn-make-request:hover {
        background: var(--green-dark);
        padding-left: 22px !important; /* override nav-item a hover padding change */
        color: var(--white) !important;
    }

    .nav-links .mobile-only a.btn-make-request::before {
        display: none; /* remove the yellow side bar from general nav-item a:hover */
    }
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px 6px;
    z-index: 1010;
    background: transparent;
    border: none;
    cursor: pointer;
    align-items: flex-end;
}

.hamburger-line {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* ===== HERO NEW ===== */
.hero-new {
    display: block;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Darken BOTH sides: left for tagline readability, right for form readability */
    background: linear-gradient(to right,
            rgba(15, 25, 10, 0.48) 0%,
            rgba(15, 25, 10, 0.12) 42%,
            rgba(15, 25, 10, 0.38) 72%,
            rgba(15, 25, 10, 0.58) 100%);
    pointer-events: none;
    z-index: 1;
}


/* Left content / Tagline area */
.hero-left-content {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    left: 80px;
    max-width: 600px;
    color: var(--white);
    z-index: 10;
}

.hero-eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 20px;
}

.hero-tagline-heading {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-tagline-sub {
    font-size: 18px;
    line-height: 1.65;
    opacity: 0.95;
    margin-bottom: 40px;
}

/* Slide Dots */
.hero-slide-dots {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--yellow);
    width: 54px;
}



/* ===== HERO GLASS BOOKING CARD ===== */
.hero-booking-card {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    width: 380px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px;
    z-index: 50;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-booking-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    background: var(--yellow);
    color: #2a1a0e;
    padding: 4px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-booking-title {
    color: var(--white);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-booking-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-bottom: 24px;
}

.hero-booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-field-group label {
    font-size: 11px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-field-row {
    display: flex;
    gap: 12px;
}

.hero-field-row .hero-field-group {
    flex: 1;
}

.hero-booking-input {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    height: 46px;
    padding: 0 14px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.hero-booking-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--yellow);
    box-shadow: 0 0 0 4px rgba(255, 190, 61, 0.15);
}

/* Custom Select Styling */
.hero-custom-select {
    position: relative;
    user-select: none;
}

.hero-select-trigger {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    height: 46px;
    padding: 0 16px;
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.hero-select-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-custom-select.open .hero-select-trigger {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.25);
}

.hero-select-trigger i {
    font-size: 11px;
    transition: transform 0.3s ease;
    color: var(--yellow);
}

.hero-custom-select.open .hero-select-trigger i {
    transform: rotate(180deg);
}

.hero-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: #2a3a1a;
    /* Dark green/safari theme */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    padding: 6px;
}

.hero-custom-select.open .hero-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-select-options li {
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.hero-select-options li:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--yellow);
    padding-left: 18px;
}

.hero-select-options li.active {
    background: var(--yellow);
    color: #2a1a0e;
}

/* Number Input Styling */
.hero-number-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    height: 46px;
    overflow: hidden;
    transition: var(--transition);
}

.hero-number-input:focus-within {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.2);
}

.hero-number-input input {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    height: 100%;
    width: 40px;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.num-btn {
    width: 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.num-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--yellow);
}

.num-btn.minus {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.num-btn.plus {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-submit-btn {
    background: var(--yellow);
    color: #2a1a0e;
    height: 50px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(255, 190, 61, 0.4);
}

.hero-submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.3);
}

/* Date Picker Styling */
.hero-date-picker {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-date-input {
    cursor: pointer;
    padding-right: 40px !important;
}

.hero-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    position: absolute;
    right: 14px;
    width: 20px;
    height: 20px;
    display: none;
}

.hero-date-icon {
    position: absolute;
    right: 14px;
    font-size: 14px;
    color: var(--yellow);
    pointer-events: none;
    cursor: pointer;
}

.form-disclaimer {
    color: rgba(255, 255, 255, 0.88);
    font-size: 10px;
    text-align: center;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 6px;
}

/* ===== HERO FEATURES BAR (Integrated) ===== */
.hero-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    z-index: 10;
}

.features-bar-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.features-bar-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-bar-list li i {
    color: var(--yellow);
}

/* Fallback features strip */
.features-strip {
    background: linear-gradient(90deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    padding: 16px 0;
}

.features-strip-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.features-strip-list li {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-bar {
    display: none;
}


/* ===== FILTER SECTION ===== */
.filter-section {
    background: var(--white);
    border-bottom: 1px solid #e8e2da;
    padding: 60px 0 20px;
}

.filter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.filter-search-wrap {
    position: relative;
    width: 300px;
}

.filter-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 14px;
    pointer-events: none;
}

.filter-search-wrap input {
    width: 100%;
    height: 44px;
    padding: 0 14px 0 40px;
    border: 1px solid #e8e2da;
    border-radius: 22px;
    font-size: 14px;
    background: var(--beige);
    transition: var(--transition);
}

.filter-search-wrap input:focus {
    outline: none;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(70, 91, 45, 0.08);
}


.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: var(--radius);
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--green);
    color: var(--white)
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 8px
}

.sort-label {
    font-size: 13px;
    color: var(--gray)
}

.sort-dropdown {
    position: relative;
    user-select: none;
}

.sort-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border: 1.5px solid rgba(70, 91, 45, 0.22);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--anthracite);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
    min-width: 140px;
    justify-content: space-between;
}

.sort-trigger:hover {
    border-color: var(--green);
    color: var(--green);
}

.sort-trigger i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.sort-dropdown.open .sort-trigger i {
    transform: rotate(180deg);
}

.sort-options {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 180px;
    z-index: 100;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.sort-dropdown.open .sort-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-options li {
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--anthracite);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.sort-options li:hover {
    background: #f9f7f4;
    color: var(--green);
    padding-left: 24px;
}

.sort-options li.active {
    background: var(--green);
    color: var(--white);
}

/* ===== SAMPLE BANNER ===== */
.sample-banner {
    background: var(--sand-light);
    padding: 12px 0;
    border-bottom: 1px solid #d9cfc0;
}

.sample-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--brown);
    line-height: 1.5;
}

.sample-banner-content i {
    color: var(--green);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0
}

/* ===== TRIP CARDS ===== */
.trips-section {
    padding: 48px 0 72px;
}

.trips-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
}

.trip-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(70, 91, 45, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    border-color: var(--green);
}

.trip-card-image {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.trip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trip-card:hover .trip-card-image img {
    transform: scale(1.08);
}

.trip-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trip-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--gray);
    border-bottom: 1px solid rgba(70, 91, 45, 0.08);
    padding-bottom: 12px;
}

.trip-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trip-card-body h3 {
    font-size: 16.5px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: -0.1px;
}

.trip-card-body h3 a {
    color: inherit;
    background-image: linear-gradient(var(--green), var(--green));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s ease, color 0.3s ease;
}

.trip-card-body h3 a:hover {
    color: var(--green);
    background-size: 100% 2px;
}

.trip-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.trip-card-features li {
    font-size: 13px;
    color: var(--anthracite);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.trip-card-features li i {
    color: var(--green);
    font-size: 12px;
    margin-top: 3px;
}

.trip-route-simple {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--anthracite);
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.4;
}

.trip-route-simple i {
    color: var(--green);
    margin-top: 3px;
}

.trip-card-footer {
    display: flex;
    gap: 12px;
    padding: 0 24px 24px;
    margin-top: auto;
}

.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    flex: 1.4;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 8px 15px rgba(70, 91, 45, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    flex: 1;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: rgba(70, 91, 45, 0.05);
    color: var(--green-dark);
    border-color: var(--green-dark);
}

/* ===== SECTION COMMONS ===== */
.section-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
}

.section-heading.text-center::after {
    content: '';
    display: block;
    width: 52px;
    height: 3px;
    background: var(--yellow);
    border-radius: 3px;
    margin: 12px auto 0;
}

.section-heading:not(.text-center)::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--yellow);
    border-radius: 3px;
    margin-top: 10px;
}

.section-heading.text-white::after {
    background: rgba(255, 255, 255, 0.5);
}

.text-center {
    text-align: center
}

.text-white {
    color: var(--white) !important
}

.text-white-muted {
    color: rgba(255, 255, 255, .85) !important
}

.section-sub {
    font-size: 15px;
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.section-intro-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--brown);
    margin-bottom: 36px;
    max-width: 800px;
}

.content-section {
    padding: 60px 0
}

.content-narrow {
    max-width: 860px;
    margin: 0 auto
}

.bg-beige {
    background: var(--beige)
}

.bg-white {
    background: var(--white)
}

.prose p {
    margin-bottom: 14px;
    color: var(--anthracite)
}

.prose p:last-child {
    margin-bottom: 0
}

.prose strong {
    color: var(--dark);
    font-weight: 700
}

/* Two-column */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

/* ===== LODGES ===== */
.lodges-section {
    padding: 70px 0;
    background: var(--beige);
}

.lodges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.lodge-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(70, 91, 45, 0.08);
}

.lodge-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(70, 91, 45, 0.18);
}

.lodge-card-image {
    height: 210px;
    overflow: hidden;
    position: relative;
}

.lodge-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.lodge-card:hover .lodge-card-image img {
    transform: scale(1.07)
}

.lodge-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--green);
    border-radius: 20px;
    text-transform: uppercase;
}

.lodge-card-body {
    padding: 16px 18px 18px;
}

.lodge-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
}

.lodges-cta {
    text-align: center;
    margin-top: 8px
}

.btn-green-outline {
    display: inline-block;
    padding: 13px 32px;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-green-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 91, 45, 0.2);
}

/* ===== EXCURSIONS ===== */
.excursions-section {
    padding: 80px 0;
    background: #fdfcf9;
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.excursion-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(70, 91, 45, 0.05);
}

.excursion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.excursion-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.excursion-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.excursion-card:hover .excursion-card-image img {
    transform: scale(1.1);
}

.excursion-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.excursion-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.excursion-meta {
    margin-bottom: 10px;
}

.excursion-card-body h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.excursion-desc {
    font-size: 13.5px;
    color: var(--anthracite);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.8;
}

.excursion-footer {
    margin-top: auto;
}

.excursion-link {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.excursion-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.excursion-link:hover {
    color: var(--green-dark);
}

.excursion-link:hover i {
    transform: translateX(4px);
}

.excursion-enquire-btn {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(70, 91, 45, 0.2);
}

.excursion-enquire-btn:hover {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(70, 91, 45, 0.3);
}

.excursion-enquire-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.excursion-enquire-btn:hover i {
    transform: translateX(3px);
}

/* ===== GREEN SECTION ===== */
.green-section {
    background: var(--green);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.weather-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.weather-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.weather-icon {
    font-size: 32px;
    color: var(--yellow);
    margin-bottom: 20px;
}

.weather-card h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.weather-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 16px;
}

.weather-temp {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.mt-4 {
    margin-top: 40px;
}

.text-white {
    color: var(--white);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7);
}

.content-narrow {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.green-section::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 350px;
    height: 350px;
    background: url('Primepathlogoround.png') no-repeat center/contain;
    opacity: 0.05;
    filter: brightness(0) invert(1);
    pointer-events: none;
    transform: rotate(-15deg);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 60px;
}

.reviews-eyebrow {
    display: block;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.reviews-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-badge img {
    height: 18px;
    width: auto;
}

.reviews-masonry-wrapper {
    margin: 40px 0;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.reviews-grid-dynamic {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    gap: 25px;
    padding: 10px 0;
}

.review-card {
    flex: 0 0 calc(33.333% - 17px);
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.02);
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.review-stars {
    color: #FFD700;
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.review-stars i {
    display: inline-block;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.review-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0; /* reset */
}

/* Quote icons as pseudo elements */
.review-quote::before {
    content: '"';
    font-family: serif;
    font-size: 40px;
    color: var(--green);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: -10px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--beige);
    background: #f0f0f0;
}

.review-info .review-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--green);
}

.review-info .review-meta {
    display: block;
    font-size: 0.75rem;
    color: #999;
}

.review-source-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 18px;
    height: 18px;
    opacity: 0.4;
    filter: grayscale(1);
    transition: 0.3s;
}

.review-card:hover .review-source-icon {
    opacity: 0.8;
    filter: grayscale(0);
}


/* ===== CTA SECTION ===== */
.cta-section {
    padding: 72px 0;
    background: var(--beige);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cta-card {
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-brown {
    background: var(--sand);
    border: 1px solid rgba(120, 105, 90, 0.2);
}

.cta-brown::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 190, 61, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(70, 91, 45, 0.25);
}

.cta-green::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-sub {
    font-size: 14px;
    opacity: .8;
    margin-bottom: 28px;
    line-height: 1.6;
}

.cta-phones {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    width: fit-content;
}

.cta-phone:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.flag-icon {
    font-size: 20px;
}

.cta-phone-other {
    font-size: 13px;
    text-decoration: underline;
    opacity: .7;
    transition: var(--transition);
}

.cta-phone-other:hover {
    opacity: 1;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--green);
    color: var(--white);
    padding-top: 0;
}

.site-footer, 
.site-footer *:not(i):not([class^="fa-"]):not([class*=" fa-"]) {
    font-family: 'Outfit', sans-serif;
}

.footer-review-bar {
    background: var(--green-dark);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-28px);
}

.footer-review-title {
    font-weight: 700;
    font-size: 14px
}

.footer-ratings {
    display: flex;
    gap: 24px
}

.footer-rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px
}

.stars-small {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 1px
}

.footer-read-more {
    font-size: 12px;
    text-decoration: underline;
    opacity: .8;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-full-logo {
    height: 140px;
    width: auto;
    margin-top: -30px;
    margin-bottom: 14px;
    display: block;
}

.footer-brand-heading {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 280px;
}

.footer-phone {
    margin-bottom: 8px
}

.footer-phone a {
    font-size: 14px;
    font-weight: 600;
    color: var(--white)
}

.footer-copy-small {
    font-size: 11px;
    opacity: .6;
    margin-bottom: 8px
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.footer-legal-links a {
    font-size: 12px;
    opacity: .7;
    transition: var(--transition)
}

.footer-legal-links a:hover {
    opacity: 1
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    opacity: .8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.footer-col ul li a {
    font-size: 13.5px;
    opacity: .75;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 16px
}

.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .5)
}

.newsletter-label {
    font-size: 12px;
    opacity: .7;
    margin-bottom: 10px
}

.newsletter-wrap {
    display: flex;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    border: none;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.newsletter-btn {
    padding: 10px 18px;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--yellow-hover)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 12px;
    opacity: .6;
}

.footer-bottom-links {
    display: flex;
    gap: 18px
}

.footer-bottom-links a {
    color: var(--white)
}

.footer-bottom-links a:hover {
    text-decoration: underline
}



/* ===== RESPONSIVE ===== */

/* 
   SCREEN SIZE: 1100px (Medium Desktops / Small Laptops)
   Purpose: Gracefully scale down grids before they get too squished on smaller laptop screens.
*/
@media(max-width:1100px) {

    /* Reduce lodges grid from 4 to 2 columns to prevent cards from becoming too narrow */
    .lodges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Split 4-column footer into a 2x2 grid for better spacing */
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

/* 
   SCREEN SIZE: 1024px (Tablets Landscape & Small Laptops)
   Purpose: Transition main layouts (like trips) into smaller grid formats.
*/
@media(max-width:1024px) {

    /* Reduce trips grid from 3 to 2 columns so trip cards maintain legible text and nice image proportions */
    .trips-section .container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Keep lodges on 2 columns */
    .lodges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 
   SCREEN SIZE: 900px (Tablets)
   Purpose: Compress layout for portrait-oriented tablets and large mobile devices.
*/
@media(max-width:900px) {

    /* Change the bottom Call-to-Action grid to stack vertically instead of side-by-side */
    .cta-grid {
        grid-template-columns: 1fr;
    }

    /* Reduce 3-column excursion and social grids to 2 columns */
    .excursions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Adjust hero booking card for tablets */
    .hero-booking-card {
        position: absolute;
        top: 60px;
        right: 20px;
        width: 380px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        padding: 28px;
        z-index: 50;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .hero-booking-badge {
        display: inline-block;
        font-size: 11px;
        font-weight: 800;
        background: var(--yellow);
        color: #2a1a0e;
        padding: 4px 10px;
        border-radius: 10px;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .hero-booking-title {
        color: var(--white);
        font-size: 26px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-booking-desc {
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        margin-bottom: 24px;
    }

    .hero-booking-input,
    .hero-select-trigger {
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        height: 46px;
        padding: 0 14px;
        color: var(--white);
        font-size: 14px;
    }

    .hero-number-input {
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        height: 46px;
    }

    .num-btn {
        width: 36px;
    }

    .hero-submit-btn {
        background: var(--yellow);
        color: #2a1a0e;
        height: 50px;
        border-radius: 10px;
        font-weight: 800;
        font-size: 15px;
        margin-top: 10px;
    }

    /* Hide hero left content on tablets to prevent overlap */
    .hero-left-content {
        display: none;
    }
}

/* 
   SCREEN SIZE: 768px (Tablets Portrait & Large Phones)
   Purpose: Major breakpoint for mobile navigation and single-column layouts for core content sections.
*/
@media(max-width:991px) {
    /* --- NAVIGATION OVERRIDES --- */

    /* Reorder navigation to put the hamburger menu on the far right */
    .nav-inner {
        flex-wrap: nowrap;
    }

    .nav-logo {
        order: 1;
    }

    .nav-actions {
        order: 2;
        margin-left: auto;
    }

    /* Hide desktop nav links and convert to an off-canvas mobile overlay */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
        padding: 80px 24px 40px;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
        animation: slideInRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        width: 70%;
        max-width: 320px;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .nav-links.open {
        display: flex !important;
    }

    .nav-item a {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        transition: all 0.25s ease;
        position: relative;
    }

    .nav-item a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background: var(--yellow);
        transform: scaleY(0);
        transition: transform 0.25s ease;
    }

    .nav-item a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--yellow);
        padding-left: 25px;
    }

    .nav-item a:hover::before {
        transform: scaleY(1);
    }

    /* Make the mobile hamburger menu toggle visible in top right corner */
    .mobile-toggle {
        display: flex;
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 1010;
        padding: 10px;
        background: var(--green);
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(70, 91, 45, 0.25);
    }

    .mobile-toggle:hover {
        background: var(--green-dark);
    }

    .hamburger-line {
        width: 26px;
        height: 3px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Compress the nav actions (search, heart, request) */
    .nav-actions {
        gap: 8px;
        margin-right: 54px;
    }

    /* Remove the make request desktop button from the mobile nav since there's a CTA */
    .nav-actions .btn-make-request {
        display: none;
    }

    /* --- LAYOUT OVERRIDES --- */

    /* Convert content sections that were side-by-side (2 columns) into a single vertical column */
    .two-col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Stack trips into a single column. */
    .trips-section .container {
        grid-template-columns: 1fr;
    }

    .trip-card {
        flex-direction: column; /* Better for most tablets too */
    }

    .trip-card-image {
        width: 100%;
        height: 240px;
        min-height: auto;
        flex-shrink: 0;
    }

    /* "How It Works" Section Mobile */
    .hiw-grid {
        flex-direction: column;
        gap: 30px;
    }

    .hiw-arrow {
        display: none;
    }

    .hiw-step {
        padding: 0;
    }

    /* Stack lodges and reviews into a single vertical column */
    .lodges-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Change footer into a single column, centering text for a mobile-friendly view */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-review-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Hero section adjustments for mobile screens */
    .hero-new {
        height: auto;
        min-height: 100vh;
    }

    .hero-image-wrapper {
        height: 100vh;
        min-height: 600px;
    }

    .hero-left-content {
        display: block !important;
        position: absolute;
        top: 15%;
        left: 20px;
        right: 20px;
        transform: none;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .hero-tagline-heading {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .hero-tagline-sub, .hero-eyebrow, .hero-slide-dots {
        display: none !important;
    }

    /* Hero booking card adjustments for mobile */
    .hero-booking-card {
        position: absolute !important;
        top: 55% !important;
        left: 50% !important;
        transform: translate(-50%, -40%) !important;
        width: 92% !important;
        max-width: 380px !important;
        margin: 0 !important;
        padding: 22px 18px !important;
        z-index: 50 !important;
    }

    /* Filter pills responsive */
    .type-filter-pills {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .type-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Excursions grid on tablets */
    .excursions-grid {
        grid-template-columns: 1fr;
    }
}

/* 
   SCREEN SIZE: 480px (Smartphones)
   Purpose: Optimize everything strictly for portrait phones. Adjust paddings, font sizes, and stack components vertically.
*/
@media(max-width:480px) {

    /* Ensure all structural grids collapse to 1 column */
    .excursions-grid,
    .social-grid {
        grid-template-columns: 1fr;
    }

    /* Wrap filter pills with proper layout */
    .type-filter-pills {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .type-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* Stack filter dropdowns natively */
    .filter-inner {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .filter-section {
        padding: 40px 0 16px;
    }

    /* Stack ratings vertically */
    .ratings-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Reduce general section padding to conserve screen real estate on mobile */
    .content-section,
    .lodges-section,
    .excursions-section,
    .green-section,
    .reviews-section,
    .social-feed-section,
    .cta-section {
        padding: 40px 0;
    }

    /* Scale down large headings */
    .section-heading {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    /* --- HERO SECTION - MOBILE OPTIMIZATION --- */

    /* Stay full screen height with overlay form */
    .hero-new {
        display: block;
        height: 100vh;
        min-height: 600px;
        overflow: hidden;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    /* Slide track covers full screen */
    .hero-slide-track {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 0;
    }

    .hero-slide {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0;
    }

    /* Keep overlay for readability */
    .hero-overlay {
        display: block !important;
        opacity: 0.6 !important;
    }

    .hero-left-content {
        display: none !important;
        visibility: hidden;
        height: 0;
        margin: 0;
        padding: 0;
    }

    /* Show features bar on phones */
    .hero-features-bar {
        display: flex !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }

    /* Booking card centered and glassmorphic on phones */
    .hero-booking-card {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        right: auto !important;
        width: 95% !important;
        max-width: 340px !important;
        margin: 0 !important;
        padding: 20px 16px !important;
        border-radius: 14px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
        z-index: 50 !important;
    }

    .hero-booking-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Booking card styling with white text for glassmorphic effect */
    .hero-booking-badge {
        display: inline-block;
        font-size: 10px;
        font-weight: 800;
        background: var(--yellow);
        color: #2a1a0e;
        padding: 4px 10px;
        border-radius: 6px;
        margin-bottom: 10px;
        text-transform: uppercase;
        width: fit-content;
    }

    .hero-booking-title {
        color: var(--white);
        font-size: 20px;
        font-weight: 900;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .hero-booking-desc {
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        margin-bottom: 14px;
        font-weight: 400;
    }

    /* Adjust hero booking form for compact sizing */
    .hero-booking-form {
        gap: 12px;
        margin-top: 0;
    }

    .hero-field-group {
        gap: 5px;
    }

    .hero-field-group label, 
    .hero-field-group .hero-field-label {
        display: block;
        font-size: 11px;
        color: var(--yellow);
        margin-bottom: 3px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .hero-field-row {
        display: flex;
        gap: 10px;
    }

    .hero-field-row .hero-field-group {
        flex: 1;
    }

    .hero-date-picker {
        position: relative;
        display: flex;
        align-items: center;
    }

    .hero-date-input {
        cursor: pointer;
    }

    .hero-date-icon {
        position: absolute;
        right: 12px;
        color: var(--yellow);
        font-size: 12px;
        pointer-events: none;
    }

    .hero-booking-input,
    .hero-select-trigger {
        height: 42px;
        font-size: 13px;
        padding: 0 12px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--white);
        border-radius: 8px;
    }

    .hero-booking-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .hero-booking-input:focus,
    .hero-select-trigger:focus-within {
        border-color: var(--yellow);
        background: rgba(255, 255, 255, 0.25);
    }

    .hero-number-input {
        height: 42px;
        gap: 0;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
    }

    .num-btn {
        width: 42px;
        height: 100%;
        font-size: 12px;
        color: var(--white);
        background: transparent;
    }

    .num-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--yellow);
    }

    .hero-submit-btn {
        height: 44px;
        font-size: 13px;
        padding: 0 16px;
        margin-top: 10px;
        gap: 8px;
        background: var(--yellow);
        color: #2a1a0e;
        border-radius: 8px;
        font-weight: 700;
    }

    .hero-submit-btn:hover {
        background: var(--yellow-hover);
    }

    /* Adjust tripadvisor badge placing inside the tighter hero */
    .ta-hero-badge {
        bottom: 12px;
        left: 12px;
    }

    .ta-hero-badge-inner {
        padding: 8px 12px;
        gap: 8px;
    }

    .ta-hero-icon {
        font-size: 30px;
    }

    .ta-hero-year {
        font-size: 14px;
    }

    /* Wrap navigation icons if they run out of space */
    .nav-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    /* Convert horizontal trip cards to standard stacked (image top, text bottom) layout */
    .trip-card {
        flex-direction: column;
    }

    .trip-card-image {
        width: 100%;
        height: 220px;
        min-height: auto;
    }

    /* Scale down features list elements to fit 2 per row even on narrow screens */
    .features-strip-list li {
        min-width: 45%;
        padding: 10px 14px;
    }

    /* Footer brand section responsive */
    .footer-brand-desc {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.5;
    }

    .footer-brand-heading {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-full-logo {
        height: 100px;
        margin-bottom: 10px;
    }

    /* Modal sizing for phones */
    .modal-box {
        max-width: 100%;
        width: 95%;
        padding: 16px 14px;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .modal-header-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .modal-header h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .modal-header p {
        font-size: 11px;
    }

    .modal-form {
        gap: 12px;
    }

    .modal-row {
        gap: 12px;
    }

    .modal-field label {
        font-size: 9px;
    }

    .modal-field input,
    .modal-field select,
    .modal-field textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .modal-number-input {
        height: 36px;
    }

    .num-btn-modal {
        width: 28px;
    }

    .modal-submit-btn {
        padding: 10px 20px;
        font-size: 12px;
        margin-top: 6px;
    }

    .modal-success-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .modal-success h3 {
        font-size: 16px;
    }

    .modal-success p {
        font-size: 12px;
    }

    .modal-wa-btn {
        padding: 8px 16px;
        font-size: 11px;
    }

    .modal-dismiss-btn {
        font-size: 11px;
    }

    /* Tighten spacings on Review and CTA cards */
    .cta-card {
        padding: 24px 16px;
    }

    .cta-card h3 {
        font-size: 18px;
    }

    .review-card {
        padding: 20px 16px;
    }

    .footer-ratings {
        flex-direction: column;
        gap: 8px;
    }

    /* Adjust floating CTA size to prevent it from clipping on small devices */
    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ===== BTN-YELLOW (used in CTA section & Why Choose Us) ===== */
.btn-yellow {
    display: inline-block;
    padding: 15px 36px;
    background: var(--yellow);
    color: #2a1a0e;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.4px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 190, 61, 0.35);
}

.btn-yellow:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 190, 61, 0.45);
}

/* ===== HERO SLIDER ===== */
.hero-slide-track {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-left-content {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    max-width: 460px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
    opacity: 0.9;
}

.hero-tagline-heading {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
    margin-bottom: 16px;
}

.hero-tagline-sub {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 24px;
}

.hero-slide-dots {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
    background: var(--yellow);
    transform: scale(1.35);
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: url('Primepathlogoround.png') no-repeat center/contain;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.how-it-works-section .container {
    position: relative;
    z-index: 1;
}

.hiw-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
}

.hiw-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hiw-step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    font-weight: 900;
    color: var(--green);
    opacity: 0.06;
    line-height: 1;
    z-index: 1;
}

.hiw-icon-wrap {
    width: 80px;
    height: 80px;
    background: #f9f7f2;
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hiw-step:hover .hiw-icon-wrap {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(70, 91, 45, 0.2);
}

.hiw-step-title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
    z-index: 2;
}

.hiw-step-desc {
    font-size: 14px;
    color: var(--anthracite);
    line-height: 1.7;
    opacity: 0.8;
}

.hiw-arrow {
    padding-top: 30px;
    color: var(--gray-light);
    font-size: 20px;
}

.hiw-cta {
    text-align: center;
}

.btn-start-planning {
    display: inline-block;
    padding: 15px 40px;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--transition);
    letter-spacing: 0.4px;
    box-shadow: 0 4px 20px rgba(70, 91, 45, 0.25);
}

.btn-start-planning:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(70, 91, 45, 0.35);
}

/* ===== WHY CHOOSE US ===== */
.why-us-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--sand-light) 100%);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.why-us-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 14px;
    padding: 4px 12px;
    background: rgba(70, 91, 45, 0.1);
    border-radius: 20px;
}

.why-us-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--anthracite);
    margin-bottom: 28px;
}

.why-us-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.why-us-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--brown);
}

.why-us-contact-row a {
    color: var(--brown);
}

.why-us-contact-row a:hover {
    color: var(--green);
    text-decoration: underline;
}

.why-us-contact-row i {
    color: var(--green);
    width: 16px;
    flex-shrink: 0;
}

.why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.why-us-feat {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(70, 91, 45, 0.08);
    transition: var(--transition);
}

.why-us-feat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-us-feat-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}

.why-us-feat h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.why-us-feat p {
    font-size: 13px;
    color: var(--brown);
    line-height: 1.6;
}

/* ===== FILTER PILLS ===== */
.type-filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.type-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1.5px solid rgba(70, 91, 45, 0.22);
    border-radius: 24px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--anthracite);
    background: var(--white);
    cursor: pointer;
    font-family: var(--font);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.type-pill:hover {
    border-color: var(--green);
    color: var(--green);
}

.type-pill.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.pill-count {
    font-size: 10px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 1px 6px;
    font-weight: 700;
}

.type-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.25);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 8px 14px;
    background: var(--green);
    color: var(--white);
    border-radius: 10px; /* Less round, matching web radius */
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: waPulse 3s infinite;
}

@keyframes waPulse {
    0% { box-shadow: 0 0 0 0 rgba(70, 91, 45, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(70, 91, 45, 0); }
    100% { box-shadow: 0 0 0 0 rgba(70, 91, 45, 0); }
}

.floating-whatsapp.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-whatsapp i {
    font-size: 18px;
    color: #25D366;
    background: white;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px; /* Less round icon box too */
}

.floating-whatsapp span {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.2px;
}

.floating-whatsapp:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp:hover i {
    transform: scale(1.1) rotate(10deg);
    transition: transform 0.3s ease;
}



/* ===== ENQUIRY MODAL ===== */
.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.enquiry-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
}

.modal-box {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    width: 92%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(24px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.enquiry-modal.open .modal-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
    font-family: var(--font);
}

.modal-close-btn:hover {
    color: var(--white);
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--yellow), #f0af2a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #2a1a0e;
    margin-bottom: 10px;
    box-shadow: 0 4px 16px rgba(255, 190, 61, 0.25);
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
}

.modal-header p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}



.modal-row-3 {
    grid-template-columns: 1fr 1fr;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-field label {
    font-size: 10px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    outline: none;
    height: 40px; /* Match modal-number-input height */
}

.modal-field select option {
    color: #000;
    background: #fff;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 190, 61, 0.15);
}

.modal-field textarea {
    resize: vertical;
    min-height: 60px;
}

/* Modal Number Input Styling */
/* Name/Email stay 100% wide for good typing space */
#mName, #mEmail {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 9px 12px !important;
}

.modal-number-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    height: 40px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.modal-number-input:focus-within {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.15);
}

.modal-number-input input {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
    height: 100%;
    width: 40px;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    color: var(--white);
    font-size: 13px;
}

.num-btn-modal {
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
}

.num-btn-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--yellow);
}

.num-btn-modal.minus {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.num-btn-modal.plus {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-submit-btn {
    background: var(--yellow);
    color: #2a1a0e;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(255, 190, 61, 0.3);
    margin-top: 8px;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 8px 24px rgba(255, 190, 61, 0.4);
}

.modal-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    margin-top: 6px;
}

.modal-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 0;
    gap: 12px;
}

.modal-success-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--yellow), #f0af2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2a1a0e;
    box-shadow: 0 6px 20px rgba(255, 190, 61, 0.25);
}

.modal-success h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
}

.modal-success p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 300px;
}

.modal-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    font-size: 12px;
    transition: var(--transition);
}

.modal-wa-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.modal-dismiss-btn {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    text-decoration: underline;
    transition: color 0.2s;
}

.modal-dismiss-btn:hover {
    color: var(--white);
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.skeleton-img {
    width: 100%;
    height: 220px;
}

.skeleton-body {
    padding: 20px;
}

.skeleton-line {
    height: 14px;
    margin-bottom: 12px;
    width: 100%;
}

.skeleton-line-sm {
    width: 60%;
}

.skeleton-line-xs {
    width: 40%;
}

.skeleton-trip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.skeleton-review {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    min-width: 320px;
}

.skeleton-review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.skeleton-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.skeleton-excursion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ===== SMARTPHONE OPTIMIZATIONS (480px) ===== */

@media(max-width:480px) {

        /* How It Works - Arrows Centered on Mobile */
        .hiw-grid {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: 0;
            margin-top: 40px;
        }

        .hiw-step {
            flex: 1;
            text-align: center;
            position: relative;
            padding: 30px 20px;
            width: 100%;
            max-width: 280px;
        }

        .hiw-arrow {
            padding-top: 0;
            padding: 15px 0;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            transform: rotate(180deg);
            color: var(--yellow);
            font-size: 24px;
            margin: 5px 0;
        }

        .hiw-arrow i {
            display: inline-block;
        }

        .btn-start-planning {
            display: inline-block;
            padding: 14px 32px;
            background: var(--green);
            color: var(--white);
            font-weight: 700;
            font-size: 14px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-family: var(--font);
            transition: var(--transition);
            letter-spacing: 0.4px;
            box-shadow: 0 4px 20px rgba(70, 91, 45, 0.25);
            margin-top: 30px;
        }

        /* ===== BEAUTIFUL MOBILE DROP-DOWN NAV ===== */

        .nav-links {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: auto;
            /* Beautiful glassmorphism dropdown */
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(25px) saturate(200%);
            -webkit-backdrop-filter: blur(25px) saturate(200%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            z-index: 999;
            flex-direction: column;
            padding: 95px 30px 40px 30px;
            gap: 0;
            transform-origin: top;
        }

        .nav-links.open {
            display: flex;
            animation: dropDownMobileMenu 0.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
        }

        @keyframes dropDownMobileMenu {
            from {
                opacity: 0;
                transform: translateY(-30px) scaleY(0.95);
            }

            to {
                opacity: 1;
                transform: translateY(0) scaleY(1);
            }
        }

        /* Backdrop overlay with blur */
        body.menu-open::before {
            content: '';
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 998;
            pointer-events: auto;
            animation: fadeInBackdrop 0.4s ease forwards;
        }

        @keyframes fadeInBackdrop {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .nav-item {
            width: 100%;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav-item:last-child {
            border-bottom: none;
        }

        .nav-item a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 10px;
            font-family: 'Outfit', sans-serif;
            font-size: 21px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.95);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        .nav-item a::after {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .nav-item a:active,
        .nav-item a:hover {
            background: transparent;
            color: var(--yellow);
            padding-left: 20px;
            font-weight: 500;
        }

        .nav-item a:active::after,
        .nav-item a:hover::after {
            color: var(--yellow);
            transform: translateX(5px);
        }

        .nav-item a::before {
            display: none !important;
        }

        /* Elegant Minimalist Hamburger Button */
        .mobile-toggle {
            display: flex;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1010;
            background: transparent;
            border: none;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 6px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 10px;
        }

        .mobile-toggle:active,
        .mobile-toggle:hover {
            transform: scale(0.95);
        }

        .hamburger-line {
            width: 22px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .mobile-toggle.active .hamburger-line {
            background: var(--yellow);
        }

        .mobile-toggle.active .hamburger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .mobile-toggle.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .mobile-toggle.active .hamburger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-actions {
            margin-right: 64px;
            gap: 14px;
        }

        .nav-actions .btn-make-request,
        .nav-actions .nav-icon-btn {
            display: none !important;
        }

    }

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 899px) {

    /* Hide hero tagline before form box and left content would overlap */
    .hero-left-content {
        display: none;
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .hiw-grid {
        flex-direction: column;
        gap: 32px;
    }

    .hiw-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .hiw-step {
        padding: 0 16px;
    }

    .why-us-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .why-us-features {
        grid-template-columns: 1fr;
    }

    .modal-row,
    .modal-row-contact,
    .modal-row-2,
    .modal-row-3 {
        grid-template-columns: 1fr;
    }

    /* Force children/adults to stay on the same row */
    .modal-row.modal-row-split {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    #mName, #mEmail {
        width: 100% !important;
    }

    .modal-box {
        padding: 14px 12px;
    }

    .floating-whatsapp {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 10px;
    }

    .floating-whatsapp span { display: none; }
    .floating-whatsapp i { width: 36px; height: 36px; font-size: 22px; }


    .type-filter-pills {
        gap: 6px;
    }

    .type-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* Hero section on tablets/large phones */
    .hero-new {
        height: 100vh;
        min-height: 600px;
    }

    .hero-image-wrapper {
        height: 100%;
    }

    .hero-slide-track {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0;
    }

    .hero-overlay {
        display: block !important;
        opacity: 0.5 !important;
    }

    /* Hero features bar on small screens */
    .hero-features-bar {
        display: flex !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        justify-content: center;
    }

    .features-bar-list {
        gap: 14px;
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-left-content {
        display: none !important;
    }

    .hero-booking-card {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        right: auto !important;
        width: 90% !important;
        max-width: 380px !important;
        margin: 0 !important;
        padding: 20px 16px !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
        z-index: 50 !important;
    }

    .hero-tagline-heading {
        font-size: 1.8rem;
    }

    .hero-tagline-sub {
        font-size: 14px;
        margin-bottom: 24px;
    }

    /* Excursion button sizing */
    .excursion-enquire-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ==========================================================
   FONT PAIRING: Prata (headings) + Outfit (body)
   Applied to: Filter/Trips, How It Works, Zanzibar sections,
               Excursions, Who We Are (Why Us)
   NOT applied to: Hero section, Reviews/TRUSTED BY TRAVELERS
   ========================================================== */

/* --- Filter & Trip Cards --- */
.filter-section,
.trips-section {
    font-family: 'Outfit', sans-serif;
}

/* Trip card titles — bigger, elegant Prata */
.trip-card-body h3 {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 19px;
    letter-spacing: -0.3px;
    line-height: 1.35;
}

/* Trip card body text — Outfit, compact & light */
.trip-card-body,
.trip-card-features li,
.trip-card-meta,
.trip-route-simple {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.trip-price-new {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.type-pill {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* --- How It Works Section --- */
.how-it-works-section {
    font-family: 'Outfit', sans-serif;
}

/* Main heading — large & editorial */
.how-it-works-section .section-heading {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Step titles — clear size jump over body */
.hiw-step-title {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

/* Step descriptions — light Outfit */
.how-it-works-section .section-sub,
.hiw-step-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

.btn-start-planning {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* --- Zanzibar Content Sections --- */
.content-section {
    font-family: 'Outfit', sans-serif;
}

/* Zanzibar section headings — large, serif standout */
.content-section .section-heading {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    letter-spacing: -0.4px;
    line-height: 1.2;
}

/* Prose — lighter body reading weight */
.content-section .prose p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
}

.content-section .prose strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* --- Excursions Section --- */
.excursions-section {
    font-family: 'Outfit', sans-serif;
}

/* "Unmissable Zanzibar Excursions" heading */
.excursions-section .section-heading {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Individual excursion card titles */
.excursion-card-body h3 {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 19px;
    letter-spacing: -0.2px;
    line-height: 1.3;
}

/* Excursion body — compact Outfit */
.excursions-section .section-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.excursion-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
}

.excursion-price,
.excursion-link,
.excursion-enquire-btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

/* --- Who We Are / Why Us Section --- */
.why-us-section {
    font-family: 'Outfit', sans-serif;
}

/* "Start Your Journey With Us" heading */
.why-us-section .section-heading {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Feature card sub-headings */
.why-us-feat h4 {
    font-family: 'Prata', serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.1px;
    line-height: 1.35;
}

/* Body text — lean Outfit */
.why-us-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
}

.why-us-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.85;
}

.why-us-feat p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
}

.why-us-contact-row {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.btn-yellow {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}