/* ==========================================================================
   BESTISURE - TRAVEL BEYOND ORDINARY
   Modern Travel & Adventure Design System
   Matches template: media_1789733525114.png
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bs-primary-teal: #0d9488;
    --bs-primary-teal-hover: #0f766e;
    --bs-primary-teal-light: #ccfbf1;
    --bs-accent-coral: #ff2e63;
    --bs-accent-coral-hover: #e02456;
    --bs-accent-coral-light: #ffe4ec;
    --bs-navy-dark: #0b1c3d;
    --bs-navy-midnight: #071224;
    --bs-gold-warm: #f59e0b;
    --bs-gold-light: #fef3c7;
    --bs-text-main: #1e293b;
    --bs-text-muted: #64748b;
    --bs-bg-light: #f8fafc;
    --bs-border-color: #e2e8f0;
    --bs-shadow-sm: 0 2px 8px rgba(11, 28, 61, 0.06);
    --bs-shadow-md: 0 8px 24px rgba(11, 28, 61, 0.08);
    --bs-shadow-lg: 0 16px 36px rgba(11, 28, 61, 0.12);
    --bs-shadow-xl: 0 24px 48px rgba(11, 28, 61, 0.16);
    --bs-radius-sm: 8px;
    --bs-radius-md: 14px;
    --bs-radius-lg: 20px;
    --bs-radius-xl: 28px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--bs-text-main);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--bs-navy-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

/* ==========================================================================
   1. NAVIGATION & HEADER
   ========================================================================== */

.best-header {
    background: #ffffff;
    border-bottom: 1px solid var(--bs-border-color);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 12px rgba(11, 28, 61, 0.04);
    transition: all 0.3s ease;
}

.best-header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.best-logo {
    display: flex;
    align-items: center;
}

.best-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.best-nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.best-nav-menu > li > a {
    font-size: 15px;
    font-weight: 600;
    color: var(--bs-navy-dark);
    position: relative;
    padding: 8px 2px;
}

.best-nav-menu > li > a:hover,
.best-nav-menu > li > a.active {
    color: var(--bs-primary-teal);
}

.best-nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bs-primary-teal);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.best-nav-menu > li > a:hover::after,
.best-nav-menu > li > a.active::after {
    width: 100%;
}

.best-nav-badge {
    font-size: 10px;
    font-weight: 700;
    background: var(--bs-accent-coral);
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 4px;
    vertical-align: middle;
}

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

.best-hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 30px;
    background: var(--bs-bg-light);
    border: 1px solid var(--bs-border-color);
}

.best-hotline-icon {
    width: 32px;
    height: 32px;
    background: var(--bs-primary-teal-light);
    color: var(--bs-primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.best-hotline-text {
    line-height: 1.2;
}

.best-hotline-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bs-text-muted);
}

.best-hotline-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--bs-navy-dark);
}

.btn-best-primary {
    background: linear-gradient(135deg, var(--bs-primary-teal), #14b8a6);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
    transition: all 0.25s ease;
}

.btn-best-primary:hover {
    background: linear-gradient(135deg, var(--bs-primary-teal-hover), var(--bs-primary-teal));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.35);
}

.btn-best-coral {
    background: linear-gradient(135deg, var(--bs-accent-coral), #ff4b7d);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(255, 46, 99, 0.25);
    transition: all 0.25s ease;
}

.btn-best-coral:hover {
    background: linear-gradient(135deg, var(--bs-accent-coral-hover), var(--bs-accent-coral));
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 46, 99, 0.35);
}

.btn-best-portal {
    background: var(--bs-navy-dark);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-best-portal:hover {
    background: var(--bs-navy-midnight);
    color: #ffffff;
    transform: translateY(-2px);
}

.best-mobile-btn {
    display: none;
    background: none;
    border: 1px solid var(--bs-border-color);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--bs-navy-dark);
    font-size: 18px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile Drawer */
.best-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 28, 61, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.best-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.best-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.best-mobile-drawer.active {
    right: 0;
}

.best-mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bs-border-color);
    margin-bottom: 20px;
}

.best-mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.best-mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--bs-navy-dark);
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.best-mobile-nav-links a:hover {
    color: var(--bs-primary-teal);
}

/* ==========================================================================
   2. HERO ADVENTURE BANNER
   ========================================================================== */

.best-hero-wrap {
    padding: 0;
    width: 100%;
}

.best-hero-card {
    position: relative;
    border-radius: 0;
    background-image: url('../img/hero_mountain_adventure.jpg');
    background-size: cover;
    background-position: center center;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
}

.best-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 28, 61, 0.45) 0%,
        rgba(11, 28, 61, 0.75) 60%,
        rgba(7, 18, 36, 0.92) 100%
    );
    z-index: 1;
}

.best-hero-inner {
    position: relative;
    z-index: 2;
    padding: 95px 0 80px 0;
    max-width: 1100px;
}

.best-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.best-hero-pill i {
    color: var(--bs-gold-warm);
}

.best-hero-title {
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.best-hero-title .highlight {
    background: linear-gradient(135deg, #14b8a6, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.best-hero-desc {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
    margin-bottom: 36px;
    line-height: 1.6;
}

/* Floating Search Box */
.best-search-floating {
    background: #ffffff;
    border-radius: var(--bs-radius-lg);
    box-shadow: 0 20px 40px rgba(7, 18, 36, 0.3);
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 1.4fr 1.15fr 1.15fr auto;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 1050px;
    width: 100%;
}

.best-search-field {
    display: flex;
    flex-direction: column;
    padding: 6px 12px;
    border-right: 1px solid var(--bs-border-color);
}

.best-search-field:last-of-type {
    border-right: none;
}

.best-search-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--bs-text-muted);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.best-search-label i {
    color: var(--bs-primary-teal);
    font-size: 12px;
}

.best-search-input {
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--bs-navy-dark);
    background: transparent;
    padding: 0;
    width: 100%;
}

.best-search-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.best-hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
}

.best-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.best-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gold-warm);
    font-size: 16px;
}

.best-stat-num {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.best-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   3. VALUE PROPOSITION CARDS (Travel Beyond the Destination)
   ========================================================================== */

.best-section-pad {
    padding: 70px 0;
}

.best-section-pad-sm {
    padding: 40px 0;
}

.best-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
}

.best-section-header.text-start {
    margin: 0 0 36px 0;
}

.best-category-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--bs-primary-teal);
    background: var(--bs-primary-teal-light);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.best-category-tag.coral {
    color: var(--bs-accent-coral);
    background: var(--bs-accent-coral-light);
}

.best-section-title {
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.best-section-subtitle {
    font-size: 16px;
    color: var(--bs-text-muted);
    line-height: 1.6;
}

.best-value-card {
    background: #ffffff;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-radius-lg);
    padding: 36px 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--bs-shadow-sm);
}

.best-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bs-shadow-xl);
    border-color: var(--bs-primary-teal-light);
}

.best-value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--bs-radius-md);
    background: var(--bs-primary-teal-light);
    color: var(--bs-primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.best-value-card.coral .best-value-icon {
    background: var(--bs-accent-coral-light);
    color: var(--bs-accent-coral);
}

.best-value-card.gold .best-value-icon {
    background: var(--bs-gold-light);
    color: var(--bs-gold-warm);
}

.best-value-card:hover .best-value-icon {
    transform: scale(1.08) rotate(3deg);
}

.best-value-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.best-value-text {
    font-size: 15px;
    color: var(--bs-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   4. ADVENTURE CATEGORIES (6 CARDS)
   ========================================================================== */

.best-cat-card {
    position: relative;
    border-radius: var(--bs-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: var(--bs-shadow-md);
    transition: all 0.35s ease;
    display: block;
}

.best-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.best-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 28, 61, 0.1) 0%,
        rgba(11, 28, 61, 0.4) 50%,
        rgba(7, 18, 36, 0.92) 100%
    );
    z-index: 1;
    transition: background 0.3s ease;
}

.best-cat-card:hover .best-cat-img {
    transform: scale(1.08);
}

.best-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bs-shadow-xl);
}

.best-cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    color: #ffffff;
}

.best-cat-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.best-cat-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.best-cat-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.best-cat-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.9;
    transition: gap 0.25s ease;
}

.best-cat-card:hover .best-cat-arrow {
    gap: 10px;
    color: #38bdf8;
}

/* ==========================================================================
   5. FEATURED TRIP PACKAGES (Your Next Adventure Starts Here)
   ========================================================================== */

.best-trip-card {
    background: #ffffff;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-radius-lg);
    overflow: hidden;
    box-shadow: var(--bs-shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.best-trip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bs-shadow-xl);
    border-color: var(--bs-primary-teal-light);
}

.best-trip-thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.best-trip-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.best-trip-card:hover .best-trip-thumb {
    transform: scale(1.06);
}

.best-trip-chip-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 28, 61, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.best-trip-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: var(--bs-navy-dark);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.best-trip-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.best-trip-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.best-trip-dates {
    font-size: 12px;
    font-weight: 700;
    color: var(--bs-primary-teal);
    display: flex;
    align-items: center;
    gap: 5px;
}

.best-trip-rating {
    font-size: 12px;
    font-weight: 700;
    color: var(--bs-gold-warm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.best-trip-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--bs-navy-dark);
    line-height: 1.3;
}

.best-trip-highlights {
    font-size: 13px;
    color: var(--bs-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.best-trip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--bs-border-color);
}

.best-trip-price-wrap {
    line-height: 1.2;
}

.best-trip-price-from {
    font-size: 11px;
    color: var(--bs-text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.best-trip-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--bs-navy-dark);
}

.best-trip-price-person {
    font-size: 12px;
    font-weight: 500;
    color: var(--bs-text-muted);
}

/* ==========================================================================
   6. POPULAR DESTINATIONS (8 Cards)
   ========================================================================== */

.best-dest-card {
    background: #ffffff;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.25s ease;
    box-shadow: var(--bs-shadow-sm);
}

.best-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bs-shadow-md);
    border-color: var(--bs-primary-teal);
}

.best-dest-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.best-dest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-dest-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-navy-dark);
    margin-bottom: 2px;
}

.best-dest-count {
    font-size: 12px;
    color: var(--bs-primary-teal);
    font-weight: 600;
}

/* ==========================================================================
   7. WHY TRAVEL WITH BESTISURE (Friends Photo + 6 Features)
   ========================================================================== */

.best-why-section {
    background: #f8fafc;
}

.best-why-photo-wrap {
    position: relative;
    border-radius: var(--bs-radius-xl);
    overflow: hidden;
    box-shadow: var(--bs-shadow-lg);
    aspect-ratio: 16 / 11;
}

.best-why-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-why-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(11, 28, 61, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--bs-radius-md);
    padding: 18px 22px;
    color: #ffffff;
}

.best-why-quote {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #ffffff;
}

.best-why-stat {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.best-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.best-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--bs-radius-sm);
    background: #ffffff;
    border: 1px solid var(--bs-border-color);
    color: var(--bs-primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: var(--bs-shadow-sm);
}

.best-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-navy-dark);
    margin-bottom: 4px;
}

.best-feature-desc {
    font-size: 14px;
    color: var(--bs-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   8. TESTIMONIALS SECTION
   ========================================================================== */

.best-testimonial-card {
    background: #ffffff;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-radius-lg);
    padding: 32px 28px;
    box-shadow: var(--bs-shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.best-test-stars {
    color: var(--bs-gold-warm);
    font-size: 14px;
    margin-bottom: 16px;
}

.best-test-quote {
    font-size: 15px;
    color: var(--bs-text-main);
    line-height: 1.6;
    margin-bottom: 22px;
    font-style: italic;
}

.best-test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.best-test-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--bs-primary-teal-light);
    color: var(--bs-primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.best-test-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--bs-navy-dark);
    margin-bottom: 2px;
}

.best-test-trip {
    font-size: 12px;
    color: var(--bs-text-muted);
}

/* ==========================================================================
   9. NEWSLETTER / CTA BANNER
   ========================================================================== */

.best-cta-banner {
    background: linear-gradient(135deg, var(--bs-navy-dark) 0%, #0d9488 100%);
    border-radius: var(--bs-radius-xl);
    padding: 60px 48px;
    color: #ffffff;
    box-shadow: var(--bs-shadow-lg);
    position: relative;
    overflow: hidden;
}

.best-cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.best-cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 28px;
}

.best-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.best-newsletter-input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 30px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-navy-dark);
    outline: none;
}

.best-newsletter-input::placeholder {
    color: #94a3b8;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.best-footer {
    background: #ffffff;
    border-top: 1px solid var(--bs-border-color);
    padding: 70px 0 30px 0;
}

.best-footer-logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
}

.best-footer-desc {
    font-size: 14px;
    color: var(--bs-text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 320px;
}

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

.best-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bs-bg-light);
    border: 1px solid var(--bs-border-color);
    color: var(--bs-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.25s ease;
}

.best-social-link:hover {
    background: var(--bs-primary-teal);
    color: #ffffff;
    border-color: var(--bs-primary-teal);
    transform: translateY(-3px);
}

.best-footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-navy-dark);
    margin-bottom: 20px;
}

.best-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.best-footer-links a {
    font-size: 14px;
    color: var(--bs-text-muted);
    font-weight: 500;
}

.best-footer-links a:hover {
    color: var(--bs-primary-teal);
    padding-left: 4px;
}

.best-footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--bs-border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--bs-text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .best-nav-menu,
    .best-hotline {
        display: none;
    }
    .best-mobile-btn {
        display: flex;
    }
    .best-search-floating {
        grid-template-columns: 1fr;
    }
    .best-search-field {
        border-right: none;
        border-bottom: 1px solid var(--bs-border-color);
        padding-bottom: 10px;
    }
    .best-search-field:last-of-type {
        border-bottom: none;
    }
    .best-hero-inner {
        padding: 48px 0;
    }
}

@media (max-width: 576px) {
    .best-newsletter-form {
        flex-direction: column;
    }
    .best-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ==========================================================================
   10. INNER PAGES COMMON HEADER & BANNER SYSTEM
   ========================================================================== */
.best-page-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(11, 28, 61, 0.92) 0%, rgba(13, 148, 136, 0.88) 100%), url('../img/hero_mountain_adventure.jpg') center/cover no-repeat;
    padding: 70px 0 65px;
    color: #ffffff;
    overflow: hidden;
}

.best-page-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 26px;
    background: #ffffff;
    border-radius: 28px 28px 0 0;
    z-index: 2;
}

.best-page-banner-inner {
    position: relative;
    z-index: 3;
    max-width: 760px;
}

.best-page-banner-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.best-page-banner-title {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.best-page-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 18px;
}

.best-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
}

.best-breadcrumb a {
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.best-breadcrumb a:hover {
    color: var(--bs-gold-warm);
}

.best-breadcrumb .sep {
    font-size: 10px;
    opacity: 0.6;
}

.best-breadcrumb .active-item {
    color: var(--bs-gold-warm);
    font-weight: 600;
}

/* About Page Custom Component Styles */
.best-about-story-card {
    background: #ffffff;
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-radius-lg);
    padding: 40px;
    box-shadow: var(--bs-shadow-md);
    position: relative;
    overflow: hidden;
}

.best-about-stat-box {
    background: var(--bs-bg-light);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-radius-md);
    padding: 22px 18px;
    text-align: center;
    transition: all 0.25s ease;
}

.best-about-stat-box:hover {
    transform: translateY(-4px);
    border-color: var(--bs-primary-teal);
    background: #ffffff;
    box-shadow: var(--bs-shadow-md);
}

.best-about-stat-num {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 4px;
}

.best-about-stat-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--bs-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.best-about-value-card {
    background: #ffffff;
    border: 1.5px solid var(--bs-border-color);
    border-radius: var(--bs-radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.best-about-value-card:hover {
    transform: translateY(-6px);
    border-color: var(--bs-primary-teal);
    box-shadow: var(--bs-shadow-lg);
}

.best-about-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.best-about-quote-box {
    background: linear-gradient(135deg, #0b1c3d 0%, #0f3554 100%);
    border-radius: var(--bs-radius-lg);
    padding: 50px 40px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.best-about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.best-about-feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

