/* ============================================================
   Sea to Summit Trekking — main stylesheet
   ============================================================ */

:root {
    --navy: #0b1526;
    --navy-2: #101d33;
    --navy-3: #16233b;
    --blue: #2f9ee8;
    --blue-dark: #1e6fb3;
    --red: #e04b4b;
    --text-light: #eef2f7;
    --text-muted: #9fb0c3;
    --border: rgba(255,255,255,0.08);
    --radius: 6px;
}

* { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--navy);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }


/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s ease;
}
.btn-primary { background: var(--blue); color: #061420; }
.btn-primary:hover { background: #4bb1f2; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text-light); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-dark { background: var(--navy-3); color: var(--text-light); border-color: var(--border); }
.btn-dark:hover { border-color: var(--blue); }
.btn-block { width: 100%; justify-content: center; }

/* ---------------- Header ---------------- */
.site-header {
    background: rgba(11, 21, 38, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease;
}
.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 36px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo:hover .logo-mark {
    transform: scale(1.04);
}
.logo-mark {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-title {
    font-weight: 800;
    font-size: 14.5px;
    letter-spacing: 0.6px;
    color: #ffffff;
}
.logo-sub {
    font-size: 11px;
    color: #38bdf8;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 1;
}
.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #94a3b8;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    text-decoration: none;
}
.main-nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}
.main-nav a.active {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    font-weight: 700;
}
.main-nav .mobile-nav-only {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Dedicated Header Action Buttons */
.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 40px;
    padding: 0 16px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    line-height: 1;
    user-select: none;
}
.header-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Admin Dashboard Button */
.header-btn-admin {
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
}
.header-btn-admin:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.25);
    transform: translateY(-1px);
}

/* Logout Button */
.header-btn-logout {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.32);
    color: #f87171;
}
.header-btn-logout:hover {
    background: rgba(239, 68, 68, 0.22);
    border-color: #ef4444;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25);
    transform: translateY(-1px);
}

/* Customer Account & Login Buttons */
.header-btn-account,
.header-btn-login {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f1f5f9;
}
.header-btn-account:hover,
.header-btn-login:hover {
    background: rgba(56, 189, 248, 0.12);
    border-color: #38bdf8;
    color: #38bdf8;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Book Now CTA Button */
.header-btn-book {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #ffffff !important;
    font-weight: 800;
    padding: 0 20px;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.header-btn-book:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
    transform: translateY(-1px);
}
.header-btn-book:hover svg {
    transform: translateX(3px);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}
.hamburger:hover, .hamburger:focus-visible {
    background: rgba(56, 189, 248, 0.12);
    border-color: #38bdf8;
}
.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* ---------------- Hero ---------------- */
.hero {
    position: relative;
    min-height: 640px;
    background-size: cover;
    background-position: center 20%;
    display: flex;
    align-items: flex-end;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(11,21,38,0.97) 10%, rgba(11,21,38,0.45) 55%, rgba(11,21,38,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 60px 40px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
    display: flex; align-items: center; gap: 10px;
    color: var(--blue); font-size: 13px; letter-spacing: 2px; font-weight: 700;
    margin-bottom: 18px;
}
.hero-eyebrow .line { width: 30px; height: 2px; background: var(--blue); }
.hero h1 { font-size: clamp(34px, 5.5vw, 64px); line-height: 1.08; margin-bottom: 6px; }
.hero h1 .accent { color: var(--blue); }
.hero-desc { max-width: 560px; color: var(--text-muted); font-size: 16px; margin: 22px 0 30px; text-transform: none; font-weight: 400; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------- Stats bar ---------------- */
.stats-bar {
    background: var(--navy-2);
    border-bottom: 1px solid var(--border);
    padding: 50px 40px;
}
.stats-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-num { font-size: 40px; font-weight: 800; color: var(--blue); }
.stat-label { font-size: 12px; letter-spacing: 1px; color: var(--text-muted); margin-top: 6px; }

/* ---------------- Sections ---------------- */
.section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.section-eyebrow { color: var(--blue); font-size: 12px; letter-spacing: 2px; font-weight: 700; margin-bottom: 10px; }
.section h2 { font-size: clamp(24px, 3.8vw, 38px); margin-bottom: 30px; }
.section h2 .accent { color: var(--blue); }

/* Featured trek cards grid on homepage */
.trek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 30px;
}
@media (max-width: 992px) {
    .trek-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .trek-grid {
        grid-template-columns: 1fr;
    }
}
.trek-card {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform .15s ease, border-color .15s ease;
}
.trek-card:hover { transform: translateY(-4px); border-color: var(--blue); }
.trek-card-img { position: relative; height: 200px; overflow: hidden; }
.trek-card-img img { width: 100%; height: 100%; object-fit: cover; }
.trek-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--blue); color: #061420;
    font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
    padding: 6px 12px; border-radius: 4px;
}
.trek-difficulty {
    position: absolute; top: 14px; right: 14px;
    font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 4px;
    background: rgba(11,21,38,0.85);
}
.trek-difficulty.Easy { color: #58d68d; }
.trek-difficulty.Moderate { color: #f4c542; }
.trek-difficulty.Challenging { color: var(--red); }
.trek-difficulty.Extreme { color: #ff5d5d; }

.trek-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.trek-region { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; min-height: 18px; }
.trek-card-body h3 {
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 10px;
    min-height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trek-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 14px; flex-wrap: wrap; min-height: 24px; }
.trek-meta span { display: flex; align-items: center; gap: 5px; }
.trek-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.trek-price .from { font-size: 11px; color: var(--text-muted); display: block; }
.trek-price .amount { font-size: 20px; font-weight: 800; color: var(--blue); }

/* ---------------- Why us / feature list ---------------- */
.why-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-section.reverse { direction: rtl; }
.why-section.reverse > * { direction: ltr; }
.why-img { border-radius: 10px; overflow: hidden; height: 480px; }
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { margin-top: 26px; display: flex; flex-direction: column; gap: 24px; }
.feature-item { border-left: 3px solid var(--blue); padding-left: 18px; }
.feature-item h4 { font-size: 15px; margin-bottom: 6px; color: var(--text-light); }
.feature-item p { color: var(--text-muted); font-size: 14px; margin: 0; text-transform: none; }

/* On light background variant (for "BUILT FOR THE SERIOUS TREKKER" section) */
.section-light { background: #eef2f6; color: #101d33; }
.section-light .section-eyebrow { color: var(--blue-dark); }
.section-light h2 { color: #101d33; }
.section-light .feature-item h4 { color: #101d33; }
.section-light .feature-item p { color: #56637a; }

/* ---------------- CTA banner ---------------- */
.cta-banner {
    background: var(--navy-3);
    padding: 80px 40px;
}
.cta-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.cta-inner h2 { font-size: clamp(26px, 4vw, 42px); }
.cta-actions { display: flex; gap: 14px; }

/* ---------------- Footer ---------------- */
.site-footer { 
    background: #060d18; 
    border-top: 1px solid var(--border); 
    padding: 30px 40px; 
}

/* Newsletter in Footer */
.footer-newsletter-wrap {
    max-width: 1200px;
    margin: 0 auto 32px auto;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, rgba(14, 27, 46, 0.85) 0%, rgba(10, 22, 40, 0.98) 100%);
    border: 1px solid rgba(47, 158, 232, 0.28);
    border-radius: 14px;
    padding: 28px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.footer-nl-text {
    flex: 1 1 340px;
}
.footer-nl-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #f59e0b;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.footer-nl-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}
.footer-nl-desc {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}
.footer-nl-form-box {
    flex: 1 1 340px;
}
.footer-nl-inputs {
    display: flex;
    gap: 8px;
}
.footer-nl-input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    background: #09121d;
    border: 1px solid #1e2e47;
    border-radius: 8px;
    color: #ffffff;
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.footer-nl-input:focus {
    border-color: #2f9ee8;
    box-shadow: 0 0 0 3px rgba(47, 158, 232, 0.2);
}
.footer-nl-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 22px;
    background: #2f9ee8;
    color: #ffffff;
    font-weight: 700;
    font-size: 13.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.1s;
}
.footer-nl-submit:hover {
    background: #1b8cd7;
    transform: translateY(-1px);
}
.footer-nl-guarantee {
    margin-top: 8px;
    font-size: 11.5px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}
.footer-nl-msg {
    margin-top: 10px;
    font-size: 12.5px;
    padding: 8px 12px;
    border-radius: 6px;
    line-height: 1.4;
}
.footer-nl-msg.success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.footer-nl-msg.info {
    background: rgba(47, 158, 232, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(47, 158, 232, 0.3);
}
.footer-nl-msg.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
@media (max-width: 640px) {
    .footer-nl-inputs {
        flex-direction: column;
    }
    .footer-nl-submit {
        width: 100%;
    }
    .footer-newsletter-inner {
        padding: 20px 18px;
    }
}

.footer-inner { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: wrap; 
    gap: 16px; 
}

.footer-brand { 
    font-weight: 800; 
    font-size: 15px; 
}

.footer-brand span { 
    color: var(--blue); 
}

.footer-copy { 
    color: var(--text-muted); 
    font-size: 12px; 
}

.footer-links { 
    display: flex; 
    gap: 20px; 
    font-size: 12px; 
    color: var(--text-muted); 
}

.footer-links a:hover { 
    color: var(--blue); 
}

/* Contact & Social Section */
.footer-contact-social {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: var(--blue);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}
/* ---------------- WhatsApp float ---------------- */
.whatsapp-float {
    position: fixed; bottom: 26px; right: 26px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    z-index: 9995;
}
.wa-badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ---------------- Treks listing page ---------------- */
.page-header { padding: 40px 40px 20px; max-width: 1200px; margin: 0 auto; }
.breadcrumb { color: var(--blue); font-size: 13px; font-weight: 600; margin-bottom: 14px; display: inline-block; }
.page-header h1 { font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 8px; }
.page-header .accent { color: var(--blue); }
.page-header p { color: var(--text-muted); text-transform: none; }

.filters-bar {
    max-width: 1200px; margin: 0 auto; padding: 0 40px 30px;
    display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.search-box {
    flex: 1; min-width: 220px;
    background: var(--navy-2); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 12px 16px; display: flex; align-items: center; gap: 10px;
}
.search-box input { background: none; border: none; outline: none; color: var(--text-light); font-size: 14px; width: 100%; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
    background: var(--navy-2); border: 1px solid var(--border); color: var(--text-muted);
    padding: 10px 18px; border-radius: var(--radius); font-size: 12px; font-weight: 700;
    letter-spacing: 0.5px; cursor: pointer;
}
.filter-pill.active, .filter-pill:hover { background: var(--blue); color: #061420; border-color: var(--blue); }

.treks-listing-grid {
    max-width: 1200px; margin: 0 auto; padding: 10px 40px 80px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
@media (max-width: 992px) {
    .treks-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .treks-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------- Trek detail page ---------------- */
.detail-wrap { max-width: 1280px; margin: 0 auto; padding: 24px 36px 80px; }

/* Breadcrumb */
.detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted, #94a3b8);
    margin-bottom: 18px;
}
.detail-breadcrumb a {
    color: var(--text-muted, #94a3b8);
    text-decoration: none;
    transition: color 0.2s ease;
}
.detail-breadcrumb a:hover {
    color: var(--blue, #2f9ee8);
}
.detail-breadcrumb .bc-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 14px;
}
.detail-breadcrumb .bc-current {
    color: #f1f5f9;
    font-weight: 500;
    max-width: 500px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Gallery - Modern Uniform Grid */
.detail-gallery {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.detail-gallery-single {
    grid-template-columns: 1fr;
}
.detail-gallery-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    background: #091322;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.detail-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.detail-gallery-main:hover img {
    transform: scale(1.02);
}
.detail-gallery-main .gallery-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 28, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}
.detail-gallery-side {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto-fit, minmax(0, 1fr));
    gap: 12px;
    height: 480px;
}
.detail-gallery-side div {
    border-radius: 10px;
    overflow: hidden;
    background: #091322;
    position: relative;
}
.detail-gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.detail-gallery-side div:hover img {
    transform: scale(1.04);
}

@media (max-width: 860px) {
    .detail-gallery {
        grid-template-columns: 1fr;
    }
    .detail-gallery-main {
        height: 340px;
    }
    .detail-gallery-side {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
        height: 110px;
    }
}
@media (max-width: 520px) {
    .detail-gallery-main {
        height: 240px;
    }
    .detail-gallery-side {
        grid-template-columns: repeat(2, 1fr);
        height: 85px;
    }
    .detail-gallery-side div:last-child {
        display: none;
    }
}

/* Header & Title Block */
.detail-header-block {
    margin-bottom: 26px;
}
.detail-region-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.detail-title-row h1 {
    font-size: clamp(26px, 3.8vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 280px;
}
.detail-badges {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(245, 158, 11, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}
.diff-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.diff-tag.Easy { color: #4ade80; background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.35); }
.diff-tag.Moderate { color: #fbbf24; background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.35); }
.diff-tag.Challenging { color: #f87171; background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.35); }
.diff-tag.Extreme { color: #f87171; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4); }

.detail-columns {
    display: grid;
    grid-template-columns: 1.32fr 1.08fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 1040px) {
    .detail-columns {
        grid-template-columns: 1.2fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 960px) {
    .detail-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Quickfacts Grid */
.quickfacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
.qf-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #132238 0%, #0c1726 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.qf-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
    transform: translateY(-2px);
}
.qf-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.qf-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.qf-text .qf-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.qf-text .qf-value {
    font-size: 15.5px;
    font-weight: 700;
    color: #f8fafc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .quickfacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .detail-wrap {
        padding: 16px 18px 60px;
    }
    .quickfacts-grid {
        grid-template-columns: 1fr;
    }
}

/* Tabs */
.tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 26px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}
.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #94a3b8;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid transparent;
}
.tab-btn:hover {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.05);
}
.tab-btn.active {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    box-shadow: 0 2px 8px rgba(56, 189, 248, 0.15);
}
.tab-btn .tab-badge-pill {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    font-size: 11px;
    font-weight: 800;
    padding: 1px 7px;
    border-radius: 10px;
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--text-muted); text-transform: none; margin-bottom: 24px; }

/* Overview Tab */
.overview-description {
    font-size: 15px;
    line-height: 1.75;
    color: #cbd5e1;
    margin-bottom: 26px;
}
.overview-description p {
    margin-bottom: 16px;
    color: #cbd5e1;
}
.overview-highlights-box {
    background: linear-gradient(180deg, #132238 0%, #0e1929 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 28px;
}
.overview-highlights-title {
    font-size: 15px;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.overview-highlights-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.overview-highlights-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #e2e8f0;
}
.overview-highlights-box li::before {
    content: '★';
    color: #f59e0b;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Itinerary Controls & Accordion */
.itinerary-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding: 10px 16px;
    background: rgba(15, 28, 46, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.itinerary-toolbar-meta {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}
.itinerary-actions-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-itin-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-itin-toggle:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    color: #38bdf8;
}

.itinerary-accordion { display: flex; flex-direction: column; gap: 10px; }
.itinerary-day-card {
    background: #0d1726;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.itinerary-day-card:hover {
    border-color: rgba(56, 189, 248, 0.3);
}
.itinerary-day-card.open {
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.itinerary-day-header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    background: rgba(19, 34, 56, 0.4);
    transition: background 0.2s ease;
}
.itinerary-day-card:hover .itinerary-day-header {
    background: rgba(19, 34, 56, 0.7);
}
.itinerary-day-card.open .itinerary-day-header {
    background: rgba(19, 34, 56, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.itinerary-header-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.itinerary-accordion .day-label {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    font-size: 11.5px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.itinerary-accordion .day-title {
    font-size: 14px;
    font-weight: 700;
    color: #f8fafc;
}
.itinerary-accordion .day-short {
    font-size: 13px;
    color: #94a3b8;
}
.day-elev-tag {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    flex-shrink: 0;
}
.day-toggle-icon {
    width: 22px;
    height: 22px;
    color: #94a3b8;
    transition: transform 0.25s ease, color 0.2s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.itinerary-day-card.open .day-toggle-icon {
    transform: rotate(180deg);
    color: #38bdf8;
}
.itinerary-day-card .day-detail {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
    background: #091322;
    display: none;
}
.itinerary-day-card.open .day-detail {
    display: block;
}

/* Includes Grid */
.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (max-width: 680px) {
    .includes-grid {
        grid-template-columns: 1fr;
    }
}
.include-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #0d1726;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    color: #e2e8f0;
}
.include-card .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Booking / customise panel */
.booking-panel {
    background: linear-gradient(180deg, #112035 0%, #0a1424 100%);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 16px;
    padding: 26px 24px;
    position: sticky;
    top: 90px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.booking-panel .panel-eyebrow {
    color: #38bdf8;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.booking-panel .panel-original-total {
    color: #e57373;
    font-size: 14px;
    text-decoration: line-through;
    margin-bottom: 4px;
}
.booking-panel .panel-total {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}
.booking-panel .panel-total-label {
    color: var(--text-muted, #94a3b8);
    font-size: 12px;
    margin-bottom: 18px;
    text-transform: none;
}
.booking-panel .panel-discount {
    min-height: 18px;
    color: #38bdf8;
    font-size: 12px;
    margin-top: -14px;
    margin-bottom: 16px;
    text-align: center;
}
.booking-panel .group-discount-summary {
    color: var(--text-muted, #94a3b8);
    font-size: 12px;
    line-height: 1.5;
    margin: -8px 0 16px;
    text-align: center;
}

/* ---------------- Booking confirmation receipt ---------------- */
.confirmation-wrap { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.confirmation-actions { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 18px; }
.confirmation-sheet { background: #fff; color: #18212b; border-top: 5px solid var(--blue); padding: 42px 48px; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.confirmation-kicker { color: #1673a8; font-size: 12px; font-weight: 800; letter-spacing: 2px; }
.confirmation-sheet h1 { color: #18212b; font-size: 34px; margin: 8px 0 12px; }
.confirmation-lead { color: #56616d; font-size: 15px; line-height: 1.6; text-transform: none; }
.confirmation-code { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: #eef7fb; color: #1673a8; padding: 14px 16px; margin: 28px 0; font-size: 12px; font-weight: 800; letter-spacing: 1px; }
.confirmation-code strong { font-size: 20px; letter-spacing: 2px; }
.confirmation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-bottom: 1px solid #d9e0e5; padding-bottom: 28px; }
.confirmation-grid span { display: block; color: #78838d; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.confirmation-grid strong { display: block; color: #18212b; font-size: 14px; }
.confirmation-sheet h2 { color: #1673a8; font-size: 14px; letter-spacing: 1px; margin: 30px 0 12px; }
.confirmation-table-wrap { display: flex; justify-content: center; overflow-x: auto; }
.confirmation-table { width: min(100%, 760px); min-width: 560px; border: 1px solid #b9c6cf; border-collapse: collapse; font-size: 14px; }
.confirmation-table th { background: #eef7fb; border: 1px solid #b9c6cf; color: #1673a8; font-size: 11px; letter-spacing: 1px; padding: 12px 16px; text-align: center; text-transform: uppercase; }
.confirmation-table th:nth-child(2), .confirmation-table td:nth-child(2), .confirmation-table th:last-child, .confirmation-table td:last-child { text-align: center; }
.confirmation-table td { border: 1px solid #d1dbe1; padding: 14px 16px; color: #46515c; text-align: center; vertical-align: middle; }
.confirmation-table td:first-child { width: 50%; }
.confirmation-table td small { display: block; color: #7b858e; font-size: 12px; margin-top: 3px; }
.confirmation-table td:last-child { color: #18212b; white-space: nowrap; }
.confirmation-table tbody tr:nth-child(even) { background: #fafcfd; }
.confirmation-table tbody tr:last-child td { border-bottom: 0; }
.confirmation-table .confirmation-subtotal td { font-weight: 700; padding-top: 18px; }
.confirmation-table .confirmation-discount td { color: #b33a3a; }
.confirmation-table .confirmation-grand-total td { border-bottom: 0; color: #1673a8; font-size: 20px; font-weight: 800; padding-top: 18px; }
.confirmation-words, .confirmation-note { color: #56616d; font-size: 13px; line-height: 1.6; text-transform: none; }
.confirmation-words { border-top: 1px solid #d9e0e5; margin-top: 18px; padding-top: 18px; }
.confirmation-note { background: #f4f6f7; padding: 14px 16px; margin-top: 24px; }

@media print {
    .no-print, .site-header, .site-footer, .floating-wa { display: none !important; }
    body { background: #fff; }
    .confirmation-wrap { max-width: none; padding: 0; }
    .confirmation-sheet { box-shadow: none; border-top: 0; padding: 20px 0; }
}

@media (max-width: 640px) {
    .confirmation-wrap { padding: 24px 12px 50px; }
    .confirmation-sheet { padding: 28px 18px; }
    .confirmation-sheet h1 { font-size: 28px; }
    .confirmation-actions { justify-content: stretch; flex-direction: column; }
    .confirmation-actions .btn { text-align: center; }
    .confirmation-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
    .confirmation-code { align-items: flex-start; flex-direction: column; gap: 8px; }
}

.panel-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

.option-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 25, 43, 0.6);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.2s ease;
}
.option-card:hover { border-color: rgba(56, 189, 248, 0.5); }
.option-card.selected { border-color: #38bdf8; background: rgba(56, 189, 248, 0.1); }
.option-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.25); margin-top: 3px; flex-shrink: 0; position: relative; }
.option-card.selected .option-radio { border-color: #38bdf8; }
.option-card.selected .option-radio::after { content: ''; position: absolute; inset: 2px; border-radius: 50%; background: #38bdf8; }
.option-info { flex: 1; }
.option-title-row { display: flex; justify-content: space-between; gap: 10px; }
.option-title-row b { font-size: 14px; color: #f8fafc; }
.option-title-row .price-tag { font-size: 12px; font-weight: 700; color: #38bdf8; }
.option-title-row .price-tag.included { color: #4ade80; }
.option-desc { color: var(--text-muted, #94a3b8); font-size: 12.5px; margin-top: 4px; text-transform: none; }

.group-size-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.group-size-btn {
    width: 44px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 28, 46, 0.6);
    color: #e2e8f0;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.group-size-btn:hover {
    border-color: #38bdf8;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}
.group-size-btn.selected {
    border-color: #38bdf8;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3) 0%, rgba(14, 25, 43, 0.9) 100%);
    box-shadow: 0 2px 8px rgba(56, 189, 248, 0.25);
}

.form-field { margin-bottom: 14px; }
.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #091322;
    color: #f8fafc;
    font-size: 13.5px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

/* ---------------- Login page ---------------- */
.login-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.login-card {
    background: var(--navy-2); border: 1px solid var(--border); border-radius: 10px;
    padding: 40px 34px; width: 100%; max-width: 380px; text-align: center;
}
.login-logo-img { height: 56px; width: auto; margin: 0 auto 18px; display: block; }
.login-eyebrow { color: var(--blue); font-size: 12px; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px; }
.login-card h2 { font-size: 22px; margin-bottom: 24px; }
.login-error { background: rgba(224,75,75,0.12); border: 1px solid var(--red); color: #ff9d9d; padding: 10px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 18px; text-transform: none; }
.login-success { background: rgba(88,214,141,0.12); border: 1px solid #58d68d; color: #b7f0cf; padding: 10px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 18px; text-transform: none; }

/* ---------------- Bookings / dashboard tables ---------------- */
.table-wrap { max-width: 1200px; margin: 0 auto; padding: 20px 40px 80px; overflow-x: auto; }
table.data-table { width: 100%; border-collapse: collapse; background: var(--navy-2); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
table.data-table th, table.data-table td { padding: 14px 16px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--border); }
table.data-table th { color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; font-size: 11px; background: rgba(255,255,255,0.02); }
table.data-table tr:last-child td { border-bottom: none; }
.status-pill { padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.icon-only { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 32px; padding: 0; font-size: 17px; line-height: 1; }
.status-pill.Pending { background: rgba(244,197,66,0.15); color: #f4c542; }
.status-pill.Confirmed { background: rgba(88,214,141,0.15); color: #58d68d; }
.status-pill.Cancelled { background: rgba(224,75,75,0.15); color: #ff9d9d; }

.lookup-form { max-width: 500px; margin: 0 auto 20px; display: flex; gap: 10px; }
.lookup-form input { flex: 1; padding: 12px 16px; border-radius: 6px; border: 1px solid var(--border); background: var(--navy-2); color: var(--text-light); }
.empty-state { text-align: center; color: var(--text-muted); padding: 60px 20px; text-transform: none; }

/* ---------------- Alerts ---------------- */
.alert { padding: 14px 18px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; text-transform: none; }
.alert-success { background: rgba(88,214,141,0.12); border: 1px solid #58d68d; color: #b7f0cf; }
.alert-error { background: rgba(224,75,75,0.12); border: 1px solid var(--red); color: #ff9d9d; }

/* ---------------- Tablet & Small Laptop Responsive System ---------------- */

/* 1. Small Laptops & Subnotebooks (1025px - 1340px) */
@media (max-width: 1340px) and (min-width: 1025px) {
    .header-inner { padding: 0 24px; min-height: 68px; gap: 12px; }
    .main-nav { gap: 4px; }
    .main-nav a { font-size: 11.5px; padding: 6px 10px; letter-spacing: 0.2px; }
    .header-actions { gap: 8px; }
    .header-btn { height: 38px; padding: 0 13px; font-size: 11.5px; }
    .header-btn-book { padding: 0 16px; }
    .container, .section, .page-header, .filters-bar, .treks-listing-grid, .detail-wrap, .table-wrap { padding-left: 30px; padding-right: 30px; }
    .detail-columns { grid-template-columns: 1.4fr 1fr; gap: 28px; }
    .why-section { gap: 40px; }
}

/* 2. Tablets & iPads (<= 1024px, including iPad portrait & landscape, Samsung tabs) */
@media (max-width: 1024px) {
    .container, .section, .page-header, .filters-bar, .treks-listing-grid, .detail-wrap, .table-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    /* Tablet Navigation Drawer */
    .header-inner { padding: 0 20px; min-height: 64px; }
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    .hamburger:hover, .hamburger:focus-visible {
        background: rgba(56, 189, 248, 0.12);
        border-color: #38bdf8;
    }
    .header-actions .header-btn:not(.header-btn-book) { display: none; }
    .header-actions .header-btn-book { height: 38px; padding: 0 16px; font-size: 12px; }
    .main-nav .mobile-nav-only { display: flex; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(11, 21, 38, 0.98);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
        flex-direction: column;
        padding: 16px 24px 22px;
        gap: 0;
        display: none;
        z-index: 999;
    }
    .main-nav.open {
        display: flex;
        animation: slideDownNav 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes slideDownNav {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .main-nav a {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--text-light);
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        letter-spacing: 0.5px;
    }
    .main-nav a:last-child { border-bottom: none; }
    .main-nav a.active { color: var(--blue); font-weight: 700; }
    .main-nav a::after {
        content: '→';
        color: var(--text-muted);
        font-size: 14px;
        opacity: 0.5;
        transition: transform 0.15s ease, opacity 0.15s ease, color 0.15s ease;
    }
    .main-nav a:hover::after, .main-nav a.active::after {
        opacity: 1;
        color: var(--blue);
        transform: translateX(4px);
    }

    /* Hero & Sections */
    .hero { min-height: 520px; }
    .hero-content { padding: 48px 24px 40px; }
    .stats-bar { padding: 36px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
    .stat-num { font-size: 34px; }

    /* Grids & Cards */
    .trek-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
    .treks-listing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }

    /* Great Himalayan Trail Interactive Map on Tablets */
    .ght-section { padding: 50px 20px; }
    .ght-map-wrap {
        --ght-scale: 0.72;
        overflow: visible;
        padding: 20px 14px 16px;
        border-radius: 12px;
        position: relative;
    }
    .ght-map-inner {
        width: 100%;
        min-width: 0;
    }
    .ght-touch-hint {
        display: none !important;
    }
}

/* 3. Medium & Portrait Tablets (<= 920px) */
@media (max-width: 920px) {
    .why-section { grid-template-columns: 1fr; gap: 36px; }
    .why-img { height: clamp(260px, 36vh, 380px); }
    
    .detail-columns { grid-template-columns: 1fr; gap: 36px; }
    .booking-panel { position: static; width: 100%; }
    
    .detail-gallery { grid-template-columns: 1fr; gap: 10px; }
    .detail-gallery-main { height: clamp(260px, 45vw, 380px); }
    .detail-gallery-side { grid-template-columns: repeat(3, 1fr); height: 110px; }
    .detail-gallery-side div { height: 110px; }

    .quickfacts { grid-template-columns: repeat(3, 1fr); padding: 18px; gap: 12px; }
    
    .contact-layout { grid-template-columns: 1fr !important; gap: 32px; }
    .mission-grid { grid-template-columns: 1fr !important; gap: 32px; }
    .mission-img-card img { height: clamp(260px, 36vh, 380px); }
    
    .cta-banner { padding: 60px 24px; }
    .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* 4. Small Tablets & Phones (<= 768px) */
@media (max-width: 768px) {
    .container, .section, .page-header, .filters-bar, .treks-listing-grid, .detail-wrap, .table-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }
    .header-inner { padding: 10px 18px; }
    .logo-mark { height: 32px; }
    .logo-title { font-size: 13px; }
    .logo-sub { font-size: 10px; }

    .hero { min-height: 460px; }
    .hero-content { padding: 36px 18px 28px; }
    .hero-eyebrow { font-size: 11px; letter-spacing: 1px; }

    .stats-bar { padding: 28px 18px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
    .stat-num { font-size: 28px; }
    .stat-label { font-size: 11px; }

    .quickfacts { grid-template-columns: 1fr; gap: 14px; }
    
    .filters-bar { padding-bottom: 20px; }
    .search-box { min-width: 100%; }

    .detail-title-row { gap: 10px; }
    .detail-badges { flex-wrap: wrap; gap: 8px; }
    .tabs { gap: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .tab-btn { white-space: nowrap; }

    .ght-map-wrap {
        --ght-scale: 0.55;
        padding: 16px 10px 14px;
        overflow: visible;
    }
    .ght-map-inner {
        width: 100%;
        min-width: 0;
    }

    /* Prevent auto-zoom on inputs on iOS/Android */
    input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
        font-size: 16px !important;
    }

    .confirmation-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .confirmation-sheet { padding: 24px 16px; }
    .confirmation-code { flex-direction: column; align-items: flex-start; gap: 8px; }
    .confirmation-actions { flex-direction: column; width: 100%; }
    .confirmation-actions .btn { width: 100%; justify-content: center; }

    .table-wrap { padding-left: 14px; padding-right: 14px; }
    table.data-table th, table.data-table td { padding: 10px 12px; font-size: 12px; }

    /* Footer Mobile Responsiveness & Bottom Padding for Floating Buttons */
    .site-footer {
        padding: 28px 18px 96px;
        position: relative;
        z-index: 1;
    }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
    .footer-contact-social { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-links { flex-wrap: wrap; gap: 12px 16px; }

    /* Mobile Floating Buttons Positioning & Touch Targets */
    .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 52px;
        height: 52px;
        z-index: 9995;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    .sts-floating-lang-widget {
        bottom: 20px;
        left: 18px;
        z-index: 9996;
    }
}

/* 5. Mobile Cards Fluidity (<= 480px) */
@media (max-width: 480px) {
    .trek-grid, .treks-listing-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .ght-stats-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .ght-map-wrap {
        --ght-scale: 0.40;
        padding: 10px 4px 10px;
        overflow: visible;
    }
    .ght-map-inner {
        width: 100%;
        min-width: 0;
    }
}

/* 6. Fold Phones - Outer Cover Screen & Ultra-Narrow Displays (<= 360px, e.g. Galaxy Z Fold outer 280px-344px) */
@media (max-width: 360px) {
    .container, .section, .page-header, .filters-bar, .treks-listing-grid, .detail-wrap, .table-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Ultra-compact Header */
    .header-inner {
        padding: 8px 12px;
        gap: 8px;
    }
    .logo {
        gap: 6px;
    }
    .logo-mark {
        height: 26px;
    }
    .logo-title {
        font-size: 11px;
        letter-spacing: 0.2px;
    }
    .logo-sub {
        font-size: 8.5px;
    }
    .header-actions {
        gap: 6px;
    }
    .header-actions .btn-primary {
        padding: 7px 10px;
        font-size: 11px;
        letter-spacing: 0;
    }
    .hamburger {
        width: 38px;
        height: 38px;
        padding: 4px;
    }

    /* Hero */
    .hero {
        min-height: 400px;
    }
    .hero-content {
        padding: 24px 12px 20px;
    }
    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }
    .hero-eyebrow .line {
        width: 18px;
    }
    .hero h1 {
        font-size: clamp(24px, 8.5vw, 32px);
        line-height: 1.12;
    }
    .hero-desc {
        font-size: 13px;
        margin: 14px 0 18px;
        line-height: 1.5;
    }

    /* Stats Bar */
    .stats-bar {
        padding: 20px 12px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 8px;
    }
    .stat-num {
        font-size: 22px;
    }
    .stat-label {
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    /* Why Us */
    .why-section {
        gap: 24px;
    }
    .why-img {
        height: 200px;
    }
    .feature-item {
        padding-left: 12px;
    }
    .feature-item h4 {
        font-size: 13.5px;
        margin-bottom: 4px;
    }
    .feature-item p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    /* Great Himalayan Trail */
    .ght-section {
        padding: 40px 10px;
    }
    .ght-desc {
        font-size: 13px;
        line-height: 1.55;
        margin-bottom: 20px;
    }
    .ght-map-wrap {
        --ght-scale: 0.28;
        padding: 6px 2px 8px;
        border-radius: 8px;
        overflow: visible;
    }
    .ght-map-inner {
        width: 100%;
        min-width: 0;
    }
    .ght-stat-num {
        font-size: 24px;
    }

    /* Trek Cards */
    .trek-card-img {
        height: 170px;
    }
    .trek-card-body {
        padding: 16px 14px 18px;
    }
    .trek-card-body h3 {
        font-size: 17px;
    }
    .trek-price .amount {
        font-size: 18px;
    }

    /* Detail Page */
    .detail-wrap {
        padding: 16px 12px 50px;
    }
    .detail-gallery-main {
        height: 200px;
        border-radius: 6px;
    }
    .detail-gallery-side {
        grid-template-columns: repeat(3, 1fr);
        height: 70px;
        gap: 6px;
    }
    .detail-gallery-side div {
        height: 70px;
        border-radius: 4px;
    }
    .detail-title-row h1 {
        font-size: 24px;
    }
    .quickfacts {
        padding: 14px 12px;
    }
    .quickfacts .qf-value {
        font-size: 15px;
    }
    .booking-panel {
        padding: 16px 12px;
    }
    .booking-panel .panel-total {
        font-size: 24px;
    }
    .option-card {
        padding: 10px 12px;
        gap: 8px;
    }
    .option-title-row b {
        font-size: 13px;
    }
    .group-size-btn {
        width: 36px;
        height: 38px;
        font-size: 12px;
    }
    .multi-select-trigger {
        padding: 9px 12px;
        font-size: 13px;
    }

    /* Filters on narrow fold screens */
    .filters-bar {
        padding: 0 12px 20px;
        gap: 12px;
    }
    .search-box {
        min-width: 0;
        width: 100%;
        padding: 10px 12px;
    }
    .filter-group {
        gap: 6px;
    }
    .filter-pill {
        padding: 7px 11px;
        font-size: 11px;
    }

    /* Contact Us Page */
    .contact-layout {
        gap: 22px;
    }
    .contact-layout div[style*="padding:28px"],
    .contact-layout div[style*="padding:32px"] {
        padding: 20px 14px !important;
    }
    .contact-layout div[style*="grid-template-columns:1fr 1fr"],
    .contact-layout div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    .contact-map-header {
        padding: 16px 12px !important;
        gap: 12px;
    }
    .contact-map-header .btn {
        width: 100%;
        justify-content: center;
    }
    .contact-map-iframe-wrap {
        height: 260px !important;
    }

    /* Booking Confirmation Receipt */
    .confirmation-sheet {
        padding: 20px 12px;
    }
    .confirmation-sheet h1 {
        font-size: 22px;
    }
    .confirmation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .confirmation-grid strong {
        word-break: break-word;
    }
    .confirmation-code {
        padding: 10px 12px;
        font-size: 11px;
    }
    .confirmation-code strong {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .confirmation-table {
        min-width: 440px;
        font-size: 12px;
    }
    .confirmation-table th, .confirmation-table td {
        padding: 8px 10px;
    }

    /* Form Inputs on Ultra-Narrow Viewports */
    input, select, textarea {
        max-width: 100%;
        font-size: 16px !important; /* Prevents auto-zoom on mobile */
    }

    /* Ultra-narrow Word Wrap Safety */
    h1, h2, h3, .logo-title, .trek-card-body h3, .detail-title-row h1 {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Mission section */
    .mission-img-card img {
        height: 220px;
    }
    .mission-img-badge {
        padding: 8px 10px;
        font-size: 10.5px;
        bottom: 8px;
        left: 8px;
        right: 8px;
        gap: 6px;
    }

    /* CTA */
    .cta-banner {
        padding: 40px 14px;
    }
    .cta-inner h2 {
        font-size: 22px;
    }
}

/* 7. Fold Phones - Unfolded Dual-Screen / Spanning Feature */
@media (horizontal-viewport-segments: 2), (screen-spanning: single-fold-vertical) {
    .site-header {
        padding-left: max(16px, env(viewport-segment-left 0 0, 0));
        padding-right: max(16px, env(viewport-segment-right 1 0, 0));
    }
    .container, .section, .page-header, .detail-wrap {
        padding-left: max(24px, env(viewport-segment-left 0 0, 0));
        padding-right: max(24px, env(viewport-segment-right 1 0, 0));
    }
}

/* 8. Touch Screen Ergonomics (Foldables, Phones, iPads, Touch Laptops) */
@media (hover: none) and (pointer: coarse) {
    .btn { min-height: 44px; }
    .filter-pill { min-height: 42px; display: inline-flex; align-items: center; }
    .group-size-btn { min-width: 44px; height: 44px; }
    .multi-select-trigger { min-height: 46px; }
    .ms-option { min-height: 42px; }
    .tab-btn { min-height: 44px; display: inline-flex; align-items: center; }
    .social-icon { width: 40px; height: 40px; }
    .whatsapp-float { width: 58px; height: 58px; }
}

/* ============================================================
   Admin Panel Layout & Responsive Navigation
   ============================================================ */
.admin-shell { display: flex; min-height: 100vh; position: relative; }

/* Sticky Admin Topbar (Visible on tablets, laptops & mobile <= 1024px) */
.admin-topbar {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    padding: 0 18px;
    background: #08111e;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.admin-drawer-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.admin-drawer-toggle:hover { background: rgba(47,158,232,0.12); border-color: var(--blue); }
.hamburger-box { display: flex; flex-direction: column; gap: 4.5px; width: 18px; }
.hamburger-line { display: block; height: 2px; width: 100%; background: #ffffff; border-radius: 2px; }
.topbar-unread-pip {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 9px;
    height: 9px;
    background: #e74c3c;
    border: 2px solid #08111e;
    border-radius: 50%;
}

.topbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.topbar-brand .logo-mark { height: 26px; width: auto; flex-shrink: 0; }
.topbar-text { display: flex; flex-direction: column; line-height: 1.15; }
.topbar-title { font-weight: 800; font-size: 13px; color: #ffffff; letter-spacing: 0.5px; }
.topbar-badge { font-size: 9.5px; color: var(--blue); font-weight: 800; letter-spacing: 1px; }

.topbar-actions { display: flex; align-items: center; gap: 8px; }
.topbar-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 7px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    transition: all 0.15s ease;
}
.topbar-action-btn:hover { border-color: var(--blue); color: var(--blue); background: rgba(47,158,232,0.1); }
.topbar-action-btn.active { border-color: var(--blue); color: var(--blue); background: rgba(47,158,232,0.15); }
.topbar-action-btn.danger:hover { border-color: var(--red); color: #ff9d9d; background: rgba(231,76,60,0.15); }
.topbar-badge-pill {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 10px;
    padding: 1px 5px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

/* Off-canvas Backdrop for Mobile/Tablet Drawer */
.admin-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.admin-drawer-backdrop.active { opacity: 1; pointer-events: auto; }
body.admin-drawer-active { overflow: hidden; }

/* Admin Sidebar Navigation - Full height non-scroll layout */
.admin-sidebar {
    width: 275px;
    flex-shrink: 0;
    background: var(--navy-2);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 16px 16px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    overflow: hidden; /* Full view: completely eliminates scrollbar and scrolling */
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 100;
}
.admin-sidebar::-webkit-scrollbar {
    display: none;
}
.admin-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
    flex-shrink: 0;
}
.admin-logo-link { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
.admin-logo .logo-mark { height: 28px; width: auto; flex-shrink: 0; }
.admin-logo .logo-title { display: block; font-weight: 800; font-size: 14px; color: #ffffff; }
.admin-logo .logo-sub { display: block; font-size: 10px; color: var(--blue); letter-spacing: 1px; font-weight: 700; }
.admin-drawer-close {
    display: none;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: #cbd5e1;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}
.admin-drawer-close:hover { color: #ffffff; background: rgba(255,255,255,0.12); }

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 2.5px;
    flex: 1;
    min-height: 0;
    justify-content: flex-start;
    padding: 2px 0;
}
.nav-section-title {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #556987;
    padding: 10px 12px 4px;
    line-height: 1.2;
    user-select: none;
}
.nav-section-title:first-child {
    padding-top: 2px;
}
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 7.5px 14px;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.25;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}
.admin-nav a .ai { font-size: 15.5px; width: 20px; text-align: center; flex-shrink: 0; }
.admin-nav a .nav-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-nav a:hover { background: rgba(255,255,255,0.05); color: #ffffff; }
.admin-nav a.active {
    background: rgba(47,158,232,0.14);
    color: var(--blue);
    font-weight: 700;
    border-left-color: var(--blue);
}
.sidebar-unread-pill {
    background: #e74c3c;
    color: #ffffff;
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 800;
    margin-left: auto;
}

.admin-sidebar-footer {
    border-top: 1px solid var(--border);
    padding-top: 11px;
    margin-top: 8px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sidebar-view-site-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7.5px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
}
.sidebar-view-site-link:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(47,158,232,0.08);
}
.sidebar-view-site-link .ext-arrow {
    font-size: 13px;
    color: var(--blue);
}
.sidebar-user-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 6px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.05);
}
.sidebar-user-card .user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f9ee8, #1e6fb3);
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.sidebar-user-card .user-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    line-height: 1.15;
}
.sidebar-user-card .user-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-user-card .user-status {
    font-size: 9.5px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}
.sidebar-user-card .status-pip {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 5px rgba(16,185,129,0.7);
}
.sidebar-user-card .admin-logout {
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    padding: 3px 7px;
    border-radius: 4px;
    transition: background 0.15s ease;
    flex-shrink: 0;
}
.sidebar-user-card .admin-logout:hover {
    background: rgba(224,75,75,0.15);
    text-decoration: underline;
}

/* Responsive adjustments for low-height screens/laptops */
@media (max-height: 680px) {
    .admin-sidebar {
        padding: 8px 10px 8px;
    }
    .admin-logo {
        padding: 0 2px 6px;
        margin-bottom: 4px;
    }
    .admin-logo .logo-mark {
        height: 20px;
    }
    .admin-logo .logo-title {
        font-size: 11.5px;
    }
    .admin-logo .logo-sub {
        font-size: 8px;
    }
    .nav-section-title {
        font-size: 8.5px;
        padding: 4px 8px 1px;
    }
    .admin-nav {
        gap: 1px;
        padding: 0;
    }
    .admin-nav a {
        padding: 4.5px 9px;
        font-size: 11.5px;
    }
    .admin-nav a .ai {
        font-size: 13px;
        width: 16px;
    }
    .admin-sidebar-footer {
        padding-top: 5px;
        margin-top: 3px;
        gap: 4px;
    }
    .sidebar-view-site-link {
        padding: 4px 8px;
        font-size: 10.5px;
    }
    .sidebar-user-card {
        padding: 4px 6px;
    }
    .sidebar-user-card .user-avatar {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    .sidebar-user-card .user-name {
        font-size: 11px;
    }
    .sidebar-user-card .user-status {
        display: none;
    }
}

/* Admin Main Content Container */
.admin-main {
    flex: 1;
    min-width: 0;
    padding: 32px 42px;
    margin-left: 275px;
    width: calc(100% - 275px);
    box-sizing: border-box;
}
.admin-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}
.admin-page-header h1 { font-size: 26px; letter-spacing: -0.5px; }
.admin-page-header p { color: var(--text-muted); font-size: 13px; margin-top: 4px; text-transform: none; }

/* Responsive Utility Classes for Admin */
.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.admin-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--navy-2);
    margin-bottom: 24px;
}
.admin-table-responsive table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}
.admin-shell table.data-table {
    min-width: 680px;
}
.admin-shell div[style*="overflow-x:auto"] {
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
    background: var(--navy-2);
}

/* Admin trek table thumbnails */
.admin-thumb { width: 56px; height: 40px; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.admin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.icon-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 5px; font-size: 12px; font-weight: 700; border: 1px solid var(--border); background: transparent; color: var(--text-light); cursor: pointer; text-decoration: none; }
.icon-btn:hover { border-color: var(--blue); color: var(--blue); }
.icon-btn.danger:hover { border-color: var(--red); color: #ff9d9d; }

/* Admin form (trek add/edit + settings) */
.admin-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.admin-form-grid .full { grid-column: 1 / -1; }
.form-card { background: var(--navy-2); border: 1px solid var(--border); border-radius: 8px; padding: 26px; margin-bottom: 24px; }
.form-card h3 { font-size: 15px; color: var(--blue); margin-bottom: 4px; }
.form-card .form-card-desc { color: var(--text-muted); font-size: 12.5px; margin-bottom: 20px; text-transform: none; }
.form-field textarea { width: 100%; padding: 11px 14px; border-radius: 6px; border: 1px solid var(--border); background: var(--navy); color: var(--text-light); font-size: 14px; outline: none; font-family: inherit; resize: vertical; }
.form-field textarea:focus, .form-field select:focus { border-color: var(--blue); }
.upload-label { display: block; margin-top: 12px; }
.form-field select { width: 100%; padding: 11px 14px; border-radius: 6px; border: 1px solid var(--border); background: var(--navy); color: var(--text-light); font-size: 14px; outline: none; }
.form-field .hint { color: var(--text-muted); font-size: 11px; margin-top: 5px; text-transform: none; }
.form-field.checkbox-field { display: flex; align-items: center; gap: 8px; }
.form-field.checkbox-field input { width: auto; }

.option-row-grid {
    display: grid; grid-template-columns: 32px 1fr 1.4fr 1.2fr 0.7fr 36px;
    gap: 10px; align-items: center; margin-bottom: 10px;
}
.option-row-grid input[type="text"], .option-row-grid input[type="number"] {
    padding: 9px 10px; border-radius: 5px; border: 1px solid var(--border);
    background: var(--navy); color: var(--text-light); font-size: 13px; width: 100%;
}
.option-row-grid .remove-row-btn {
    background: transparent; border: 1px solid var(--border); color: var(--red);
    border-radius: 5px; width: 32px; height: 32px; cursor: pointer; font-size: 16px;
}
.option-row-header { display: grid; grid-template-columns: 1fr 1.4fr 1.2fr 0.7fr 36px; gap: 10px; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.add-row-btn { margin-top: 6px; }

.settings-section-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.settings-section-nav a { padding: 8px 16px; border-radius: 5px; border: 1px solid var(--border); font-size: 12px; font-weight: 700; color: var(--text-muted); }
.settings-section-nav a:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   Admin Responsive Media Queries (Tablets, iPads, Laptops & Mobile)
   ============================================================ */

/* 1. Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
    .admin-topbar { display: flex; }
    .admin-drawer-backdrop { display: block; }
    .admin-shell { flex-direction: column; }

    /* Turn sidebar into off-canvas sliding drawer */
    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-width: 86vw;
        height: 100vh;
        height: 100dvh;
        background: #091322;
        border-right: 1px solid var(--border);
        box-shadow: 4px 0 28px rgba(0,0,0,0.65);
        z-index: 1200;
        transform: translateX(-100%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 16px 14px 14px;
        overflow: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .admin-sidebar.drawer-open {
        transform: translateX(0);
    }
    .admin-drawer-close { display: flex; }

    .admin-main {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }
    .admin-page-header h1 { font-size: 22px; }
    .admin-form-grid { grid-template-columns: 1fr; }
    .admin-grid-2 { grid-template-columns: 1fr; }
}

/* 2. Standard Mobile & Phablet (<= 768px) */
@media (max-width: 768px) {
    .admin-main { padding: 18px 14px; }
    .admin-page-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
    .admin-page-header > div:last-child { width: 100%; display: flex; flex-wrap: wrap; gap: 8px; }
    .admin-page-header .btn { width: 100%; justify-content: center; }

    /* Modal adjustments */
    .preview-modal-card { width: 95vw; max-height: 90vh; }
    .modal-info-grid { grid-template-columns: 1fr !important; }
    .preview-modal-footer { flex-direction: column; align-items: stretch; gap: 10px; }
    .preview-modal-footer form { width: 100%; justify-content: space-between; }
    .preview-modal-footer > div:last-child { width: 100%; display: flex; justify-content: space-between; }

    /* Form cards */
    .form-card { padding: 18px 14px; }
    .option-row-grid { grid-template-columns: 1fr; gap: 8px; }
    .option-row-header { display: none; }
}

/* 3. Fold Phones & Narrow Screens (<= 480px) */
@media (max-width: 480px) {
    .admin-topbar { padding: 0 12px; height: 56px; }
    .topbar-title { font-size: 12px; }
    .topbar-brand .logo-mark { height: 22px; }
    .topbar-action-btn { width: 34px; height: 34px; font-size: 12px; }

    .admin-sidebar {
        width: 100%;
        max-width: 100%;
        border-right: none;
        padding: 14px 12px 12px;
    }

    .admin-main { padding: 14px 10px; }
    .admin-page-header h1 { font-size: 20px; }

    /* KPI / Stat cards: drop to clean 2-column or 1-column grid */
    .bookings-stats-row, .msg-stats-row {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .b-stat-card, .msg-stat-card {
        padding: 12px 14px !important;
    }
    .b-stat-val, .msg-stat-val {
        font-size: 22px !important;
    }

    /* Modal inputs */
    .preview-modal-header, .preview-modal-body, .preview-modal-footer {
        padding: 14px 16px !important;
    }
}

/* 4. Ultra-narrow Fold Phones (<= 320px e.g. Galaxy Fold front screen) */
@media (max-width: 320px) {
    .topbar-title { display: none; }
    .bookings-stats-row, .msg-stats-row {
        grid-template-columns: 1fr !important;
    }
}


/* ---------------- Google Reviews section ---------------- */
.reviews-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 30px; }
.google-summary { display: flex; align-items: center; gap: 12px; background: var(--navy-2); border: 1px solid var(--border); border-radius: 8px; padding: 14px 20px; }
.google-rating { font-size: 18px; font-weight: 800; color: #f4c542; }
.google-count { font-size: 12px; color: var(--text-muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review-card { background: var(--navy-2); border: 1px solid var(--border); border-radius: 10px; padding: 22px; }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-name { font-size: 14px; font-weight: 700; }
.review-stars { color: #f4c542; font-size: 13px; letter-spacing: 1px; }
.review-google-icon { margin-left: auto; flex-shrink: 0; }
.review-text { color: var(--text-muted); font-size: 13.5px; text-transform: none; line-height: 1.6; margin-bottom: 10px; }
.review-date { color: var(--text-muted); font-size: 11px; text-transform: none; }

/* ---------------- Social login buttons ---------------- */
.social-login-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.btn-social {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 11px 16px; border-radius: 6px; font-size: 13px; font-weight: 700;
    border: 1px solid var(--border);
}
.btn-google { background: #fff; color: #1f1f1f; }
.btn-google:hover { background: #f1f1f1; }
.btn-facebook { background: #1877F2; color: #fff; border-color: #1877F2; }
.btn-facebook:hover { background: #166fe0; }
.social-divider { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 11px; text-transform: none; margin-bottom: 18px; }
.social-divider::before, .social-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ---------------- Rich text editor (Quill) — dark theme override ---------------- */
.rich-editor { background: var(--navy); border-radius: 6px; overflow: hidden; }
.rich-editor-fallback { width: 100%; min-height: 160px; margin-top: 10px; }
.rich-editor-fallback-hidden { display: none; }
.gallery-row-grid { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 10px; }
.ql-toolbar.ql-snow { background: var(--navy-2); border-color: var(--border) !important; border-radius: 6px 6px 0 0; }
.ql-container.ql-snow { border-color: var(--border) !important; border-radius: 0 0 6px 6px; min-height: 160px; font-size: 14px; }
.ql-editor { color: var(--text-light); min-height: 160px; }
.ql-editor.ql-blank::before { color: var(--text-muted); font-style: normal; }
.ql-snow .ql-stroke { stroke: var(--text-muted); }
.ql-snow .ql-fill { fill: var(--text-muted); }
.ql-snow .ql-picker { color: var(--text-muted); }
.ql-toolbar.ql-snow .ql-formats button:hover .ql-stroke,
.ql-toolbar.ql-snow .ql-formats button.ql-active .ql-stroke { stroke: var(--blue); }
.ql-toolbar.ql-snow .ql-formats button:hover .ql-fill,
.ql-toolbar.ql-snow .ql-formats button.ql-active .ql-fill { fill: var(--blue); }
.ql-snow .ql-picker-options { background: var(--navy-2); border-color: var(--border) !important; }
.ql-snow .ql-tooltip { background: var(--navy-2); border-color: var(--border); color: var(--text-light); box-shadow: 0 4px 12px rgba(0,0,0,0.4); }
.ql-snow .ql-tooltip input[type=text] { background: var(--navy); color: var(--text-light); border-color: var(--border); }

/* Rendered rich-text content on the public trek page */
.rich-content { color: var(--text-muted); font-size: 15px; line-height: 1.7; text-transform: none; }
.rich-content p { margin: 0 0 14px; }
.rich-content ul, .rich-content ol { margin: 0 0 14px; padding-left: 22px; }
.rich-content li { margin-bottom: 6px; }
.rich-content img { max-width: 100%; border-radius: 8px; margin: 10px 0; }
.rich-content a { color: var(--blue); text-decoration: underline; }
.rich-content strong, .rich-content b { color: var(--text-light); }
.rich-content h1, .rich-content h2, .rich-content h3 { color: var(--text-light); text-transform: none; letter-spacing: normal; margin: 26px 0 14px; }
.rich-content h1 { font-size: 28px; }
.rich-content h2 { font-size: 23px; }
.rich-content h3 { font-size: 19px; }
.rich-content .ql-size-small { font-size: 0.75em; }
.rich-content .ql-size-large { font-size: 1.5em; }
.rich-content .ql-size-huge { font-size: 2.25em; }
.rich-content .ql-align-center { text-align: center; }
.rich-content .ql-align-right { text-align: right; }
.rich-content .ql-align-justify { text-align: justify; }

/* ---------------- Itinerary builder rows (admin) ---------------- */
.itinerary-row-wrapper {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.itinerary-row-grid {
    display: grid; grid-template-columns: 90px 1.5fr 1.5fr 28px;
    gap: 10px; margin-bottom: 16px; align-items: start;
}

.itinerary-row-grid input {
    padding: 9px 10px; border-radius: 5px; border: 1px solid var(--border);
    background: var(--navy); color: var(--text-light); font-size: 13px; width: 100%; font-family: inherit;
}

.itinerary-row-grid .remove-row-btn {
    background: transparent; border: 1px solid var(--border); color: var(--red);
    border-radius: 5px; width: 24px; height: 24px; cursor: pointer; font-size: 14px; padding: 0;
    display: flex; align-items: center; justify-content: center;
}

.itinerary-detail-collapse {
    margin-top: 0;
}

.itinerary-detail-toggle {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.itinerary-detail-toggle:hover {
    color: var(--blue);
}

.toggle-arrow {
    display: inline-block;
    transition: transform 0.2s;
    font-size: 10px;
}

.itinerary-detail-toggle.active .toggle-arrow {
    transform: rotate(90deg);
}

.itinerary-detail-wrapper {
    margin-top: 12px;
}

.itinerary-editor {
    min-height: 150px;
}

.itinerary-editor.ql-container {
    min-height: 150px;
    border-radius: 0 0 6px 6px;
}

.itinerary-editor .ql-editor {
    min-height: 120px;
    font-size: 14px;
}

.itinerary-editor.ql-toolbar {
    border-radius: 6px 6px 0 0;
}

/* ---------------- Catalog picker (accommodation/transport attach list) ---------------- */
.catalog-picker-header { display: grid; grid-template-columns: 30px 2fr 160px 70px; gap: 12px; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; padding: 0 4px; }
.catalog-picker-row {
    display: grid; grid-template-columns: 30px 2fr 160px 70px; gap: 12px; align-items: center;
    padding: 12px; border: 1px solid var(--border); border-radius: 6px; margin-bottom: 8px; cursor: pointer;
}
.catalog-picker-row:hover { border-color: var(--blue); }
.catalog-attach-checkbox { width: 17px; height: 17px; }
.catalog-picker-info { font-size: 13.5px; }
.catalog-picker-desc { color: var(--text-muted); font-size: 12px; text-transform: none; }
.catalog-picker-row input[type="radio"],
.catalog-picker-row input.catalog-default-checkbox { width: 17px; height: 17px; justify-self: center; accent-color: var(--blue); cursor: pointer; }

/* ---------------- New catalog item rows (inline add-new inside trek form) ---------------- */
.new-option-row-grid {
    display: grid; grid-template-columns: 1fr 1.4fr 1.2fr 0.7fr 36px;
    gap: 10px; align-items: center; margin-bottom: 10px;
}
.new-option-row-grid input {
    padding: 9px 10px; border-radius: 5px; border: 1px solid var(--border);
    background: var(--navy); color: var(--text-light); font-size: 13px; width: 100%;
}

/* ---------------- Front-end itinerary accordion (trek-detail.php) ---------------- */
.itinerary-accordion { display: flex; flex-direction: column; gap: 10px; }
.itinerary-day-card {
    background: var(--navy-2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.itinerary-day-header {
    padding: 14px 18px; display: flex; align-items: baseline; gap: 10px;
    font-size: 14px;
}
.itinerary-accordion .day-label { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.itinerary-accordion .day-title { font-weight: 600; }
.itinerary-accordion .day-short { color: var(--text-muted); font-size: 12.5px; margin-left: 4px; }
.itinerary-accordion .day-detail { padding: 0 18px 16px 18px; color: var(--text-muted); font-size: 13.5px; line-height: 1.7; text-transform: none; border-top: 1px solid var(--border); padding-top: 14px; }

@media (max-width: 700px) {
    .itinerary-row-grid { grid-template-columns: 1fr; }
    .new-option-row-grid { grid-template-columns: 1fr; }
    .catalog-picker-header { display: none; }
    .catalog-picker-row { grid-template-columns: 30px 1fr; }
    .catalog-picker-row input[type="number"] { grid-column: 2; }
}

/* ---------------- Hero video ---------------- */
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.hero-youtube-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-youtube-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.hero-youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero::before { z-index: 1; }
.hero-content { z-index: 2; }

/* ---------------- Great Himalayan Trail section ---------------- */
.ght-section { 
    text-align: center; 
    max-width: 1400px; /* Expanded from 1200px to give the map more room */
    padding: 80px 20px;
}
.ght-desc { 
    max-width: 800px; 
    margin: 0 auto 40px; 
    color: var(--text-muted); 
    font-size: 16px; 
    text-transform: none; 
    line-height: 1.7; 
}

/* Expanded Map Wrap */
.ght-map-wrap { 
    background: #ffffff00; 
    border: 1px solid var(--border); 
    border-radius: 14px; 
    padding: 30px 24px 20px; 
    margin: 0 auto 40px; 
    max-width: 1350px;
    overflow: visible;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}
.ght-map-wrap:hover {
    transform: scale(1.015);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.ght-map-inner { 
    position: relative; 
    width: 100%; 
    line-height: 0; 
}

/* Map Image — smooth contrast tuning to suppress baked-in white notes/text */
.ght-map-img { 
    width: 100%; 
    height: auto; 
    display: block; 
    border-radius: 8px;
    filter: contrast(1.05) brightness(0.98);
}
.ght-map-hint { 
    color: var(--text-muted); 
    font-size: 13px; 
    text-transform: none; 
    margin: 20px 0 2px; 
}

/* ---------------- Enlarged Node Root & White Coordinate Dot ---------------- */
.ght-node-pin {
    position: absolute;
    z-index: 6;
    pointer-events: auto;
}
.ght-node-pin:hover,
.ght-node-pin.touch-active {
    z-index: 60;
}

/* White Center Coordinate Dot */
.ght-point-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: max(4px, calc(11px * var(--ght-scale, 1)));
    height: max(4px, calc(11px * var(--ght-scale, 1)));
    background: #ffffff;
    border-radius: 50%;
    border: max(1px, calc(2px * var(--ght-scale, 1))) solid #0b1526;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px rgba(255, 255, 255, 1), 0 0 12px rgba(47, 158, 232, 0.9);
    z-index: 4;
}
.ght-point-dot::after {
    content: '';
    position: absolute;
    inset: max(-4px, calc(-6px * var(--ght-scale, 1)));
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    animation: ght-dot-pulse 2.2s infinite ease-out;
}

@keyframes ght-dot-pulse {
    0%   { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(2.6); opacity: 0; }
}

/* ---------------- Connector / Leader Lines ---------------- */
.ght-leader-line {
    position: absolute;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 2;
}

/* ---------------- Mountain Hotspots ---------------- */
.ght-hotspot {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 7;
    text-decoration: none;
}
/* Generous touch tap target on touch screens */
.ght-hotspot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.ght-hotspot-icon {
    width: calc(46px * var(--ght-scale, 1));
    height: calc(46px * var(--ght-scale, 1));
    min-width: 14px;
    min-height: 14px;
    border-radius: 50%;
    overflow: hidden;
    border: max(1.5px, calc(2.5px * var(--ght-scale, 1))) solid #f4c542;
    background: #0a0a0a;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}
.ght-hotspot-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.28s ease;
}

/* Hover & Touch Active Scale */
.ght-node-pin:hover .ght-hotspot-icon,
.ght-hotspot:focus-visible .ght-hotspot-icon,
.ght-node-pin.touch-active .ght-hotspot-icon {
    transform: scale(calc(2 / var(--ght-scale, 1)));
    border-color: var(--blue);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.85), 0 0 20px rgba(47, 158, 232, 0.9);
    z-index: 80;
}
.ght-node-pin:hover .ght-hotspot-icon img,
.ght-node-pin.touch-active .ght-hotspot-icon img {
    transform: scale(1.15);
}

.ght-hotspot-tip {
    position: absolute;
    bottom: 145%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--navy);
    color: var(--text-light);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    line-height: 1.4;
    text-transform: none;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 70;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}
.ght-hotspot-tip b { color: var(--blue); }
.ght-node-pin:hover .ght-hotspot-tip,
.ght-hotspot:focus-visible .ght-hotspot-tip,
.ght-node-pin.touch-active .ght-hotspot-tip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* ---------------- Clickable & Hoverable City Badges ---------------- */
.ght-city-label {
    position: absolute;
    font-size: max(6.5px, calc(12px * var(--ght-scale, 1)));
    font-weight: 800;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: rgba(11, 21, 38, 0.95);
    border: max(1px, calc(1.5px * var(--ght-scale, 1))) solid rgba(255, 255, 255, 0.4);
    padding: max(1px, calc(4px * var(--ght-scale, 1))) max(3px, calc(10px * var(--ght-scale, 1)));
    border-radius: max(3px, calc(6px * var(--ght-scale, 1)));
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), 
                border-color 0.2s ease, 
                background 0.2s ease, 
                box-shadow 0.2s ease,
                color 0.2s ease;
    z-index: 8;
}

/* Hover effect on city badge */
.ght-city-label:hover,
.ght-node-pin:hover .ght-city-label,
.ght-node-pin.touch-active .ght-city-label {
    background: var(--blue);
    color: #061420;
    border-color: #ffffff;
    transform: scale(calc(1.4 / var(--ght-scale, 1)));
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7), 0 0 12px rgba(47, 158, 232, 0.8);
    z-index: 80;
}

/* ---------------- Precise Proportional Line Connections ---------------- */

/* TOP Offset */
.peak-pos-top .ght-leader-line { bottom: 0; left: 0; width: max(1.5px, calc(2.5px * var(--ght-scale, 1))); height: calc(47px * var(--ght-scale, 1)); transform: translateX(-50%); }
.peak-pos-top .ght-hotspot     { bottom: calc(27px * var(--ght-scale, 1)); left: 0; transform: translate(-50%, -50%); }

/* TOP-LEFT Offset */
.peak-pos-top-left .ght-leader-line { bottom: 0; right: 0; width: calc(38px * var(--ght-scale, 1)); height: max(1.5px, calc(2.5px * var(--ght-scale, 1))); transform: rotate(37deg); transform-origin: right bottom; }
.peak-pos-top-left .ght-hotspot     { bottom: calc(-1px * var(--ght-scale, 1)); right: calc(30px * var(--ght-scale, 1)); transform: translate(50%, -50%); }

/* TOP-RIGHT Offset */
.peak-pos-top-right .ght-leader-line { bottom: 0; left: 0; width: calc(47px * var(--ght-scale, 1)); height: max(1.5px, calc(2.5px * var(--ght-scale, 1))); transform: rotate(-78deg); transform-origin: left bottom; }
.peak-pos-top-right .ght-hotspot     { bottom: calc(3px * var(--ght-scale, 1)); left: calc(9px * var(--ght-scale, 1)); transform: translate(-50%, -50%); }

/* BOTTOM Offset */
.peak-pos-bottom .ght-leader-line { top: 0; left: 0; width: max(1.5px, calc(2.5px * var(--ght-scale, 1))); height: calc(40px * var(--ght-scale, 1)); transform: translateX(-50%); }
.peak-pos-bottom .ght-hotspot     { top: calc(23px * var(--ght-scale, 1)); left: 0; transform: translate(-50%, 50%); }

/* BOTTOM-LEFT Offset */
.peak-pos-bottom-left .ght-leader-line { top: 0; right: 0; width: calc(51px * var(--ght-scale, 1)); height: max(1.5px, calc(2.5px * var(--ght-scale, 1))); transform: rotate(-71deg); transform-origin: right top; }
.peak-pos-bottom-left .ght-hotspot     { top: calc(23px * var(--ght-scale, 1)); right: calc(30px * var(--ght-scale, 1)); transform: translate(50%, 50%); }

/* BOTTOM-RIGHT Offset */
.peak-pos-bottom-right .ght-leader-line { top: 0; left: 0; width: calc(38px * var(--ght-scale, 1)); height: max(1.5px, calc(2.5px * var(--ght-scale, 1))); transform: rotate(37deg); transform-origin: left top; }
.peak-pos-bottom-right .ght-hotspot     { top: calc(-6px * var(--ght-scale, 1)); left: calc(30px * var(--ght-scale, 1)); transform: translate(-50%, 50%); }

/* RIGHT Offset */
.peak-pos-right .ght-leader-line { top: 0; left: 0; width: calc(40px * var(--ght-scale, 1)); height: max(1.5px, calc(2.5px * var(--ght-scale, 1))); transform: translateY(-50%); }
.peak-pos-right .ght-hotspot     { top: 0; left: calc(23px * var(--ght-scale, 1)); transform: translate(50%, -50%); }

/* LEFT Offset */
.peak-pos-left .ght-leader-line { top: 0; right: 0; width: calc(23px * var(--ght-scale, 1)); height: max(1.5px, calc(2.5px * var(--ght-scale, 1))); transform: translateY(-50%); }
.peak-pos-left .ght-hotspot     { top: 0; right: calc(5px * var(--ght-scale, 1)); transform: translate(-50%, -50%); }

/* --- City Leader Lines --- */
.city-pos-bottom .ght-leader-line { top: 0; left: 0; width: max(1px, calc(2px * var(--ght-scale, 1))); height: calc(20px * var(--ght-scale, 1)); transform: translateX(-50%); }
.city-pos-bottom .ght-city-label  { top: calc(20px * var(--ght-scale, 1)); left: 0; transform: translateX(-50%); }

.city-pos-bottom-left .ght-leader-line { top: 0; right: 0; width: calc(24px * var(--ght-scale, 1)); height: max(1px, calc(2px * var(--ght-scale, 1))); transform: rotate(-35deg); transform-origin: right top; }
.city-pos-bottom-left .ght-city-label  { top: calc(18px * var(--ght-scale, 1)); right: calc(20px * var(--ght-scale, 1)); }

.city-pos-bottom-right .ght-leader-line { top: 0; left: 0; width: calc(24px * var(--ght-scale, 1)); height: max(1px, calc(2px * var(--ght-scale, 1))); transform: rotate(35deg); transform-origin: left top; }
.city-pos-bottom-right .ght-city-label  { top: calc(11px * var(--ght-scale, 1)); left: calc(20px * var(--ght-scale, 1)); }

.city-pos-left .ght-leader-line { top: 0; right: 0; width: calc(34px * var(--ght-scale, 1)); height: max(1px, calc(2px * var(--ght-scale, 1))); transform: rotate(153deg); }
.city-pos-left .ght-city-label  { top: calc(16px * var(--ght-scale, 1)); right: calc(24px * var(--ght-scale, 1)); transform: translateY(-50%); }

/* ============================================================
/* ============================================================
   Multi-select dropdown for booking panel (Modern & Polished)
   ============================================================ */
.multi-select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
}

.multi-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, #132238 0%, #0d1726 100%);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 44px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.multi-select-trigger:hover {
    border-color: rgba(47, 158, 232, 0.65);
    background: linear-gradient(180deg, #172a45 0%, #0f1c2e 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), 0 0 10px rgba(47, 158, 232, 0.15);
}

.multi-select-trigger.expanded {
    border-color: var(--blue);
    background: linear-gradient(180deg, #172a45 0%, #111f33 100%);
    box-shadow: 0 0 0 3px rgba(47, 158, 232, 0.22), 0 8px 22px rgba(0, 0, 0, 0.35);
}

.multi-select-trigger.expanded .ms-arrow {
    transform: rotate(180deg);
    color: var(--blue);
}

.ms-placeholder {
    color: var(--text-muted);
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.ms-placeholder.has-value {
    color: #f1f5f9;
    font-weight: 500;
}

.ms-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2f9ee8, #1d7ec2);
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 7px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(47, 158, 232, 0.35);
    flex-shrink: 0;
}

.ms-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    margin-left: 10px;
    flex-shrink: 0;
}

.multi-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    border: 1px solid rgba(47, 158, 232, 0.35);
    background: rgba(14, 25, 43, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 10px;
    max-height: 290px;
    overflow-y: auto;
    z-index: 120;
    display: none;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 6px 0;
}

.multi-select-options.open {
    display: block;
    animation: msDropdownFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes msDropdownFadeIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.99); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.multi-select-options::-webkit-scrollbar {
    width: 6px;
}
.multi-select-options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.15);
}
.multi-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}
.multi-select-options::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}

.ms-group-header {
    padding: 8px 14px 6px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.9px;
    color: #7dd3fc;
    text-transform: uppercase;
    background: rgba(47, 158, 232, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin: 6px 0 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ms-group-header:first-child {
    border-top: none;
    margin-top: 0;
}

.ms-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
    border-left: 3px solid transparent;
    transition: all 0.16s ease;
    user-select: none;
}

.ms-option:last-child {
    border-bottom: none;
}

.ms-option:hover {
    background: rgba(47, 158, 232, 0.1);
    color: #ffffff;
    border-left-color: rgba(47, 158, 232, 0.5);
}

.ms-option.checked,
.ms-option:has(input[type="checkbox"]:checked) {
    background: linear-gradient(90deg, rgba(47, 158, 232, 0.18) 0%, rgba(47, 158, 232, 0.04) 100%);
    color: #ffffff;
    border-left-color: var(--blue);
}

.ms-option-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

/* Custom styled modern checkbox */
.ms-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.ms-option:hover input[type="checkbox"] {
    border-color: var(--blue);
    background: rgba(47, 158, 232, 0.12);
}

.ms-option input[type="checkbox"]:checked {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 10px rgba(47, 158, 232, 0.45);
}

.ms-option input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5.5px;
    width: 4.5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ms-option-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ms-option-name {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}

.ms-city-pill {
    display: inline-flex;
    align-items: center;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 2px 7px;
    border-radius: 5px;
    margin-right: 8px;
    font-weight: 700;
    line-height: 1.2;
}

.ms-city-pill.kathmandu {
    background: rgba(56, 189, 248, 0.16);
    color: #7dd3fc;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.ms-city-pill.pokhara {
    background: rgba(52, 211, 153, 0.16);
    color: #6ee7b7;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.ms-option-price {
    font-size: 11.5px;
    font-weight: 700;
    color: #7dd3fc;
    white-space: nowrap;
    margin-left: 10px;
    padding: 3px 8px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 6px;
    letter-spacing: 0.2px;
}

.ms-option-price.included {
    color: #6ee7b7;
    background: rgba(52, 211, 153, 0.14);
    border-color: rgba(52, 211, 153, 0.3);
}

.multi-select-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.ms-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(47, 158, 232, 0.2), rgba(47, 158, 232, 0.08));
    border: 1px solid rgba(47, 158, 232, 0.38);
    border-radius: 16px;
    font-size: 11.5px;
    font-weight: 500;
    color: #93c5fd;
    white-space: nowrap;
    max-width: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.18s ease;
}

.ms-tag:hover {
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(47, 158, 232, 0.28), rgba(47, 158, 232, 0.14));
    box-shadow: 0 3px 8px rgba(47, 158, 232, 0.2);
}

.ms-tag-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ms-tag-remove {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.15s ease;
}

.ms-tag-remove:hover {
    color: #ffffff;
    background: #ef4444;
}

.date-error-hint {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 6px;
    display: none;
    font-weight: 600;
}

/* ---------------- Contact Us & Mission 2-Column Styles ---------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    max-width: 1160px;
    margin: 0 auto;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .form-row-2col {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
}

.mission-img-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    background: var(--navy-2);
}

.mission-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mission-img-card:hover img {
    transform: scale(1.02);
}

.mission-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

/* ---------------- Promo Code in Booking Panel ---------------- */
.promo-box-wrapper {
    margin-bottom: 18px;
}
.promo-input-group {
    display: flex;
    gap: 8px;
}
.promo-field {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    background: #0d1a2d;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.promo-field:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(47, 158, 232, 0.2);
}
.btn-apply-promo {
    padding: 10px 18px;
    background: rgba(47, 158, 232, 0.15);
    border: 1px solid var(--blue);
    border-radius: 6px;
    color: #38bdf8;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.btn-apply-promo:hover {
    background: var(--blue);
    color: #ffffff;
}
.promo-feedback {
    margin-top: 8px;
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
}
.promo-feedback.success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.promo-feedback.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.panel-promo-badge {
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-bottom: 6px;
    display: inline-block;
}

/* ==========================================================================
   NEPALI CALENDAR (BIKRAM SAMBAT) & HOLIDAY REMINDERS WIDGET (ADMIN)
   ========================================================================== */

.admin-page-header.admin-page-header-calendar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.admin-header-title-wrap {
    flex: 1;
    min-width: 260px;
}

.nepali-dash-widget-top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

/* Top Date Card Trigger */
.nepali-date-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(13, 27, 46, 0.95), rgba(9, 19, 34, 0.95));
    border: 1px solid rgba(47, 158, 232, 0.32);
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    user-select: none;
}

.nepali-date-card:hover {
    background: linear-gradient(135deg, rgba(18, 38, 66, 0.98), rgba(12, 26, 46, 0.98));
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47, 158, 232, 0.25);
}

.nepali-date-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(47, 158, 232, 0.2), rgba(30, 58, 138, 0.3));
    border: 1px solid rgba(47, 158, 232, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.nd-cal-icon {
    font-size: 18px;
}

.nd-nepal-flag {
    position: absolute;
    bottom: -4px;
    right: -4px;
    font-size: 12px;
}

.nepali-date-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.nepali-date-primary {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.bs-primary-np {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.bs-dayname-np {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
}

.nepali-date-secondary {
    font-size: 11.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1px;
}

.nd-dot {
    color: rgba(255, 255, 255, 0.25);
}

.nepali-date-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nd-expand-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nd-reminder-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0b1523;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
}

.nd-chevron {
    font-size: 11px;
    color: var(--blue);
    transition: transform 0.2s ease;
}

.nepali-date-card:hover .nd-chevron {
    transform: translateY(2px);
}

/* Festival Highlight Pill in Dashboard Header */
.nepali-top-festival-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.32);
    color: #fbbf24;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.nepali-top-festival-pill:hover {
    background: rgba(245, 158, 11, 0.18);
    border-color: #fbbf24;
    transform: translateY(-1px);
}

.nepali-top-festival-pill.is-today-pill {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.16), rgba(245, 158, 11, 0.16));
    border-color: #f59e0b;
    color: #fef08a;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

.ntf-sparkle {
    font-size: 13px;
}

.ntf-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ntf-status {
    font-size: 11px;
    padding: 1px 6px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.2);
    color: #fde68a;
}

.nepali-top-festival-pill.is-today-pill .ntf-status {
    background: #e11d48;
    color: #ffffff;
    font-weight: 700;
}

/* Modal Backdrop & Dialog */
.nepali-cal-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 8, 16, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 16px;
}

.nepali-cal-modal-backdrop.open {
    display: flex;
}

.nepali-cal-modal-card {
    background: #091322;
    border: 1px solid rgba(47, 158, 232, 0.38);
    border-radius: 14px;
    width: 100%;
    max-width: 960px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85);
    animation: nepaliModalPop 0.22s ease-out;
}

@keyframes nepaliModalPop {
    from { opacity: 0; transform: scale(0.96) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Modal Header */
.nepali-modal-header {
    padding: 16px 24px;
    background: #060e1a;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nepali-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nepali-modal-title .flag-emblem {
    font-size: 18px;
}

.nepali-modal-title .sub-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    background: rgba(47, 158, 232, 0.12);
    border: 1px solid rgba(47, 158, 232, 0.25);
    padding: 2px 8px;
    border-radius: 6px;
}

.nepali-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.15s ease;
}

.nepali-modal-close:hover {
    color: #ffffff;
}

/* Modal Tab Bar */
.nepali-modal-tabs {
    display: flex;
    background: #07111e;
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    gap: 8px;
}

.nepali-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
}

.nepali-tab-btn:hover {
    color: var(--text-light);
}

.nepali-tab-btn.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
}

.tab-badge {
    background: rgba(47, 158, 232, 0.15);
    color: var(--blue);
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
}

.nepali-tab-btn.active .tab-badge {
    background: var(--blue);
    color: #061420;
}

/* Modal Body */
.nepali-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

.nepali-tab-pane {
    display: none;
}

.nepali-tab-pane.active {
    display: block;
}

/* Calendar Month Nav Bar */
.bs-cal-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 22, 40, 0.85);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 18px;
    margin-bottom: 16px;
}

.bs-cal-nav-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
}

.bs-cal-nav-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #061420;
}

.bs-cal-title-wrap {
    text-align: center;
}

.bs-cal-title-np {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.bs-cal-title-en {
    font-size: 12px;
    color: var(--blue);
    margin-top: 1px;
}

.bs-cal-today-btn {
    background: rgba(47, 158, 232, 0.14);
    border: 1px solid rgba(47, 158, 232, 0.3);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.bs-cal-today-btn:hover {
    background: var(--blue);
    color: #061420;
}

/* Calendar Weekdays Row */
.bs-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 8px;
}

.bs-cal-weekday {
    text-align: center;
    padding: 8px 4px;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.bs-wd-np {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
}

.bs-wd-en {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 1px;
}

.bs-cal-weekday.is-sat-header .bs-wd-np,
.bs-cal-weekday.is-sat-header .bs-wd-en {
    color: #f87171;
}

/* Calendar Days Grid */
.bs-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.bs-day-cell {
    min-height: 66px;
    background: rgba(11, 23, 41, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.15s ease;
    cursor: default;
    position: relative;
}

.bs-day-cell.is-empty {
    background: transparent;
    border-color: transparent;
    cursor: default;
}

.bs-day-cell:not(.is-empty):hover {
    background: rgba(47, 158, 232, 0.1);
    border-color: rgba(47, 158, 232, 0.4);
    transform: translateY(-1px);
}

.bs-day-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.bs-day-np {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.bs-day-ad {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Today Day Cell Highlight */
.bs-day-cell.is-today {
    background: rgba(47, 158, 232, 0.18) !important;
    border: 2px solid #38bdf8 !important;
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.35);
}

.bs-day-cell.is-today .bs-day-np {
    color: #38bdf8;
}

/* Saturday Weekend Highlight */
.bs-day-cell.is-saturday .bs-day-np {
    color: #f87171;
}

.bs-day-cell.is-saturday {
    background: rgba(239, 68, 68, 0.04);
}

/* Festival Highlight Cell */
.bs-day-cell.has-festival {
    border-color: rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.06);
}

.bs-fest-tag {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 4px;
    padding: 2px 4px;
    margin-top: 4px;
    overflow: hidden;
}

.bs-fest-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f59e0b;
    flex-shrink: 0;
}

.bs-fest-title {
    font-size: 9.5px;
    font-weight: 600;
    color: #fbbf24;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1;
}

/* Month Festivals Summary */
.bs-month-festivals {
    margin-top: 18px;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
}

.bs-fest-list-heading {
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.bs-fest-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bs-fest-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
}

.bs-fest-chip.is-holiday-chip {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fde68a;
}

.bs-fest-en {
    color: var(--text-muted);
    font-size: 11px;
}

/* Reminders & Holidays Tab Layout */
.nepali-reminders-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

@media (max-width: 820px) {
    .nepali-reminders-grid {
        grid-template-columns: 1fr;
    }
}

.reminders-card-section {
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rcs-heading {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Upcoming Festival Cards in Tab */
.upcoming-fest-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 380px;
    overflow-y: auto;
}

.uf-card {
    background: rgba(14, 27, 46, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: border-color 0.15s ease;
}

.uf-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
}

.uf-card.is-today-card {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.08);
}

.uf-title-np {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.uf-title-en {
    font-size: 12px;
    color: var(--text-muted);
}

.uf-dates {
    font-size: 11.5px;
    color: var(--blue);
    margin-top: 3px;
}

.uf-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.uf-countdown-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.uf-countdown-tag.is-today-tag {
    background: #e11d48;
    color: #ffffff;
    border-color: #e11d48;
}

.uf-btn-quick-note {
    background: none;
    border: 1px dashed rgba(47, 158, 232, 0.35);
    color: var(--blue);
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.uf-btn-quick-note:hover {
    background: var(--blue);
    color: #061420;
    border-style: solid;
}

/* Admin Reminders Add Form */
.reminder-add-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(14, 27, 46, 0.65);
    border: 1px solid rgba(47, 158, 232, 0.25);
    border-radius: 8px;
    padding: 12px;
}

.raf-input {
    width: 100%;
    background: #07111e;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 13px;
    box-sizing: border-box;
}

.raf-input:focus {
    border-color: var(--blue);
    outline: none;
}

.raf-controls-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.raf-select {
    flex: 1;
    min-width: 130px;
    background: #07111e;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 10px;
    color: #ffffff;
    font-size: 12px;
}

.raf-select:focus {
    border-color: var(--blue);
    outline: none;
}

.raf-btn-submit {
    background: linear-gradient(135deg, #2f9ee8, #1d7ec2);
    border: none;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.raf-btn-submit:hover {
    filter: brightness(1.1);
}

/* Admin Reminders List */
.reminders-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
}

.reminder-item {
    background: rgba(14, 27, 46, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    padding: 10px 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: background 0.15s ease;
}

.reminder-item:hover {
    background: rgba(14, 27, 46, 0.9);
}

.reminder-item.is-completed {
    opacity: 0.55;
}

.reminder-item.is-completed .reminder-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

.reminder-checkbox {
    margin-top: 3px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--blue);
}

.reminder-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reminder-text {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.35;
}

.reminder-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.rem-tag-pill {
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 8px;
    background: rgba(47, 158, 232, 0.15);
    color: var(--blue);
    border: 1px solid rgba(47, 158, 232, 0.25);
}

.rem-priority-pill {
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 1px 5px;
    border-radius: 6px;
}

.rem-priority-pill.high {
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.rem-due-pill {
    font-size: 10.5px;
    color: var(--text-muted);
}

.reminder-delete-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 15px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: color 0.15s ease;
}

.reminder-delete-btn:hover {
    color: #ef4444;
}

/* Modal Footer */
.nepali-modal-footer {
    padding: 12px 24px;
    background: #060e1a;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.nepali-btn-close-footer {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.nepali-btn-close-footer:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* Responsive Scaling for Calendar */
@media (max-width: 900px) {
    .nepali-dash-widget-top {
        align-items: flex-start;
        width: 100%;
    }
    .nepali-date-card {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 650px) {
    .bs-day-cell {
        min-height: 52px;
        padding: 4px;
    }
    .bs-day-np {
        font-size: 14px;
    }
    .bs-day-ad {
        font-size: 9px;
    }
    .bs-fest-title {
        display: none; /* Icon dot only on small mobile */
    }
    .bs-fest-tag {
        padding: 2px;
        justify-content: center;
    }
    .bs-cal-nav-bar {
        padding: 8px 12px;
    }
    .bs-cal-title-np {
        font-size: 16px;
    }
    .nepali-modal-header,
    .nepali-modal-body,
    .nepali-modal-footer {
        padding: 14px 16px;
    }
}

/* ==========================================================================
   NEPALI <-> ENGLISH DATE CONVERTER STYLES
   ========================================================================== */
.nd-converter-quick-btn {
    background: rgba(47, 158, 232, 0.12);
    border: 1px solid rgba(47, 158, 232, 0.3);
    color: var(--blue);
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.nd-converter-quick-btn:hover {
    background: var(--blue);
    color: #061420;
    box-shadow: 0 0 10px rgba(47, 158, 232, 0.35);
}

.bs-converter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bs-conv-intro {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bs-conv-intro-text {
    font-size: 13px;
    color: var(--text-light);
}

.bs-conv-intro-sub {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.bs-converter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 840px) {
    .bs-converter-grid {
        grid-template-columns: 1fr;
    }
}

.bs-conv-card {
    background: rgba(14, 27, 46, 0.7);
    border: 1px solid rgba(47, 158, 232, 0.22);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bs-conv-card:hover {
    border-color: rgba(47, 158, 232, 0.45);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.bs-conv-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.bs-conv-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-conv-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.bs-conv-badge.badge-bs {
    background: rgba(245, 158, 11, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24;
}

.bs-conv-badge.badge-ad {
    background: rgba(56, 189, 248, 0.16);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #38bdf8;
}

.bs-conv-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bs-conv-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bs-conv-inputs-row {
    display: flex;
    gap: 10px;
}

.bs-conv-select,
.bs-conv-input {
    background: #07111e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 9px 12px;
    color: #ffffff;
    font-size: 13.5px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.15s ease;
}

.bs-conv-select:focus,
.bs-conv-input:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.bs-conv-result-card {
    background: rgba(7, 17, 30, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.bs-conv-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #38bdf8, #2563eb);
}

.bs-conv-result-card.is-bs-result::before {
    background: linear-gradient(to bottom, #f59e0b, #d97706);
}

.bs-conv-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bs-conv-result-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bs-conv-result-main {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
    line-height: 1.25;
}

.bs-conv-result-sub {
    font-size: 13px;
    color: #38bdf8;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs-conv-result-meta {
    font-size: 11.5px;
    color: var(--text-muted);
}

.bs-conv-holiday-pill {
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 4px;
}

.bs-conv-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bs-conv-copy-btn {
    background: rgba(47, 158, 232, 0.12);
    border: 1px solid rgba(47, 158, 232, 0.28);
    color: var(--blue);
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
}

.bs-conv-copy-btn:hover {
    background: var(--blue);
    color: #061420;
}

.bs-conv-copy-btn.copied {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

/* Quick Presets Section */
.bs-conv-presets-box {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bs-conv-presets-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bs-conv-presets-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bs-preset-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bs-preset-chip:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
    color: #38bdf8;
    transform: translateY(-1px);
}

/* ==========================================================================
   Regional Auto-Translation & Language Switcher Styles
   ========================================================================== */

/* Google Translate iframe/banner suppression */
body {
    top: 0px !important;
    position: static !important;
}

.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
iframe.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* 1. Regional Auto-Translate Alert Banner */
.sts-translate-banner {
    background: linear-gradient(90deg, #0b1f38 0%, #102a4c 50%, #0b1f38 100%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 9999;
    animation: stsBannerSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes stsBannerSlideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

.sts-translate-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.stb-icon {
    font-size: 19px;
    flex-shrink: 0;
}

.stb-text {
    color: #e2e8f0;
    font-size: 13.5px;
    line-height: 1.45;
    flex: 1;
    min-width: 240px;
}

.stb-text strong {
    color: #38bdf8;
    font-weight: 700;
}

.stb-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.stb-btn-revert {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 15px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stb-btn-revert:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.6);
    border-color: rgba(255, 255, 255, 0.45);
}

.stb-btn-dismiss {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 22px;
    line-height: 1;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.15s ease, background 0.15s ease;
}

.stb-btn-dismiss:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* 2. Header Language Picker (Compact, Sleek, Lined up next to BOOK NOW) */
.header-lang-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    flex-shrink: 0;
}

.header-lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #e2e8f0;
    height: 38px;
    padding: 0 10px;
    border-radius: var(--radius);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.18s ease;
    box-sizing: border-box;
}

.header-lang-btn:hover,
.header-lang-btn:focus-visible {
    background: rgba(56, 189, 248, 0.12);
    border-color: #38bdf8;
    color: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.header-lang-flag {
    font-size: 13px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.header-lang-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.header-lang-caret {
    transition: transform 0.2s ease;
    opacity: 0.7;
    flex-shrink: 0;
}

.header-lang-picker:focus-within .header-lang-caret {
    transform: rotate(180deg);
}

.header-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 250px;
    max-height: 380px;
    background: #0d1e34;
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 10px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: stsMenuFadeIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-lang-dropdown.open {
    display: flex;
}

@keyframes stsMenuFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-lang-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.2);
}

.header-lang-quick-en {
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.header-lang-quick-en:hover {
    background: #2563eb;
    color: #ffffff;
}

.header-lang-list {
    overflow-y: auto;
    max-height: 310px;
    padding: 6px 0;
}

.header-lang-list::-webkit-scrollbar {
    width: 6px;
}

.header-lang-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.sts-lang-dropdown-item {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 8px 14px;
    color: #cbd5e1;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.sts-lang-dropdown-item:hover {
    background: rgba(56, 189, 248, 0.14);
    color: #ffffff;
}

.sts-lang-dropdown-item.active {
    background: rgba(37, 99, 235, 0.25);
    color: #38bdf8;
    font-weight: 700;
}

.sts-lang-dropdown-item .flag {
    font-size: 16px;
    line-height: 1;
}

.sts-lang-dropdown-item .name {
    flex: 1;
}

.sts-lang-dropdown-item .native {
    font-size: 11.5px;
    opacity: 0.65;
    margin-left: auto;
}

/* 3. Floating Language Switcher Widget (Bottom Left) */
.sts-floating-lang-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
}

.sts-fl-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sts-fl-trigger-btn {
    background: rgba(11, 25, 44, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #e2e8f0;
    padding: 9px 15px;
    border-radius: 26px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.sts-fl-trigger-btn:hover {
    background: #0f2746;
    border-color: #38bdf8;
    color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(56, 189, 248, 0.28);
}

.sts-fl-reset-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 9px 16px;
    border-radius: 26px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    animation: stsPulseBtn 2s infinite ease-in-out;
}

@keyframes stsPulseBtn {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45); }
    50% { box-shadow: 0 6px 28px rgba(56, 189, 248, 0.7); }
}

.sts-fl-reset-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
}

.sts-fl-dropdown {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    max-height: 350px;
    background: #0d1e34;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.75);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10001;
    animation: stsMenuFadeUp 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.sts-fl-dropdown.open {
    display: flex;
}

@keyframes stsMenuFadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.sts-fl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.25);
}

.sts-fl-quick-en {
    background: rgba(37, 99, 235, 0.25);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.sts-fl-quick-en:hover {
    background: #2563eb;
    color: #ffffff;
}

.sts-fl-list {
    overflow-y: auto;
    max-height: 270px;
    padding: 6px 0;
}

.sts-fl-list::-webkit-scrollbar {
    width: 6px;
}

.sts-fl-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

/* Responsiveness for Header Language Switcher & Translation UI */
@media (max-width: 1024px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .header-lang-btn {
        height: 35px;
        padding: 0 8px;
        font-size: 11px;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .sts-translate-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 18px;
    }

    .stb-actions {
        width: 100%;
        justify-content: space-between;
    }

    .sts-floating-lang-widget {
        bottom: max(18px, env(safe-area-inset-bottom, 18px));
        left: max(16px, env(safe-area-inset-left, 16px));
        z-index: 9996;
        pointer-events: auto;
    }

    .sts-fl-bar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .sts-fl-trigger-btn {
        padding: 8px 12px;
        font-size: 11.5px;
        border-radius: 20px;
    }

    .sts-fl-reset-btn {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 20px;
    }

    .sts-fl-dropdown {
        bottom: calc(100% + 10px);
        left: 0;
        min-width: 220px;
        max-height: 280px;
        max-width: calc(100vw - 32px);
    }
}

@media (max-width: 420px) {
    .sts-floating-lang-widget {
        bottom: max(14px, env(safe-area-inset-bottom, 14px));
        left: max(12px, env(safe-area-inset-left, 12px));
    }

    .whatsapp-float {
        bottom: max(14px, env(safe-area-inset-bottom, 14px));
        right: max(12px, env(safe-area-inset-right, 12px));
        width: 48px;
        height: 48px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .header-actions {
        gap: 4px;
    }

    .header-actions .btn-primary {
        padding: 6px 8px;
        font-size: 10px;
    }

    .site-footer {
        padding: 24px 14px 110px;
    }
}

/* ------------------------------------------------------------ */
/* Accommodation Category Tabs & Category Badge System          */
/* ------------------------------------------------------------ */
.accom-category-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    background: rgba(14, 25, 43, 0.75);
    padding: 4px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.accom-cat-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 7px;
    color: var(--text-muted, #9fb0c3);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    user-select: none;
}
.accom-cat-btn:hover {
    color: #ffffff;
    background: rgba(47, 158, 232, 0.12);
}
.accom-cat-btn.active {
    background: linear-gradient(135deg, rgba(47, 158, 232, 0.28) 0%, rgba(14, 25, 43, 0.95) 100%);
    border-color: rgba(47, 158, 232, 0.6);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(47, 158, 232, 0.2);
}
.accom-cat-panel {
    display: none;
}
.accom-cat-panel.active,
.accom-cat-panel[style*="display: block"],
.accom-cat-panel[style*="display:block"] {
    display: block;
}
.ms-city-pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}
.ms-city-pill.kathmandu {
    background: rgba(47, 158, 232, 0.15);
    color: var(--blue, #2f9ee8);
    border: 1px solid rgba(47, 158, 232, 0.3);
}
.ms-city-pill.pokhara {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.ms-city-pill.trek {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* 2FA & OTP Verification Styles */
.totp-setup-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 680px) {
    .totp-setup-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}
#otp-input:focus,
#twofa-code-input:focus {
    border-color: #38bdf8 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25) !important;
}

/* ============================================================
   Great Himalaya Trail (GHT) Itineraries Section & Inquiry UI
   ============================================================ */
.ght-itineraries-section {
    padding: 30px 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-treks-section,
.ght-itineraries-section + .section {
    padding-top: 28px;
}

.ght-itinerary-intro {
    max-width: 880px;
    margin: 0 auto 32px;
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
}

/* Master Traverse Overview Banner */
.ght-master-banner {
    background: linear-gradient(135deg, rgba(14, 28, 48, 0.85) 0%, rgba(10, 19, 34, 0.95) 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 14px;
    padding: 22px 28px;
    margin-bottom: 38px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}
.ght-banner-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.ght-banner-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #38bdf8;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ght-banner-val {
    font-size: 15px;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.35;
}

/* GHT Phase Nav / Tabs */
.ght-phase-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ght-tab-btn {
    flex: 1;
    min-width: 220px;
    padding: 16px 20px;
    background: rgba(13, 25, 43, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 12px 0 0;
    color: var(--text-muted, #94a3b8);
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 3px solid transparent;
}
.ght-tab-btn:hover {
    background: rgba(22, 38, 63, 0.85);
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.35);
}
.ght-tab-btn.active {
    background: linear-gradient(180deg, rgba(26, 47, 78, 0.9) 0%, rgba(14, 27, 45, 0.95) 100%);
    border-color: rgba(56, 189, 248, 0.5);
    border-bottom: 3px solid #38bdf8;
    color: #ffffff;
    box-shadow: 0 -4px 16px rgba(56, 189, 248, 0.15);
}
.ght-tab-phase-num {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #38bdf8;
}
.ght-tab-phase-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}
.ght-tab-phase-days {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}
.ght-tab-btn.active .ght-tab-phase-days {
    color: #cbd5e1;
}

/* Phase Content Panels */
.ght-phase-panel {
    display: none;
    animation: ghtFadeIn 0.35s ease;
}
.ght-phase-panel.active {
    display: block;
}
@keyframes ghtFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Phase Hero Card */
.ght-phase-hero {
    background: linear-gradient(135deg, rgba(14, 25, 43, 0.92) 0%, rgba(9, 16, 28, 0.96) 100%);
    border: 1px solid rgba(56, 189, 248, 0.22);
    border-radius: 14px;
    padding: 32px 36px;
    margin-bottom: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
}
@media (max-width: 960px) {
    .ght-phase-hero {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
}
.ght-hero-eyebrow {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #38bdf8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ght-hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 0 14px;
    line-height: 1.25;
}
.ght-hero-desc {
    font-size: 14.5px;
    color: var(--text-muted, #94a3b8);
    line-height: 1.7;
    margin-bottom: 22px;
}
.ght-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.ght-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}
.ght-meta-chip.accent-pass {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.35);
    color: #f59e0b;
}

/* Call to Actions & Inquiry Buttons */
.ght-inquiry-box {
    background: rgba(11, 20, 34, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.ght-inquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    align-self: flex-start;
}
.ght-inquiry-title {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
}
.ght-inquiry-subtitle {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}
.ght-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-ght-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.22s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}
.btn-ght-email:hover {
    background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}
.btn-ght-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.22s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-ght-whatsapp:hover {
    background: linear-gradient(135deg, #22be5b 0%, #178941 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.42);
}
.btn-ght-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #e2e8f0 !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-ght-detail:hover {
    border-color: #38bdf8;
    color: #38bdf8 !important;
    background: rgba(56, 189, 248, 0.08);
}

/* Notice Box */
.ght-route-notice {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.6;
    color: #fde68a;
}
.ght-route-notice strong {
    color: #fbbf24;
}

/* Stage Headers */
.ght-stage-header {
    background: linear-gradient(90deg, rgba(20, 36, 59, 0.85) 0%, rgba(14, 25, 43, 0.6) 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 10px;
    padding: 14px 20px;
    margin: 28px 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.ght-stage-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ght-stage-title {
    font-size: 15px;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0;
}
.ght-stage-days-badge {
    font-size: 11.5px;
    font-weight: 700;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Itinerary Table / List */
.ght-itinerary-table {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(11, 20, 34, 0.6);
}
.ght-day-row {
    display: grid;
    grid-template-columns: 80px 75px 1.5fr 1.5fr;
    gap: 14px;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.18s ease;
    font-size: 13px;
}
.ght-day-row:last-child {
    border-bottom: none;
}
.ght-day-row:hover {
    background: rgba(56, 189, 248, 0.06);
}
@media (max-width: 768px) {
    .ght-day-row {
        grid-template-columns: 70px 65px 1fr;
        gap: 8px;
        padding: 10px 14px;
    }
    .ght-day-row .ght-day-target {
        grid-column: 1 / -1;
        padding-left: 4px;
    }
}

.ght-day-num {
    font-weight: 800;
    color: #f8fafc;
    font-family: monospace;
    font-size: 12.5px;
}

/* Mode Badges */
.mode-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
}
.mode-badge.mode-trek {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(14, 165, 233, 0.35);
}
.mode-badge.mode-jeep {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}
.mode-badge.mode-drive {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.35);
}
.mode-badge.mode-flight {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
    border: 1px solid rgba(6, 182, 212, 0.35);
}
.mode-badge.mode-rest {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.35);
}
.mode-badge.mode-admin {
    background: rgba(148, 163, 184, 0.15);
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.ght-day-origin {
    color: #cbd5e1;
    font-weight: 500;
}
.ght-day-target {
    color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.ght-pass-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    white-space: nowrap;
}
.ght-alt-pill {
    display: inline-flex;
    align-items: center;
    color: #94a3b8;
    font-size: 11.5px;
    font-weight: 600;
    white-space: nowrap;
}

/* Expedition Logistics & Permits Grid */
.ght-logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}
.ght-logistics-card {
    background: rgba(14, 25, 43, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}
.ght-logistics-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #38bdf8;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ght-logistics-card p {
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 12px;
}
.ght-permits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    margin-top: 10px;
}
.ght-permits-table th {
    text-align: left;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ght-permits-table td {
    padding: 9px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
}

/* Interactive Inquiry Modal */
.ght-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ght-modal-overlay.open {
    display: flex;
}
.ght-modal-box {
    background: #0f1d31;
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 16px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    animation: ghtModalPop 0.25s ease;
}
@keyframes ghtModalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.ght-modal-header {
    background: linear-gradient(90deg, #132742 0%, #0c1a2d 100%);
    padding: 20px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ght-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #f8fafc;
}
.ght-modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.15s ease;
}
.ght-modal-close:hover {
    color: #ffffff;
}
.ght-modal-body {
    padding: 26px;
}
.ght-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ght-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 560px) {
    .ght-form-row {
        grid-template-columns: 1fr;
    }
}
.ght-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.ght-form-group input,
.ght-form-group select,
.ght-form-group textarea {
    width: 100%;
    background: #091322;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #f8fafc;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}
.ght-form-group input:focus,
.ght-form-group select:focus,
.ght-form-group textarea:focus {
    border-color: #38bdf8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

/* Extended Detail Page Bespoke Inquiry Panel */
.detail-wrap.ght-detail-wrap {
    max-width: 1280px;
}
.detail-columns.ght-detail-columns {
    grid-template-columns: 1.32fr 1.08fr;
    gap: 32px;
}
@media (max-width: 1040px) {
    .detail-columns.ght-detail-columns {
        grid-template-columns: 1.2fr 1fr;
        gap: 24px;
    }
}
@media (max-width: 960px) {
    .detail-columns.ght-detail-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.bespoke-inquiry-panel {
    background: linear-gradient(180deg, #112035 0%, #0a1424 100%);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.bespoke-inquiry-panel .panel-eyebrow {
    font-size: 11px;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.bespoke-inquiry-panel .panel-price-title {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.bespoke-inquiry-panel .panel-quote-notice {
    font-size: 13px;
    color: var(--text-muted, #94a3b8);
    line-height: 1.55;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Expedition Specialist / Operations Desk Card */
.expedition-expert-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(56, 189, 248, 0.07);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 18px;
}
.expert-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 2px solid rgba(56, 189, 248, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
}
.expert-pulse-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #091322;
}
.expert-info {
    flex: 1;
    min-width: 0;
}
.expert-name {
    font-size: 13px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 2px;
}
.expert-role {
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.3;
}
.expert-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #38bdf8;
    font-weight: 600;
    margin-top: 2px;
}

/* Timeline / Consultation Steps */
.ght-timeline-box {
    background: rgba(14, 25, 43, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    margin: 20px 0 16px;
}
.ght-timeline-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #38bdf8;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ght-timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ght-step-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.45;
}
.ght-step-num {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.18);
    border: 1px solid rgba(56, 189, 248, 0.4);
    color: #38bdf8;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.ght-step-item strong {
    color: #f1f5f9;
}

/* Direct Phone / Hotline bar */
.ght-hotline-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(15, 28, 46, 0.7);
    border: 1px dashed rgba(56, 189, 248, 0.35);
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 14px;
    font-size: 12px;
    color: #94a3b8;
}
.ght-hotline-bar a {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.15s ease;
}
.ght-hotline-bar a:hover {
    color: #7dd3fc;
}

/* Checkbox Row in GHT Form */
.ght-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    color: #cbd5e1;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    margin-top: 4px;
}
.ght-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.18s ease;
}
.ght-checkbox-label input[type="checkbox"]:checked {
    background: #38bdf8;
    border-color: #38bdf8;
}
.ght-checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 4.5px;
    width: 4px;
    height: 8px;
    border: solid #091322;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* GHT Homepage Trek Cards Grid */
.ght-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0 40px;
}
@media (max-width: 992px) {
    .ght-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .ght-cards-grid {
        grid-template-columns: 1fr;
    }
}
.ght-trek-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #0f1c2e;
}
.ght-trek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
    border-color: rgba(56, 189, 248, 0.4);
}
.ght-card-top-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ght-card-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #94a3b8;
    margin: 10px 0 14px;
    flex: 1;
}
.ght-card-footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 16px 16px;
    background: rgba(10, 18, 30, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.btn-ght-quick-email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.25);
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-ght-quick-email:hover {
    background: rgba(56, 189, 248, 0.22);
    border-color: #38bdf8;
    color: #ffffff;
}
.btn-ght-quick-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #25d366;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-ght-quick-whatsapp:hover {
    background: rgba(37, 211, 102, 0.22);
    border-color: #25d366;
    color: #ffffff;
}

/* Master Traverse Consultation Callout */
.ght-consultation-banner {
    background: linear-gradient(135deg, rgba(20, 36, 59, 0.9) 0%, rgba(14, 25, 42, 0.9) 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.ght-consultation-content {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 280px;
}
.ght-consultation-icon {
    font-size: 34px;
    line-height: 1;
    flex-shrink: 0;
}
.ght-consultation-content h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 6px;
}
.ght-consultation-content p {
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.55;
}
.ght-consultation-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

