/*
Theme Name: Trekking Theme
Theme URI: https://trekkingtravels.com
Author: Trekking Travels & Tours
Author URI: https://trekkingtravels.com
Description: A custom WordPress theme for Trekking Travels & Tours travel agency. Features a single-page scrolling layout with custom travel package management.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trekking-theme
*/

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-orange: #FF7D00;
    --light-orange: #FF9D33;
    --header-footer-bg: #156163;
    --header-footer-dark: #2a5a6a;
    --header-footer-darker: #1E6B66;
    --dark-text: #1f2937;
    --light-text: #6b7280;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --navbar-height: 138px;
    --accreditation-height: 104px;
    --banner-radius: 8px;
}

/* Keep package price amounts flat and readable */
.product-price,
.product-price *,
.all-packages-section .product-price,
.all-packages-section .product-price *,
.booking-price,
.booking-price *,
.price-amount {
    text-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    padding-top: calc(var(--navbar-height) + var(--accreditation-height));
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #156163;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.25rem 0;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.9rem 1.25rem;
    flex-wrap: wrap;
}

.navbar-logo {
    display: flex;
    align-items: center;
    height: 90px;
    padding: 1.8rem 0;
}

.navbar-logo img,
.navbar-logo .custom-logo-link img {
    height: 90px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.navbar-logo .custom-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    align-items: center;
    margin-left: auto;
    order: 2;
}

.navbar-menu li a {
    color: var(--white);
    font-weight: 600;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    position: relative;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
    background: rgba(255, 255, 255, 0.12);
}

.navbar-tools {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 0 0 100%;
    order: 3;
    justify-content: flex-start;
    min-width: 0;
}

.navbar-filter-dropdown {
    display: none;
    min-width: 182px;
    padding: 0.72rem 2.7rem 0.72rem 1rem;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 999px;
    color: #17322f;
    box-shadow: none !important;
    flex-shrink: 0;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2317322f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.navbar-filter-dropdown:focus {
    border-color: #ffffff;
    box-shadow: none !important;
}

.navbar-search-container {
    max-width: 520px;
    width: min(100%, 520px);
    margin: 0;
    background: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14) !important;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
    padding: 2px;
}

.navbar-search-input-wrapper {
    padding: 0.82rem 1.1rem;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    background: #ffffff;
    border-radius: 999px 0 0 999px;
}

.navbar-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #17322f;
    background: transparent;
    font-family: inherit;
}

.navbar-search-input::placeholder {
    color: #7f8f8b;
}

.navbar-search-button {
    min-width: 112px;
    min-height: 48px;
    padding: 0.82rem 1.25rem;
    border-radius: 999px !important;
    border: none !important;
    box-shadow: none !important;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
    background: #156163;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.navbar-search-button:hover {
    background: #0f4a4c;
    transform: none;
}

.navbar-search-button-icon,
.mobile-menu-title,
.mobile-menu-actions {
    display: none;
}

.mobile-filter-chips {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.1rem 0 0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.mobile-filter-chips::-webkit-scrollbar {
    display: none;
}

.mobile-filter-chips .filter-link {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.72rem 1rem;
    white-space: nowrap;
}

.mobile-filter-chips .filter-link:hover,
.mobile-filter-chips .filter-link.active {
    background: var(--accent-orange);
    color: #ffffff;
    border-color: var(--accent-orange);
}

.navbar-menu li a::after {
    display: none;
}

.navbar-menu li a:hover::after,
.navbar-menu li a.active::after {
    display: none;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    width: 100%;
    padding: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    animation: fadeInUp 1s ease;
    }

/* ============================================
   BANNER SECTION
   ============================================ */
.banner-section {
    width: 100%;
    margin-top: 0;
    box-sizing: border-box;
    padding: 2.5rem 0 1rem 0;
    background: #ffffff;
}

.banner-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.banner-content {
    position: relative;
    min-height: 420px !important;
    height: 420px !important;
    padding: 0;
    border-radius: var(--banner-radius);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    margin-bottom: 0;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.banner-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.banner-item-content {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
    z-index: 2;
    align-items: center;
    justify-content: flex-start;
}

.banner-item-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, color-mix(in srgb, var(--banner-gradient-color, #FF7D00) 94%, transparent) 0%, color-mix(in srgb, var(--banner-gradient-color, #FF7D00) 78%, transparent) 38%, color-mix(in srgb, var(--banner-gradient-color, #FF7D00) 38%, transparent) 68%, rgba(15, 23, 42, 0.12) 100%);
    z-index: 1;
    border-radius: var(--banner-radius);
}

.banner-carousel-item.banner-gradient-off.banner-off-image .banner-item-content::before {
    display: none;
}

.banner-carousel-item.banner-gradient-off.banner-off-color {
    background-image: none !important;
    background-color: var(--banner-plain-bg, #102a2b);
}

.banner-carousel-item.banner-gradient-off.banner-off-color .banner-item-content::before {
    display: none;
}

.banner-left-content {
    display: none;
}

.banner-text-content {
    text-align: left;
    align-self: center;
    max-width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 4.5rem 2.25rem 5rem;
    box-sizing: border-box;
    overflow: hidden;
    min-width: 0;
    z-index: 5;
    margin-left: 0;
    margin-right: auto;
}

.banner-promo-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.875rem !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
    z-index: 100;
    margin: 0;
    box-sizing: border-box;
    visibility: visible !important;
    opacity: 1 !important;
    border: 1px solid rgba(255, 125, 0, 0.34);
}

.banner-promo-badge {
    background: #ffffff;
    color: var(--accent-orange);
}

.banner-image-box {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-header {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.banner-subtext {
    font-size: clamp(0.7rem, 1.2vw, 0.95rem);
    color: var(--white);
    opacity: 0.95;
    margin: 0 0 1rem 0;
    line-height: 1.5;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.banner-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    opacity: 0.9;
    font-size: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.banner-location-icon {
    flex-shrink: 0;
    color: var(--white);
    opacity: 0.9;
}

.banner-location-name {
    font-weight: 500;
}

.banner-book-button {
    position: absolute;
    bottom: 2rem;
    left: 2.25rem;
    transform: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--accent-orange);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.54);
    text-decoration: none;
    border-radius: var(--banner-radius);
    font-weight: 600;
    font-size: 1rem;
    z-index: 10;
    z-index: 20;
    white-space: nowrap;
    flex-shrink: 0;
    animation: beat 2s ease-in-out infinite;
}

.banner-book-button {
    background: #156163;
}

.banner-book-button:hover {
    background: #0f4a4c;
    color: #ffffff;
    animation: beat 1s ease-in-out infinite;
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.05);
    }
    20%, 40% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    60% {
        transform: scale(1);
    }
}

.banner-book-button svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.banner-book-button:hover svg {
    transform: translateX(4px);
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    transform: translateX(20px);
    pointer-events: none;
    overflow: visible;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.banner-carousel-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.banner-carousel-item.active .banner-promo-badge {
    opacity: 1 !important;
    visibility: visible !important;
}

.banner-carousel-item .banner-image-box {
    width: 100%;
    height: 100%;
}

.banner-carousel-dots {
    position: relative;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    z-index: 30;
    padding: 1.5rem 0 0 0;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.banner-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    min-width: 10px;
}

.banner-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-carousel-dot.active {
    background: var(--accent-orange);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .banner-section {
        padding: 1rem 0.75rem;
        margin-top: 0;
    }

    .banner-section .container {
        padding: 0 0.75rem;
    }

    .banner-content {
        min-height: 200px !important;
        height: 200px !important;
        padding: 0.875rem;
    }

    .banner-text-content {
        max-width: 50%;
        padding-left: 0.5rem;
        padding-top: 3rem;
        padding-bottom: 1rem;
        padding-right: 0;
        box-sizing: border-box;
        max-height: 100%;
        overflow: hidden;
    }

    .banner-header {
        font-size: 1rem;
        margin: 0 0 0.3rem 0;
        line-height: 1.2;
    }

    .banner-subtext {
        font-size: 0.55rem;
        margin: 0 0 0.4rem 0;
        line-height: 1.2;
    }
    
    .banner-location {
        font-size: 0.5rem;
        margin-top: 0.3rem;
    }

    .banner-promo-badge {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.25rem 0.625rem;
        font-size: 0.6rem !important;
        margin: 0;
        z-index: 25;
        border-radius: 0 12px 0 30px;
    }

    .banner-location {
        font-size: 0.7rem;
        margin-top: 0.4rem;
        gap: 0.3rem;
    }

    .banner-location-icon {
        width: 12px;
        height: 12px;
    }

    .banner-left-content {
        width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
    }
    
    .banner-carousel-dots {
        padding: 1rem 0 0 0;
        gap: 0.35rem;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .banner-carousel-dot {
        width: 7px;
        height: 7px;
    }

    .banner-carousel-dot.active {
        width: 18px;
    }

    .banner-book-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
        gap: 0.35rem;
        bottom: 0.75rem;
    }

    .banner-book-button svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .banner-section {
        padding: 0.75rem 0.5rem;
        margin-top: 0;
    }

    .banner-section .container {
        padding: 0 0.5rem;
    }

    .banner-content {
        min-height: 180px !important;
        height: 180px !important;
        padding: 0.75rem;
    }

    .banner-header {
        font-size: 0.9rem;
        margin: 0 0 0.25rem 0;
        line-height: 1.2;
    }

    .banner-subtext {
        font-size: 0.5rem;
        margin: 0 0 0.3rem 0;
        line-height: 1.2;
    }
    
    .banner-location {
        font-size: 0.45rem;
        margin-top: 0.25rem;
    }

    .banner-promo-badge {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.2rem 0.5rem;
        font-size: 0.55rem !important;
        margin: 0;
        z-index: 25;
        border-radius: 0 12px 0 25px;
    }

    .banner-location {
        font-size: 0.65rem;
        margin-top: 0.3rem;
        gap: 0.25rem;
    }

    .banner-location-icon {
        width: 10px;
        height: 10px;
    }

    .banner-left-content {
        width: calc(50% - 0.375rem);
        max-width: calc(50% - 0.375rem);
        gap: 0.4rem;
    }
    
    .banner-text-content {
        padding-left: 0.375rem;
        padding-top: 2.5rem;
        padding-bottom: 1rem;
        padding-right: 0;
        box-sizing: border-box;
        max-height: 100%;
        overflow: hidden;
    }
    
    .banner-carousel-dots {
        padding: 0.75rem 0 0 0;
        gap: 0.3rem;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .banner-carousel-dot {
        width: 6px;
        height: 6px;
    }

    .banner-carousel-dot.active {
        width: 16px;
    }

    .banner-book-button {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
        gap: 0.3rem;
        bottom: 0.5rem;
    }

    .banner-book-button svg {
        width: 10px;
        height: 10px;
        flex-shrink: 0;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

/* Filter Bar */
.hero-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1rem;
    padding: 0.3rem 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.filter-links-desktop {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: nowrap;
}

.filter-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.2rem 0.4rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile Dropdown - Hidden by default */
.filter-dropdown-mobile {
    display: none;
    width: fit-content;
    min-width: fit-content;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFFFFF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.filter-dropdown-mobile:focus {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    outline: none;
}

.filter-dropdown-mobile option {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
}

.filter-link:hover {
    color: var(--accent-orange);
}

.filter-link.active {
    background: var(--accent-orange);
    color: #ffffff;
    font-weight: 600;
}

/* Main Search Bar */
.hero-search-container {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.hero-search-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.7rem 1rem;
    gap: 0.6rem;
    position: relative;
}

.search-icon {
    color: var(--light-text);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.85rem;
    color: var(--dark-text);
    background: transparent;
    font-family: inherit;
}

.hero-search-input::placeholder {
    color: var(--light-text);
    font-size: 0.85rem;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    width: 100%;
    box-sizing: border-box;
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
    background-color: var(--light-bg);
}

.suggestion-item.no-results {
    color: var(--light-text);
    cursor: default;
    text-align: center;
    font-style: italic;
}

.suggestion-item.no-results:hover {
    background-color: transparent;
}

.suggestion-title {
    font-weight: 500;
    color: var(--dark-text);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.suggestion-title strong {
    color: #FF7D00;
    font-weight: 600;
}

.suggestion-location {
    font-size: 0.8rem;
    color: var(--light-text);
}

.suggestion-location strong {
    color: #FF7D00;
    font-weight: 600;
}

.hero-search-button {
    padding: 0.7rem 2rem;
    background: #156163;
    color: var(--white);
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.hero-search-button:hover {
    background: #0f4a4c;
    transform: scale(1.02);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    box-sizing: border-box;
}

/* ============================================
   SUGGESTIONS SECTION (PACKAGES)
   ============================================ */
.suggestions {
    background: var(--white);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ============================================
   ALL PACKAGES SECTION
   ============================================ */
.all-packages-section {
    background: var(--light-bg);
    padding: 5rem 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.all-packages-section .packages-grid {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    gap: 1rem;
}

.all-packages-section .product-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    box-shadow: none;
    border: 1px solid var(--border-color);
}

.all-packages-section .product-card:hover {
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--border-color);
    transform: translateY(-2px);
}

.all-packages-section .product-image-wrapper {
    width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 220px;
    border-radius: 0;
    overflow: hidden;
}

.all-packages-section .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: auto;
}

.all-packages-section .product-content {
    padding: 1.35rem 1.45rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
    justify-content: start;
    gap: 1rem 1.35rem;
}

.all-packages-section .product-title {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.all-packages-section .product-price {
    font-size: 1.75rem;
    font-weight: 850;
    color: var(--dark-text);
    margin-top: 0;
}

/* Pagination Styles */
.packages-pagination {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 4rem;
    padding: 2.5rem 1rem;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    background: var(--light-bg);
    border-radius: 12px;
    clear: both;
}

.pagination-btn {
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--header-footer-bg) !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 120px;
}

.pagination-btn:hover {
    background: transparent;
    color: var(--header-footer-dark) !important;
    transform: translateY(-2px);
    box-shadow: none;
}

.pagination-btn.disabled {
    background: transparent;
    color: #9ca3af !important;
    cursor: not-allowed;
    border: none;
    opacity: 0.6;
}

.pagination-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    color: #9ca3af !important;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    padding: 0.5rem;
    border-radius: 50px;
    border: none;
}

.pagination-number {
    padding: 0.625rem 1rem;
    background: transparent;
    color: var(--dark-text) !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    min-width: 40px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.pagination-number:hover {
    background: transparent;
    color: var(--header-footer-bg) !important;
}

.pagination-number.active {
    background: transparent;
    color: var(--header-footer-bg) !important;
    border-radius: 8px;
    font-weight: 700;
}

.pagination-dots {
    padding: 0.625rem 0.5rem;
    color: var(--light-text) !important;
    font-weight: 600;
}

.pagination-dots {
    padding: 0.75rem 0.5rem;
    color: var(--light-text);
}

.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
    transition: opacity 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-shadow: 0 2px 12px rgba(15, 23, 42, 0.28);
}

.listings-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #ffffff;
}

.listings-count {
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 700;
}

.listings-sort {
    color: #156163;
    font-size: 0.9rem;
    font-weight: 700;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-card,
.product-card *,
.all-packages-section .product-card,
.all-packages-section .product-card * {
    text-shadow: none !important;
}

.product-card[data-package-id] {
    cursor: pointer;
}

.product-card:hover,
.product-card[data-package-id]:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
    text-decoration: none;
    color: inherit;
}

.product-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.product-image-wrapper::after {
    content: 'International';
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(21, 97, 99, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #156163;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: none;
}

.product-card[data-package-type="local"] .product-image-wrapper::after {
    content: 'Local';
}

.product-card[data-package-hotel="1"] .product-image-wrapper::after {
    content: 'Hotel';
}

.product-card[data-package-lodge="1"] .product-image-wrapper::after {
    content: 'Lodge';
}

.product-card[data-package-adventures="1"] .product-image-wrapper::after {
    content: 'Adventure';
}

.product-card[data-package-promo="1"] .product-image-wrapper::after {
    content: 'Promo';
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(255, 247, 237, 0.96);
    color: #c2410c;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 1.35rem 1.45rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
    gap: 1rem 1.35rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.product-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.product-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
}

.product-location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 600;
    margin: -0.2rem 0 0;
}

.product-location::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-orange);
    flex: 0 0 auto;
}

.product-description {
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
    max-width: 68ch;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    flex: 0 0 auto;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    background: #ecfdf5;
    color: #047857;
}

.rating-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #047857;
}

.rating-stars {
    display: flex;
    gap: 2px;
    align-items: center;
}

.star {
    width: 16px;
    height: 16px;
}

.star-filled {
    color: #fbbf24;
}

.star-half {
    color: #fbbf24;
}

.star-empty {
    color: #e5e7eb;
    stroke-width: 1.5;
}

.product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.05rem;
}

.product-meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.65rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #f8fbfb;
    color: #155e63;
    font-size: 0.82rem;
    font-weight: 800;
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.15rem;
}

.product-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    max-width: 100%;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    background: #f0fdf4;
    color: #166534;
    font-size: 0.84rem;
    font-weight: 700;
}

.product-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 150px;
    padding-left: 1rem;
    border-left: 1px solid #edf2f7;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 1.75rem;
    color: var(--dark-text);
    margin: 0;
    font-weight: 850;
    text-align: right;
}

.product-price span {
    color: var(--light-text);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.product-availability {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    background: var(--accent-orange);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: none;
    text-shadow: none;
}

.product-card:hover .product-cta {
    background: #d97706;
    transform: translateY(-1px);
}

.product-inclusions-exclusions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-inclusions,
.product-exclusions {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    max-width: 100%;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    background: #f8fafc;
    color: var(--light-text);
    font-size: 0.82rem;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose {
    background: #FFF7ED;
    padding: 5rem 2rem;
}

.why-choose .section-title {
    color: var(--header-footer-bg);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose .section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 800px;
}

.features-carousel-container {
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.features-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item:hover {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #FFEDD5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon {
    width: 32px;
    height: 32px;
    color: #F37024 !important;
}

.feature-icon path {
    fill: #F37024 !important;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Bar */
.stats-bar {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 2rem 1.5rem !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-flow: row !important;
    gap: 1rem !important;
    margin-top: 3rem;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 0.5rem;
    gap: 0.25rem;
    min-width: 0;
    overflow: visible;
    box-sizing: border-box;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #FF7D00 !important;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.75rem !important;
    color: #6B7280 !important;
    font-weight: 400 !important;
    display: block;
    line-height: 1.2 !important;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: nowrap;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--white);
    padding: 5rem 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-section .section-title {
    color: var(--header-footer-bg);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-section .section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 400;
}

.testimonials-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 60s linear infinite;
    will-change: transform;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 400px;
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--header-footer-bg);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.25rem 0;
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--light-text);
    margin: 0;
}

/* Pause animation on hover */
.testimonials-carousel-wrapper:hover .testimonials-carousel {
    animation-play-state: paused;
}

/* Responsive Design for Why Choose Section */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-bar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
        gap: 0.75rem !important;
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 4rem 1.5rem;
    }
    
    .why-choose .section-title {
        font-size: 2rem;
    }
    
    .why-choose .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .feature-item {
        background-color: #FFFFFF !important;
        background: #FFFFFF !important;
        padding: 2rem 1.5rem;
    }
    
    .stats-bar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
        gap: 0.5rem !important;
        padding: 1.5rem 0.75rem !important;
        border-radius: 12px;
    }
    
    .stat-item {
        padding: 0 0.25rem !important;
        display: flex !important;
        flex-direction: column !important;
        width: auto !important;
        min-width: 0 !important;
    }
    
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }

    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-section .section-title {
        font-size: 2rem;
    }

    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }

    .testimonials-carousel {
        gap: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 320px;
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        grid-auto-flow: row !important;
        gap: 0.25rem !important;
        padding: 1rem 0.5rem !important;
        border-radius: 12px;
    }
    
    .stat-item {
        padding: 0 0.125rem !important;
        display: flex !important;
        flex-direction: column !important;
        width: auto !important;
        min-width: 0 !important;
        flex: 1 1 0 !important;
    }
    
    .stat-number {
        font-size: 1.25rem !important;
    }
    
    .stat-label {
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
    }

    .testimonials-section {
        padding: 2.5rem 1rem;
    }

    .testimonials-section .section-title {
        font-size: 1.75rem;
    }

    .testimonials-section .section-subtitle {
        font-size: 0.95rem;
    }

    .testimonials-carousel {
        gap: 1rem;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-avatar,
    .testimonial-avatar-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-name {
        font-size: 0.9rem;
    }

    .testimonial-date {
        font-size: 0.8rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--light-bg);
    padding: 5rem 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Left Column: Text & Features */
.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-paragraph {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.about-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 0.75rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: var(--accent-orange);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: none;
}

.feature-icon-circle {
    width: 32px;
    height: 32px;
    background: #FF7D00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 500;
}

.feature-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.feature-description-small {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Right Column: Podcast & Video */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-profile-panel {
    padding: 1.5rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #ffffff;
}

.about-profile-panel h3 {
    margin: 0;
    color: var(--header-footer-bg);
    font-size: 1.1rem;
}

.about-profile-panel p {
    margin: -0.75rem 0 0;
    color: #475569;
    line-height: 1.65;
}

.about-profile-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.about-profile-values span {
    padding: 0.45rem 0.65rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #f8fbfb;
    color: #155e63;
    font-size: 0.82rem;
    font-weight: 800;
}

.podcast-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.microphone-icon {
    color: var(--header-footer-bg);
}

.podcast-description {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1rem;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #E5E7EB;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    margin-left: 4px;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #FF7D00;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: center;
}

.youtube-button:hover {
    background: #EA580C;
    transform: translateY(-2px);
}

.trekking-podcast-section {
    background: #ffffff;
    padding: 4rem 0;
}

.trekking-podcast-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 2rem;
    align-items: center;
}

.trekking-podcast-copy {
    max-width: 460px;
}

.trekking-podcast-copy h2 {
    margin: 0.45rem 0 1rem;
    color: var(--header-footer-bg);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
}

.trekking-podcast-copy p {
    margin: 0;
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.8;
}

.trekking-podcast-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #102a2b;
    border: 1px solid var(--border-color);
}

.trekking-podcast-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.trekking-podcast-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: #ffffff;
    text-align: center;
}

.trekking-podcast-placeholder strong {
    font-size: 1.25rem;
}

.trekking-podcast-placeholder span {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.75);
}

/* Team Members Section */
.team-members-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(21, 97, 99, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.team-members-carousel-container {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-members-carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.team-member-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-member-image-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.team-member-title {
    font-size: 0.95rem;
    color: var(--header-footer-bg);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.team-member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.75rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.team-member-email,
.team-member-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    overflow: hidden;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member-email:hover,
.team-member-phone:hover {
    color: var(--header-footer-bg);
}

.team-member-email svg,
.team-member-phone svg {
    flex-shrink: 0;
    color: var(--header-footer-bg);
}

@media (max-width: 768px) {
    .team-members-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .team-members-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .team-members-grid {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        grid-template-columns: none;
        padding-bottom: 1rem;
    }
    
    .team-member-card {
        flex: 0 0 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        min-width: 0;
        scroll-snap-align: start;
        margin-left: 0.5rem;
        overflow: hidden;
    }
    
    .team-member-card:last-child {
        margin-right: 0.5rem;
    }
    
    .team-member-image-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .team-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .team-carousel-dots {
        display: flex;
    }
}

@media (max-width: 768px) {
    .team-members-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .team-members-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }
    
    .team-members-grid {
        display: flex;
        flex-direction: row;
        gap: 1.25rem;
        grid-template-columns: none;
        padding-bottom: 1rem;
    }
    
    .team-member-card {
        flex: 0 0 calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        min-width: 0;
        scroll-snap-align: start;
        margin-left: 1rem;
        overflow: hidden;
    }
    
    .team-member-card:last-child {
        margin-right: 1rem;
    }
    
    .team-members-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .team-carousel-dots {
        display: flex;
    }
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Team Carousel Dots */
.team-carousel-dots {
    display: none !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
    min-height: 20px;
    width: 100%;
}

.team-carousel-dots.show {
    display: flex !important;
}

.team-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.team-carousel-dot:hover {
    background: #9ca3af;
}

.team-carousel-dot.active {
    background: #FF7D00;
    width: 24px;
    border-radius: 4px;
}

/* Features Carousel Dots */
.features-carousel-dots {
    display: none !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
    min-height: 20px;
    width: 100%;
}

.features-carousel-dots.show {
    display: flex !important;
}

.features-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.features-carousel-dot:hover {
    background: #9ca3af;
}

.features-carousel-dot.active {
    background: #FF7D00;
    width: 24px;
    border-radius: 4px;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-heading {
        font-size: 2rem;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-paragraph {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .about-left {
        align-items: center;
    }
    
    .about-features {
        align-items: center;
    }
    
    .feature-card {
        justify-content: center;
        text-align: center;
    }
    
    .feature-text-content {
        align-items: center;
        text-align: center;
    }
    
    .podcast-heading {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .podcast-description {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .video-placeholder {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: #F3F4F6;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact .section-title {
    color: var(--header-footer-bg);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: var(--light-text);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 3rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-items: stretch;
    align-items: start;
}

/* Contact Details Card */
.contact-details-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
}

.contact-card-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-card-intro {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    text-align: left;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.contact-item-text {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

/* Contact Form Card */
.contact-form-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
}

.contact-form {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #FFFFFF;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF7D00;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow-y: auto;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    max-width: 100%;
    padding: 1rem 2rem;
    background: #FF7D00;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #EA580C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.paper-plane-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1.5fr;
        gap: 1.5rem;
        min-width: 0;
    }
    
    .contact-details-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
        min-width: 0;
        max-width: 100%;
    }
    
    .contact-card-heading {
        font-size: 1.35rem;
    }
    
    .contact-card-intro {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact .section-title {
        font-size: 2rem;
    }
    
    .contact .section-subtitle {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-card-heading {
        font-size: 1.25rem;
    }
    
    .contact-card-heading,
    .contact-card-intro {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-item-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .form-row .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-details-card,
    .contact-form-card {
        padding: 2rem 1.5rem;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-submit {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
    padding: 2rem;
    background: var(--light-bg);
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   CORPORATE CLIENTS SECTION
   ============================================ */
.corporate-clients-section {
    background: #ffffff;
    padding: 3rem 2rem;
    overflow: hidden;
}

.corporate-clients-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--header-footer-bg);
    margin-bottom: 2rem;
}

.corporate-clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.corporate-clients-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-logos 30s linear infinite;
    width: fit-content;
}

.corporate-client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 184px;
    width: 340px;
}

.corporate-client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .corporate-clients-section {
        padding: 2rem 1rem;
    }
    
    .corporate-clients-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .corporate-clients-track {
        gap: 1rem;
    }
    
    .corporate-client-logo {
        height: 144px;
        width: 280px;
    }
}

@media (max-width: 768px) {
    .corporate-clients-section {
        padding: 1.5rem 0.75rem;
    }
    
    .corporate-clients-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .corporate-clients-track {
        gap: 0.75rem;
    }
    
    .corporate-client-logo {
        height: 128px;
        width: 256px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #156163;
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem 1.5rem;
}

.footer > .container {
    max-width: 1280px;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-main {
    margin-bottom: 3rem;
}

/* Zone 1: Main Navigation & Socials */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.footer-logo img,
.footer-logo .custom-logo-link img {
    height: 90px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.footer-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-left: 1rem;
}

.social-icon-btn {
    width: 40px;
    height: 40px;
    background: var(--header-footer-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    background: #FF7D00;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Zone 2: Accreditation Banner */
.footer-accreditation-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    margin-bottom: 0;
    background: #FFFFFF;
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
    min-height: auto;
}

.site-accreditation {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    max-width: none;
    padding-left: max(2rem, calc((100vw - 1200px) / 2));
    padding-right: max(2rem, calc((100vw - 1200px) / 2));
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.accreditation-header {
    text-align: left;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: none;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    align-self: center;
    height: auto;
    line-height: 1.1;
}

.accreditation-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-content: end;
    height: 100%;
    align-self: center;
    margin-left: auto;
}

.accreditation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 140px;
    height: 72px;
}

.accreditation-logo {
    width: 120px;
    height: 56px;
    object-fit: contain;
}

.accreditation-logo.travelport-logo {
    width: 120px;
    height: 56px;
}

.accreditation-label {
    font-size: 0.875rem;
    color: var(--light-text);
    text-align: center;
    margin: 0;
}

/* Zone 3: Copyright Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text,
.made-by-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.2;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .trekking-podcast-section {
        padding: 3rem 0;
    }

    .trekking-podcast-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trekking-podcast-copy {
        max-width: none;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-column-title {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-accreditation-wrapper {
        margin: 0 auto;
        padding: 1rem 0.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .site-accreditation {
        margin-top: 0;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .accreditation-header {
        text-align: left;
        font-size: 1.15rem;
        line-height: 1.1;
    }
    
    .accreditation-logos {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
        margin-left: auto;
    }

    .accreditation-item {
        min-width: 0;
        width: 100%;
        height: 72px;
    }
    
    .accreditation-logo {
        width: 100%;
        max-width: 104px;
        height: 58px;
    }
    
    .accreditation-logo.travelport-logo {
        width: 100%;
        max-width: 104px;
        height: 58px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        align-items: center;
    }
    
    .copyright-text,
    .made-by-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: 1;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-column-title {
        text-align: center;
        line-height: 1.2;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        line-height: 1.2;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-accreditation-wrapper {
        margin: 0 auto;
        padding: 1rem 0.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .site-accreditation {
        margin-top: 0;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .accreditation-header {
        font-size: 1.05rem;
        text-align: left;
        line-height: 1.1;
    }
    
    .accreditation-logos {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
        margin-left: auto;
    }

    .accreditation-item {
        width: 100%;
        height: 64px;
    }
    
    .accreditation-logo {
        width: 100%;
        max-width: 88px;
        height: 50px;
    }
    
    .accreditation-logo.travelport-logo {
        width: 100%;
        max-width: 88px;
        height: 50px;
    }
    
    .footer-bottom {
        text-align: center;
        align-items: center;
    }
    
    .copyright-text,
    .made-by-text {
        text-align: center;
        line-height: 1.2;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-orange);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.modal-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
}

.modal-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.modal-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-book-now {
    width: 100%;
    padding: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: var(--light-orange);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--light-orange);
    transform: translateY(-5px);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    /* Center align all text and add padding in mobile */
    .section-title,
    .section-subtitle,
    .about-heading,
    .about-paragraph,
    .package-title,
    .package-description-text,
    .section-heading,
    .column-heading,
    .contact-card-heading,
    .contact-card-intro,
    .contact-item-title,
    .contact-item-text,
    .podcast-heading,
    .podcast-description,
    .feature-title,
    .feature-description,
    .product-title,
    .product-price,
    .package-location {
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .navbar-menu {
        position: static;
        top: var(--navbar-height);
        right: auto;
        left: auto;
        width: 100%;
        flex: 0 0 100%;
        order: 4;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        background: rgba(255, 255, 255, 0.08);
        flex-direction: column;
        padding: 0;
        border-radius: 18px;
        box-shadow: none;
        transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease;
        align-items: stretch;
        margin-left: 0;
        gap: 0.2rem;
        overflow: hidden;
        z-index: 1001;
    }

    .navbar-container {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem 1rem;
    }

    .navbar-menu.active {
        max-height: 440px;
        opacity: 1;
        pointer-events: auto;
        padding: 0.65rem;
    }

    .navbar-menu li a {
        display: block;
        width: 100%;
        padding: 0.72rem 0.9rem;
        border-radius: 12px;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .navbar-menu li a:hover,
    .navbar-menu li a.active {
        background: rgba(255, 255, 255, 0.12);
    }

    .navbar-menu li a::after {
        display: none;
    }

    .mobile-menu-title {
        display: none;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 800;
        padding: 0.35rem 1rem 1rem;
    }

    .mobile-menu-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        margin-top: 0.35rem;
        padding-top: 0.55rem;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .mobile-menu-actions a {
        background: #ffffff;
        color: #156163 !important;
        text-align: center;
    }

    .navbar-toggle {
        display: flex;
        order: 2;
        width: auto;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
        margin-left: auto;
        flex: 0 0 auto;
        min-width: 44px;
        min-height: 44px;
        border-radius: 999px;
    }

    .navbar-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .navbar-logo {
        order: 1;
        width: auto;
        justify-content: flex-start;
        height: 80px;
        padding: 0.75rem;
        flex: 0 1 auto;
    }

    .navbar-logo img,
    .navbar-logo .custom-logo-link img {
        max-width: 300px;
    }

    .navbar-tools {
        width: 100%;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        order: 3;
        margin-left: 0;
        gap: 0.65rem;
    }

    .navbar-filter-dropdown {
        display: none;
    }

    .navbar-search-container {
        max-width: none;
        width: 100%;
        border: none !important;
        border-radius: 999px !important;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
    }

    .navbar-search-input-wrapper {
        padding: 0.82rem 1rem;
        border-radius: 999px;
    }

    .navbar-search-button {
        min-width: 48px;
        width: 48px;
        height: 48px;
        padding: 0;
        border-radius: 999px !important;
    }

    .navbar-search-button-text {
        display: none;
    }

    .navbar-search-button-icon {
        display: block;
    }

    .mobile-filter-chips {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.1rem 0 0.35rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-filter-chips::-webkit-scrollbar {
        display: none;
    }

    .mobile-filter-chips .filter-link {
        flex: 0 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1;
        padding: 0.65rem 0.95rem;
        white-space: nowrap;
    }

    .mobile-filter-chips .filter-link.active {
        background: var(--accent-orange);
        color: #ffffff;
        border-color: var(--accent-orange);
    }

    .banner-content {
        min-height: 320px !important;
        height: 320px !important;
        border-radius: var(--banner-radius);
    }

    .banner-text-content {
        max-width: 100%;
        padding: 4rem 1rem 4.5rem;
        text-align: left;
        align-items: flex-start;
    }

    .banner-header,
.banner-subtext {
        text-align: left;
    }

    .banner-book-button {
        left: 1rem;
        bottom: 1rem;
        transform: none;
    }

    .banner-promo-badge {
        top: 1rem;
        left: 1rem;
        right: auto;
        border-radius: var(--banner-radius);
    }

    .listings-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
        margin-top: 1.25rem;
    }

    .packages-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .product-card,
    .all-packages-section .product-card {
        display: grid;
        grid-template-columns: 1fr;
        border-radius: 8px;
    }

    .product-image-wrapper,
    .all-packages-section .product-image-wrapper {
        height: 210px;
        min-height: 210px;
    }

    .product-content,
    .all-packages-section .product-content {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        align-items: stretch;
    }

    .product-heading-row {
        flex-direction: column;
        gap: 0.65rem;
    }

    .product-side {
        align-items: stretch;
        min-width: 0;
        padding-left: 0;
        padding-top: 0.9rem;
        border-left: 0;
        border-top: 1px solid #edf2f7;
    }

    .product-price,
    .all-packages-section .product-price {
        text-align: left;
        align-self: stretch;
    }

    .hero {
        height: 12.5vh;
        min-height: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-filter-bar {
        padding: 0;
        border-radius: 25px;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .filter-links-desktop {
        display: none;
    }

    .filter-dropdown-mobile {
        display: block;
    }

    .filter-link {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
        white-space: nowrap;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    box-sizing: border-box;
    text-shadow: 0 1px 8px rgba(15, 23, 42, 0.24);
}

    .hero-search-container {
        flex-direction: row;
        border-radius: 50px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-search-input-wrapper {
        padding: 0.6rem;
        border-radius: 50px;
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }

    .hero-search-input {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-search-button {
        border-radius: 50px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }


    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-title,
    .product-price,
    .product-rating {
        text-align: center;
        justify-content: center;
    }

    .features-carousel-container {
        margin-bottom: 3rem;
    }
    
    .features-carousel-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .features-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .features-grid {
        display: flex;
        flex-direction: row;
        gap: 1.25rem;
        grid-template-columns: none;
        padding-bottom: 1rem;
    }
    
    .feature-item {
        flex: 0 0 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        scroll-snap-align: start;
        margin-left: 0.5rem;
    }
    
    .feature-item:last-child {
        margin-right: 0.5rem;
    }
    
    .features-carousel-dots {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 1rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}


@media (max-width: 768px) {
    .contact {
        padding: 2rem 0.75rem;
    }
    
    .contact .section-title {
        font-size: 1.75rem;
    }
    
    .contact .section-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-content {
        gap: 1.5rem;
        margin-top: 2rem;
        min-width: 0;
    }
    
    .contact-details-card,
    .contact-form-card {
        padding: 1.5rem 1rem;
        min-width: 0;
        max-width: 100%;
    }
    
    .contact-card-heading {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-card-intro {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .contact-item-title {
        font-size: 0.95rem;
    }
    
    .contact-item-text {
        font-size: 0.875rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.75rem 0.875rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-submit {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
    
    .navbar-logo {
        height: 50px;
        padding: 0.5rem;
    }

    .navbar-logo img,
    .navbar-logo .custom-logo-link img {
        height: 50px;
        max-width: 180px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        left: 1rem;
        width: 50px;
        height: 50px;
    }

    .hero {
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero-filter-bar {
        padding: 0;
        border-radius: 25px;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .filter-links-desktop {
        display: none;
    }

    .filter-dropdown-mobile {
        display: block;
        font-size: 0.85rem;
        padding: 0.55rem 1rem;
        padding-right: 2.5rem;
    }

    .filter-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
        white-space: nowrap;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-search-container {
        border-radius: 50px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-search-input-wrapper {
        padding: 0.6rem;
        border-radius: 50px;
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
    }

    .hero-search-input {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-search-button {
        border-radius: 50px;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .all-packages-section .product-card {
        flex-direction: column;
    }
    
    .all-packages-section .product-image-wrapper {
        width: 100%;
        min-width: auto;
        height: 180px;
        border-radius: 0;
    }
    
    .all-packages-section .product-content {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .all-packages-section .product-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .all-packages-section .product-price {
        font-size: 1rem;
        margin-top: 0.25rem;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .product-content {
        padding: 1rem;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .all-packages-section .product-title {
        font-size: 1.25rem;
    }
    
    .packages-pagination {
        gap: 0.5rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        padding: 0.6rem 0.75rem;
        min-width: 40px;
        font-size: 0.9rem;
    }
    
    .product-title,
    .product-price,
    .product-rating {
        text-align: left;
        justify-content: flex-start;
    }

    .section {
        padding: 3rem 1.5rem;
    }
    
    .package-header-info,
    .package-rating-badge,
    .package-location {
        text-align: center;
        align-items: center;
        justify-content: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .navbar-container {
        padding: 1rem;
    }
}

/* ============================================
   PACKAGE VIEW PAGE
   ============================================ */
.package-view {
    padding-top: 0;
    background: #f8fafc;
}

.package-view-container {
    width: 100%;
}

/* Package Header */
.package-header {
    padding: 2.5rem 0 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-color);
}

.package-header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    max-width: 980px;
}

.package-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.package-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(21, 97, 99, 0.28);
    border-radius: 8px;
    background: #ffffff;
    color: #155e63;
    font-size: 0.78rem;
    font-weight: 800;
}

.package-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 850;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.08;
    max-width: 880px;
}

.package-rating-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.package-rating-badge .star-rating > .star-filled,
.package-rating-badge .star-rating > .star-half,
.package-rating-badge .star-rating > .star-empty {
    display: none;
}

.package-rating-badge .star-rating svg.star-filled,
.package-rating-badge .star-rating svg.star-half,
.package-rating-badge .star-rating svg.star-empty {
    display: block;
}

.star-filled {
    color: #fbbf24;
    font-size: 1.25rem;
}

.star-half {
    color: #fbbf24;
    font-size: 1.25rem;
}

.star-empty {
    color: #e5e7eb;
    font-size: 1.25rem;
}

.rating-value {
    font-weight: 600;
    color: var(--dark-text);
    margin-left: 0.5rem;
}

.rating-badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    background: #ffffff;
    color: #156163;
    border: 1px solid rgba(21, 97, 99, 0.25);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 800;
}

.package-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 1rem;
}

.location-icon {
    color: var(--light-text);
    flex-shrink: 0;
}

.package-overview-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: 0.75rem;
    width: min(100%, 820px);
    margin-top: 0.35rem;
}

.package-overview-item {
    padding: 0.85rem 1rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #ffffff;
}

.overview-label,
.price-label,
.booking-kicker {
    display: block;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 0.2rem;
}

.package-overview-item strong {
    color: var(--dark-text);
    font-size: 0.98rem;
}

/* Image Gallery Section - Two Column Layout */
.package-image-gallery-container {
    padding: 2rem 0 2.75rem;
    background: #f8fafc;
}

.package-gallery-card {
    position: relative;
    padding: 0.85rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #ffffff;
}

.package-gallery-count {
    position: absolute;
    top: 1.55rem;
    right: 1.55rem;
    z-index: 12;
    padding: 0.4rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.58);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
}

.package-image-gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    border-radius: 8px;
    overflow: hidden;
}

/* Left Column: First Image (50%) */
.package-main-image-section {
    width: 100%;
}

.package-main-image-section:only-child {
    grid-column: 1 / -1;
}

/* Right Column: Second Image (50%) */
.package-second-image-section {
    width: 100%;
}

.package-second-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.6;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.package-second-image-wrapper:hover {
    transform: scale(1.01);
}

.package-second-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.view-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.66));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.view-more-overlay:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.74));
}

.view-more-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-align: center;
}

.view-more-text {
    font-weight: 850;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.view-more-count {
    font-size: 0.95rem;
    opacity: 0.9;
}

.package-main-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.6;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.package-main-image-wrapper:hover {
    transform: scale(1.01);
}

.package-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Thumbnail Grid: Remaining Images (shown after View More) */
.package-thumbnail-grid-section {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.package-thumbnail-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-thumbnail-item:hover {
    transform: translateY(-2px);
    border-color: rgba(21, 97, 99, 0.36);
}

.package-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.thumbnail-view-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.thumbnail-view-more-overlay:hover {
    background: rgba(15, 23, 42, 0.82);
}

.view-more-text {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.view-more-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

.view-more-overlay .view-more-text {
    font-size: 1.25rem;
    font-weight: 850;
}

.view-more-overlay .view-more-count {
    font-size: 0.95rem;
}

/* Gallery Carousel Modal */
.gallery-carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.gallery-carousel-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

.gallery-carousel-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-carousel-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-carousel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-carousel-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-carousel-prev,
.gallery-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-carousel-prev {
    left: 20px;
}

.gallery-carousel-next {
    right: 20px;
}

.gallery-carousel-prev:hover,
.gallery-carousel-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-carousel-prev:disabled,
.gallery-carousel-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-carousel-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 2;
}

/* ============================================
   COMPANY ABOUT & SERVICES PAGES
   ============================================ */
.company-page {
    background: #f8fafc;
}

.company-hero {
    padding: 5rem 2rem 4rem;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.company-hero .container,
.company-section .container,
.company-band .container {
    max-width: 1180px;
}

.about-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 2.25rem;
    align-items: center;
}

.about-hero-copy,
.about-hero-media {
    min-width: 0;
}

.about-hero-podcast-video {
    border: 1px solid #dbe6e4;
    background: #102a2b;
}

.company-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.85rem;
    color: #156163;
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.company-hero h1 {
    max-width: 880px;
    margin: 0;
    color: var(--dark-text);
    font-size: clamp(2.1rem, 5vw, 4rem);
    font-weight: 850;
    line-height: 1.06;
}

.company-hero p {
    max-width: 760px;
    margin: 1.2rem 0 0;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.7;
}

.company-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.company-primary-link,
.company-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 850;
}

.company-primary-link {
    background: var(--accent-orange);
    color: #ffffff;
}

.company-secondary-link {
    border: 1px solid #156163;
    color: #156163;
    background: #ffffff;
}

.company-section {
    padding: 4rem 2rem;
}

.company-light-section {
    background: #ffffff;
}

.company-section-header {
    max-width: 760px;
    margin-bottom: 2rem;
}

.company-section-header h2,
.company-two-column h2,
.company-band h2 {
    margin: 0;
    color: var(--dark-text);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
}

.company-section-header p,
.company-copy p {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.company-two-column {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.company-copy p:first-child {
    margin-top: 0;
}

.company-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.company-service-card,
.company-statement-grid article {
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.company-service-number {
    display: inline-flex;
    color: var(--accent-orange);
    font-weight: 850;
}

.company-service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.company-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(21, 97, 99, 0.18);
    border-radius: 8px;
    background: #f8fbfb;
    color: #156163;
    flex: 0 0 auto;
}

.company-service-icon svg {
    width: 42px;
    height: 42px;
}

.company-service-card h3,
.company-statement-grid h3,
.company-team-card h3 {
    margin: 0 0 0.65rem;
    color: var(--dark-text);
    font-size: 1.08rem;
    line-height: 1.35;
}

.company-service-card p,
.company-statement-grid p,
.company-team-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
}

.company-band {
    padding: 3.5rem 2rem;
    background: #0f4a4c;
    color: #ffffff;
}

.company-band .company-kicker,
.company-band h2 {
    color: #ffffff;
}

.company-band-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.company-band-content {
    max-width: 820px;
}

.company-band-content p {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.company-proof-grid,
.company-statement-grid,
.company-value-grid,
.company-team-grid,
.company-client-list,
.company-accreditation-list {
    display: grid;
    gap: 1rem;
}

.company-proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-proof-grid div {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.company-proof-grid strong {
    display: block;
    font-size: 1.35rem;
}

.company-proof-grid span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.company-statement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-value-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.about-stats-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #f8fafc;
}

.about-page .stats-bar {
    margin-top: 0;
    margin-bottom: 0;
}

.company-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.company-why-card {
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.company-why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border: 1px solid rgba(21, 97, 99, 0.18);
    border-radius: 8px;
    background: #f8fbfb;
    color: #156163;
}

.company-why-card h3 {
    margin: 0 0 0.6rem;
    color: var(--dark-text);
    font-size: 1.05rem;
}

.company-why-card p {
    margin: 0;
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.65;
}

.company-value-card,
.company-client-list span,
.company-accreditation-list span {
    padding: 0.85rem 1rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #ffffff;
    color: #155e63;
    font-weight: 850;
    text-align: center;
}

.company-team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}

.company-team-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.company-team-headshot {
    position: relative;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.75), transparent 28%),
        linear-gradient(135deg, #156163, #0f4a4c);
}

.company-team-headshot::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -34px;
    width: 122px;
    height: 122px;
    transform: translateX(-50%);
    border-radius: 999px 999px 0 0;
    background: rgba(255, 255, 255, 0.22);
}

.company-team-headshot span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 850;
}

.company-team-headshot img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editable-page-section {
    padding: 2.25rem 0;
    background: #ffffff;
}

.company-hero + .editable-page-section {
    padding-top: 2.75rem;
}

.editable-page-content {
    max-width: 900px;
    padding: 1.35rem 1.5rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #f8fbfb;
    color: #334155;
    line-height: 1.7;
}

.editable-page-content > *:first-child {
    margin-top: 0;
}

.editable-page-content > *:last-child {
    margin-bottom: 0;
}

.editable-page-content h2,
.editable-page-content h3,
.editable-page-content h4 {
    color: var(--dark-text);
    line-height: 1.2;
}

.editable-page-content a {
    color: #156163;
    font-weight: 700;
}

.company-team-headshot-2 {
    background:
        radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.72), transparent 28%),
        linear-gradient(135deg, #c2410c, #f97316);
}

.company-team-headshot-3 {
    background:
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.72), transparent 28%),
        linear-gradient(135deg, #1d4ed8, #38bdf8);
}

.company-team-headshot-4 {
    background:
        radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.72), transparent 28%),
        linear-gradient(135deg, #4f46e5, #a855f7);
}

.company-team-info {
    padding: 1.2rem;
}

.company-team-info span {
    display: block;
    margin-bottom: 0.5rem;
    color: #156163;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.company-team-info h3 {
    margin: 0 0 0.45rem;
    color: var(--dark-text);
    font-size: 1.08rem;
    line-height: 1.3;
}

.company-team-info p {
    margin: 0;
    color: #64748b;
    font-size: 0.94rem;
    line-height: 1.55;
}

.company-client-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-accreditation-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Main Content Layout */
.package-content-container {
    padding: 3rem 0 4rem;
    background: #f8fafc;
}

.package-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3rem;
    align-items: start;
}

.package-content-grid-full {
    grid-template-columns: 1fr;
}

.package-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.package-section {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.section-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-heading-row .section-heading {
    margin-bottom: 0;
}

.section-note {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.65rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #f8fbfb;
    color: #155e63;
    font-size: 0.78rem;
    font-weight: 800;
}

/* Description */
.package-description-text {
    color: #475569;
    line-height: 1.75;
    font-size: 1rem;
}

.package-description-text p {
    margin-bottom: 1rem;
}

.package-short-description {
    font-size: 1.08rem;
    font-weight: 600;
    margin: 0 0 1.35rem;
    color: var(--dark-text);
    line-height: 1.65;
}

.trip-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.3rem;
}

.trip-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.85rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #f8fbfb;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.sample-itinerary-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.itinerary-step {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.itinerary-day {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 8px;
    background: #fff7ed;
    color: #c2410c;
    font-size: 0.82rem;
    font-weight: 850;
}

.itinerary-step h3 {
    margin: 0 0 0.35rem;
    color: var(--dark-text);
    font-size: 1rem;
}

.itinerary-step p {
    margin: 0;
    color: #64748b;
    font-size: 0.93rem;
    line-height: 1.55;
}

.location-context-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.location-map-placeholder {
    min-height: 210px;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(21, 97, 99, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(21, 97, 99, 0.08) 1px, transparent 1px),
        #f8fbfb;
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #155e63;
    font-weight: 850;
}

.location-context-copy {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
}

.location-context-copy p {
    margin: 0 0 1rem;
    color: #475569;
    line-height: 1.65;
}

.location-context-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.location-context-copy li {
    position: relative;
    padding-left: 1.25rem;
    color: #475569;
    font-size: 0.94rem;
}

.location-context-copy li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #156163;
}

/* Amenities Grid */
.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.amenity-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: #f8fbfb;
    border-radius: 8px;
    border: 1px solid #dbe7e7;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: none;
}

.amenity-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2410c;
    flex-shrink: 0;
}

.amenity-icon-circle svg {
    width: 20px;
    height: 20px;
}

.amenity-name {
    font-weight: 500;
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Inclusions & Exclusions */
.inclusions-exclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.inclusions-column,
.exclusions-column {
    padding: 1.1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fbfdff;
}

.column-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.inclusions-list,
.exclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inclusions-list li,
.exclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
}

.check-icon {
    color: #156163;
    flex-shrink: 0;
    margin-top: 2px;
}

.cross-icon {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Please Note */
.please-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.please-note-list li {
    padding: 0.75rem 0.9rem 0.75rem 2.25rem;
    position: relative;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid #fde68a;
    border-radius: 8px;
    background: #fffbeb;
}

.please-note-list li::before {
    content: '';
    position: absolute;
    left: 0.9rem;
    top: 1.25rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-orange);
}

.policy-notes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.policy-note-card {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    background: #f8fbfb;
}

.policy-note-card span {
    width: 10px;
    height: 10px;
    margin-top: 0.4rem;
    border-radius: 999px;
    background: var(--accent-orange);
    flex: 0 0 auto;
}

.policy-note-card p {
    margin: 0;
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.55;
}

/* Similar Packages */
.similar-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.similar-package-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.similar-package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 97, 99, 0.35);
    box-shadow: none;
}

.similar-package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.similar-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.similar-package-card:hover .similar-package-image img {
    transform: scale(1.05);
}

.similar-package-content {
    padding: 1rem;
}

.similar-package-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.similar-package-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--light-text);
}

/* Booking Widget Sidebar */
.package-sidebar {
    position: relative;
}

.booking-widget {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid #dbe7e7;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.booking-widget-header {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.booking-widget-header strong {
    color: var(--dark-text);
    font-size: 1.3rem;
    line-height: 1.2;
}

.booking-price {
    text-align: left;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.price-amount {
    font-size: clamp(2.45rem, 5vw, 3.35rem);
    font-weight: 850;
    color: var(--accent-orange);
    display: block;
    line-height: 1.1;
}

.price-on-request {
    color: var(--dark-text);
    font-size: 1.35rem;
}

.price-context {
    display: block;
    margin-top: 0.45rem;
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.45;
}

.booking-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0.85rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.booking-summary-list span {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    color: #475569;
    font-size: 0.92rem;
    font-weight: 650;
}

.booking-summary-list span::before {
    content: '';
    width: 7px;
    height: 7px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: #156163;
    flex: 0 0 auto;
}

.booking-trust-signals {
    display: grid;
    gap: 0.45rem;
}

.booking-trust-signals span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #155e63;
    font-size: 0.86rem;
    font-weight: 800;
}

.booking-trust-signals span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    flex: 0 0 auto;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-booking {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #156163;
    border-color: #156163;
}

.btn-secondary:hover {
    background: #156163;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: #f8fafc;
    color: #156163;
    border-color: #dbe7e7;
}

.btn-tertiary:hover {
    background: #eef7f7;
    transform: translateY(-2px);
    box-shadow: none;
}

/* Booking Testimonial */
.booking-testimonial {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.testimonial-rating .star-filled {
    font-size: 1rem;
    color: #fbbf24;
}

.testimonial-rating .star-empty {
    font-size: 1rem;
    color: #e5e7eb;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    font-size: 0.875rem;
    color: var(--dark-text);
    font-weight: 600;
    margin: 0;
}

/* Responsive Design for Package View */
@media (max-width: 768px) {
    .company-hero,
    .company-section,
    .company-band {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .company-two-column,
    .company-band-grid,
    .company-service-grid,
    .company-proof-grid,
    .company-statement-grid,
    .company-value-grid,
    .company-why-grid,
    .company-team-grid,
    .company-client-list,
    .company-accreditation-list {
        grid-template-columns: 1fr;
    }

    .company-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .about-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-hero-media {
        width: 100%;
    }

    .package-header-info {
        align-items: flex-start;
        text-align: left;
    }

    .package-overview-strip {
        grid-template-columns: 1fr;
    }

    .trip-highlights-grid,
    .policy-notes-grid,
    .location-context-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-step {
        grid-template-columns: 1fr;
    }

    .section-heading-row {
        flex-direction: column;
        gap: 0.65rem;
    }

    .package-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-sidebar {
        order: -1;
    }
    
    .booking-widget {
        position: relative;
        top: 0;
    }
    
    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .similar-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .package-title {
        font-size: 2rem;
        text-align: left;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .package-header-info {
        text-align: left;
        align-items: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .package-rating-badge {
        justify-content: flex-start;
    }
    
    .package-location {
        justify-content: flex-start;
    }
    
    .package-description-text {
        text-align: left;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-heading {
        text-align: left;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .column-heading {
        text-align: left;
    }
    
    .inclusions-list,
    .exclusions-list {
        align-items: stretch;
    }
    
    .inclusions-list li,
    .exclusions-list li {
        justify-content: flex-start;
    }
    
    .package-image-gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .package-thumbnail-grid-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .package-second-image-section {
        margin-top: 0;
    }
    
    .view-more-text {
        font-size: 1.1rem;
    }
    
    .view-more-count {
        font-size: 0.85rem;
    }
    
    .package-thumbnail-item {
        aspect-ratio: 16 / 10;
    }
    
    .package-content-container {
        padding: 2rem 0;
    }
    
    .package-main-content {
        gap: 2rem;
    }
    
    .section-heading {
        font-size: 1.25rem;
    }
    
    .amenities-grid {
        gap: 0.75rem;
    }
    
    .amenity-card {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .amenity-icon-circle {
        width: 32px;
        height: 32px;
    }
    
    .amenity-icon-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .similar-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .gallery-carousel-container {
        width: 95%;
        height: 85vh;
    }
    
    .gallery-carousel-prev,
    .gallery-carousel-next {
        width: 48px;
        height: 48px;
    }
    
    .gallery-carousel-prev {
        left: 10px;
    }
    
    .gallery-carousel-next {
        right: 10px;
    }
    
    .gallery-carousel-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
}

@media (max-width: 768px) {
    .package-view .container,
    .package-header .container,
    .package-image-gallery-container .container,
    .package-content-container .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden;
    }

    .package-header-info {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .package-title {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        overflow-wrap: anywhere;
    }

    .package-rating-badge,
    .package-location,
    .package-tags-row {
        max-width: 100%;
    }

    .package-overview-strip,
    .package-content-grid,
    .package-main-content,
    .package-sidebar,
    .booking-widget,
    .package-section,
    .package-gallery-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .package-gallery-card {
        padding: 0.55rem;
    }

    .package-gallery-count {
        top: 1rem;
        right: 1rem;
        max-width: calc(100% - 2rem);
    }

    .package-main-image-wrapper,
    .package-second-image-wrapper {
        aspect-ratio: 16 / 10;
    }

    .package-thumbnail-grid-section {
        gap: 0.5rem;
    }

    .package-section {
        padding: 1rem;
    }

    .package-description-text,
    .section-heading {
        padding-left: 0;
        padding-right: 0;
    }

    .trip-highlight-card,
    .policy-note-card,
    .location-context-copy,
    .inclusions-column,
    .exclusions-column,
    .booking-summary-list {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .booking-actions {
        width: 100%;
    }

    .btn-booking {
        width: 100%;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
        white-space: normal;
    }

    .location-map-placeholder {
        min-height: 170px;
    }

    .gallery-carousel-container {
        max-width: calc(100vw - 1rem);
    }

    .package-header {
        padding: 1.5rem 0;
    }
    
    .package-title {
        font-size: 1.75rem;
    }
    
    .package-image-gallery-container {
        padding: 1.5rem 0;
    }
    
    .package-image-gallery-wrapper {
        border-radius: 16px;
    }
    
    .package-main-image-wrapper {
        border-radius: 16px;
    }
    
    .package-main-image {
        border-radius: 16px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        padding: 1.5rem;
    }
    
    .gallery-carousel-counter {
        bottom: 20px;
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }
    
}

/* Final listing layout guard */
@media (min-width: 769px) {
    .packages-grid,
    .all-packages-section .packages-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .product-card,
    .all-packages-section .product-card {
        display: grid;
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .banner-text-content {
        max-width: 52%;
        text-align: left;
        align-items: flex-start;
        padding: 4.5rem 2.25rem 5rem;
    }

    .banner-header,
    .banner-subtext {
        text-align: left;
    }

    .banner-book-button {
        left: 2.25rem;
        transform: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: calc(var(--navbar-height) + var(--accreditation-height));
    }

    .site-accreditation {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        z-index: 999;
        margin-top: 0;
        max-width: none;
    }

    .footer-accreditation-wrapper.site-accreditation {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .banner-section {
        padding: 0.75rem;
    }

    .banner-section .container {
        padding: 0;
    }

    .banner-content {
        min-height: 340px !important;
        height: 340px !important;
        overflow: hidden;
    }

    .banner-carousel-item,
    .banner-item-content,
    .banner-item-content::before {
        border-radius: var(--banner-radius);
        overflow: hidden;
    }

    .banner-text-content {
        max-width: 66%;
        width: 66%;
        margin: 0.75rem;
        height: calc(100% - 1.5rem);
        padding: 3.25rem 0.75rem 4.25rem;
        justify-content: flex-start;
        overflow: visible;
        border-radius: var(--banner-radius);
        background: linear-gradient(90deg, color-mix(in srgb, var(--banner-gradient-color, #FF7D00) 78%, transparent), color-mix(in srgb, var(--banner-gradient-color, #FF7D00) 44%, transparent), transparent);
    }

    .banner-carousel-item.banner-gradient-off .banner-text-content {
        background: transparent;
    }

    .banner-header {
        font-size: clamp(1rem, 5.2vw, 1.45rem);
        line-height: 1.28;
        max-width: 100%;
        display: block;
        overflow: visible;
    }

    .banner-subtext {
        font-size: 0.68rem;
        line-height: 1.55;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .banner-location {
        max-width: 100%;
        padding: 0.3rem 0.5rem;
        border-radius: var(--banner-radius);
        font-size: 0.66rem;
    }

    .banner-location-name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .banner-promo-badge {
        top: 0.75rem;
        left: 0.75rem;
        right: auto;
        max-width: calc(100% - 1.5rem);
        padding: 0.35rem 0.65rem;
        border-radius: var(--banner-radius);
        font-size: 0.66rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .banner-book-button {
        left: 0.75rem;
        right: auto;
        bottom: 0.75rem;
        width: fit-content;
        max-width: 66%;
        justify-content: center;
        padding: 0.66rem 0.8rem;
        font-size: 0.72rem;
        animation: none;
    }

    .banner-book-button svg {
        width: 16px;
        height: 16px;
    }

    .packages-grid,
    .all-packages-section .packages-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .product-card,
    .all-packages-section .product-card {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .product-image-wrapper,
    .all-packages-section .product-image-wrapper {
        height: 96px;
        min-height: 96px;
    }

    .product-image-wrapper::after {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.25rem 0.45rem;
        font-size: 0.62rem;
        border-radius: 6px;
        max-width: calc(100% - 1rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-content,
    .all-packages-section .product-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.32rem;
        padding: 0.55rem;
    }

    .product-heading-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.35rem;
    }

    .product-title {
        font-size: 0.72rem;
        line-height: 1.18;
        min-width: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-location {
        font-size: 0.6rem;
        margin: 0;
        gap: 0.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-location::before {
        width: 5px;
        height: 5px;
    }

    .product-description,
    .product-highlights,
    .rating-stars,
    .product-availability {
        display: none;
    }

    .product-rating {
        padding: 0.18rem 0.32rem;
        font-size: 0.62rem;
        border-radius: 6px;
    }

    .rating-value {
        font-size: 0.62rem;
    }

    .product-meta-row {
        gap: 0.25rem;
    }

    .product-meta-pill {
        min-height: 20px;
        padding: 0.18rem 0.34rem;
        font-size: 0.54rem;
        border-radius: 6px;
    }

    .product-meta-pill:nth-child(n+2) {
        display: none;
    }

    .product-side {
        align-items: stretch;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
        padding-left: 0;
        padding-top: 0.55rem;
        border-left: 0;
        border-top: 1px solid #edf2f7;
        gap: 0.5rem;
    }

    .product-title,
    .product-price,
    .product-rating {
        text-align: left;
        justify-content: flex-start;
    }

    .product-price {
        font-size: 0.74rem;
        white-space: nowrap;
        flex-direction: row;
        align-items: baseline;
        gap: 0.2rem;
    }

    .product-price span {
        font-size: 0.52rem;
    }

    .product-cta {
        width: 100%;
        min-height: 28px;
        padding: 0.35rem 0.45rem;
        font-size: 0.6rem;
        white-space: nowrap;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    .packages-grid,
    .all-packages-section .packages-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem !important;
    }

    .product-card,
    .all-packages-section .product-card {
        width: 100%;
        min-width: 0;
    }
}

/* Final mobile refinement: compact listing header and keep accreditation locked to nav */
@media (max-width: 768px) {
    .all-packages-section {
        padding: 2.25rem 0.75rem;
    }

    .all-packages-section .section-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        line-height: 1.12;
        margin-bottom: 0.45rem;
    }

    .all-packages-section .section-subtitle {
        font-size: 0.82rem;
        line-height: 1.45;
        max-width: 30rem;
        margin-bottom: 1rem;
    }

    .all-packages-section .listings-toolbar {
        gap: 0.45rem;
        margin-bottom: 0.85rem;
    }

    .all-packages-section .listings-count,
    .all-packages-section .listings-sort {
        font-size: 0.68rem;
        line-height: 1.2;
    }

    .site-accreditation {
        top: calc(var(--navbar-height) - 1px);
    }

    .footer-accreditation-wrapper.site-accreditation {
        margin-top: 0 !important;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .site-accreditation .accreditation-header {
        font-size: 0.95rem;
        line-height: 1;
        margin: 0;
    }

    .site-accreditation .accreditation-logos {
        gap: 0.45rem;
    }

    .site-accreditation .accreditation-item {
        height: 56px;
    }
}

/* Final listing card layout guard */
@media (min-width: 769px) {
    .packages-grid,
    .all-packages-section .packages-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card,
    .all-packages-section .product-card {
        display: grid;
        grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
        align-items: stretch;
        min-height: 240px;
        width: 100%;
    }

    .product-image-wrapper,
    .all-packages-section .product-image-wrapper {
        height: 100%;
        min-height: 240px;
    }

    .product-content,
    .all-packages-section .product-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(145px, auto);
        align-items: stretch;
    }

    .product-side,
    .all-packages-section .product-side {
        align-items: flex-end;
        border-left: 1px solid #edf2f7;
        border-top: 0;
        padding-left: 1rem;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .packages-grid,
    .all-packages-section .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    .product-card,
    .all-packages-section .product-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-height: 0;
    }

    .product-image-wrapper,
    .all-packages-section .product-image-wrapper {
        height: 210px !important;
        min-height: 210px !important;
    }

    .product-content,
    .all-packages-section .product-content {
        gap: 0.45rem !important;
        padding: 0.7rem !important;
    }

    .product-heading-row,
    .all-packages-section .product-heading-row {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 0.65rem;
    }

    .product-title,
    .all-packages-section .product-title {
        font-size: 0.88rem !important;
        line-height: 1.2 !important;
        -webkit-line-clamp: 2;
    }

    .product-location,
    .all-packages-section .product-location {
        font-size: 0.7rem !important;
    }

    .product-meta-row,
    .all-packages-section .product-meta-row {
        gap: 0.35rem;
    }

    .product-meta-pill,
    .all-packages-section .product-meta-pill {
        min-height: 22px;
        font-size: 0.62rem !important;
        padding: 0.22rem 0.45rem;
    }

    .product-side,
    .all-packages-section .product-side {
        display: flex;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0.75rem !important;
        padding-top: 0.6rem !important;
    }

    .product-price,
    .all-packages-section .product-price {
        font-size: 1.55rem !important;
        line-height: 1.1;
    }

    .product-price span,
    .all-packages-section .product-price span {
        font-size: 0.68rem !important;
    }

    .product-cta,
    .all-packages-section .product-cta {
        width: auto !important;
        min-width: 112px;
        min-height: 34px;
        font-size: 0.7rem !important;
        padding: 0.45rem 0.65rem !important;
    }
}

/* Package detail continuation */
.package-main-content .package-similar {
    display: none;
}

.package-suggested-section {
    padding: 0 0 4.5rem;
    background: #f8fafc;
}

.package-suggested-section .container {
    max-width: 1180px;
}

.package-suggested-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
    gap: 0.75rem 2rem;
    align-items: end;
    margin-bottom: 1.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #dbe7e7;
}

.package-suggested-header .section-eyebrow {
    grid-column: 1 / -1;
    color: #156163;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
}

.package-suggested-header h2 {
    margin: 0;
    color: var(--dark-text);
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    line-height: 1.12;
}

.package-suggested-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.6;
}

.package-suggested-grid {
    align-items: stretch;
}

@media (max-width: 768px) {
    .package-suggested-section {
        padding: 0 0 3rem;
    }

    .package-suggested-header {
        grid-template-columns: 1fr;
        gap: 0.45rem;
        margin-bottom: 1rem;
    }

    .package-suggested-header h2 {
        font-size: 1.45rem;
    }

    .package-suggested-header p {
        font-size: 0.85rem;
    }
}

