:root {
    --green-dark: #1a3a2a;
    --green-mid: #2d6a4f;
    --green-light: #40916c;
    --gold: #f4a623;
    --gold-light: #ffd166;
    --navy: #0d2137;
    --navy-mid: #1a3a5c;
    --cream: #fdf8f0;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    --radius: 16px;

    --font: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
}

/* ===================== DESKTOP NAVBAR ===================== */
.desktop-navbar {
    background: rgba(13, 33, 55, 0.97);
    backdrop-filter: blur(12px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.desktop-navbar .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white) !important;
    padding: 12px 0;
}

.desktop-navbar .navbar-brand span {
    color: var(--gold);
}

.desktop-navbar .brand-tagline {
    font-size: 0.65rem;
    color: #aaa;
    display: block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.desktop-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 1.4rem 1rem !important;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

.desktop-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
    border-radius: 2px 2px 0 0;
}

.desktop-navbar .nav-link:hover {
    color: var(--gold) !important;
}

.desktop-navbar .nav-link:hover::after {
    left: 10%;
    right: 10%;
}

.desktop-navbar .btn-book {
    background: linear-gradient(135deg, var(--gold), #e8940a);
    color: var(--navy) !important;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 22px !important;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 166, 35, 0.4);
    transition: all 0.3s;
}

.desktop-navbar .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 166, 35, 0.5);
}

.desktop-navbar .btn-book::after {
    display: none;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(13, 33, 55, 0.75) 0%, rgba(26, 58, 42, 0.65) 100%),
        url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title .gold {
    color: var(--gold-light);
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 12px 0 28px;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
    animation: fadeInUp 0.8s 0.6s ease both;
}

.btn-primary-gold {
    background: linear-gradient(135deg, var(--gold), #e8940a);
    color: var(--navy);
    font-weight: 700;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(244, 166, 35, 0.5);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 166, 35, 0.6);
    color: var(--navy);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
}

/* Hero Stats */
.hero-stats {
    animation: fadeInUp 0.8s 0.8s ease both;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
    display: block;
}

.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Hero right photo stack */
.photo-stack {
    position: relative;
    height: 420px;
}

.photo-card {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 20px 10px 8px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pc1 {
    width: 180px;
    height: 240px;
    top: 20px;
    left: 20px;
    transform: rotate(-5deg);
    animation: floatCard1 4s ease-in-out infinite;
}

.pc2 {
    width: 160px;
    height: 210px;
    top: 0;
    right: 30px;
    transform: rotate(4deg);
    animation: floatCard2 4s 1s ease-in-out infinite;
}

.pc3 {
    width: 150px;
    height: 190px;
    bottom: 20px;
    left: 60px;
    transform: rotate(2deg);
    animation: floatCard1 4s 2s ease-in-out infinite;
}

.pc4 {
    width: 140px;
    height: 180px;
    bottom: 10px;
    right: 50px;
    transform: rotate(-3deg);
    animation: floatCard2 4s 0.5s ease-in-out infinite;
}

.photo-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0)
    }

    50% {
        transform: rotate(-5deg) translateY(-10px)
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: rotate(4deg) translateY(0)
    }

    50% {
        transform: rotate(4deg) translateY(-12px)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===================== SERVICES BAR ===================== */
.services-bar {
    background: var(--navy);
    padding: 0;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.service-tab:hover,
.service-tab.active {
    background: rgba(244, 166, 35, 0.15);
    color: var(--gold);
}

.service-tab i {
    font-size: 1.2rem;
    color: var(--gold);
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(244, 166, 35, 0.12);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(244, 166, 35, 0.3);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
}

.section-title span {
    color: var(--green-mid);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ===================== HOW WE PLAN ===================== */
.how-section {
    background: var(--cream);
    padding: 90px 0;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #e8940a);
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(244, 166, 35, 0.4);
}

.step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--gold);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-arrow {
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================== DESTINATIONS ===================== */
.dest-section {
    padding: 90px 0;
    background: var(--white);
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.dest-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}

.dest-card:hover img {
    transform: scale(1.08);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 33, 55, 0.92));
    padding: 40px 16px 18px;
    color: white;
}

.dest-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.dest-tag {
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.dest-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================== TREKS ===================== */
.treks-section {
    background: var(--navy);
    padding: 90px 0;
}

.trek-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;

}

.trek-card:hover {
    background: rgba(244, 166, 35, 0.1);
    border-color: var(--gold);
    transform: translateX(6px);
}

.trek-name {
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.trek-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

.trek-diff {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diff-easy {
    background: rgba(64, 145, 108, 0.25);
    color: #52b788;
}

.diff-mod {
    background: rgba(244, 166, 35, 0.25);
    color: var(--gold-light);
}

.diff-hard {
    background: rgba(220, 53, 69, 0.25);
    color: #ff6b6b;
}

/* ===================== WHY US ===================== */
.why-section {
    padding: 90px 0;
    background: var(--cream);
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(26, 58, 42, 0.3);
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 166, 35, 0.12), transparent 70%);
    border-radius: 50%;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
}

.cta-title .italic {
    font-style: italic;
    color: var(--gold-light);
}

.contact-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s;
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
}

.contact-box .c-icon {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-box .c-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-box .c-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: #0a1a2e;
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
}

.footer-brand span {
    color: var(--gold);
}

.footer-tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    color: var(--gold-light);
    margin-top: 4px;
}

.footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    margin-right: 8px;
}

.social-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ===================== MOBILE APP UI ===================== */
@media (max-width: 767.98px) {

    /* Hide desktop elements */
    .desktop-navbar,
    .site-footer,
    .services-bar {
        display: none !important;
    }

    /* Android Status Bar */
    body {
        padding-bottom: 65px;
        background: var(--cream);
    }

    /* Mobile Top App Bar */
    .mobile-appbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--navy);
        padding: 0;
    }

    .mobile-status-bar {
        background: rgba(0, 0, 0, 0.4);
        padding: 4px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-status-bar span {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

    .mobile-status-icons {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .mobile-status-icons i {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px 12px;
    }

    .mobile-brand {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 900;
        color: var(--white);
    }

    .mobile-brand span {
        color: var(--gold);
    }

    .mobile-topbar-actions {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .mobile-icon-btn {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .mobile-notif-dot {
        position: absolute;
        top: -2px;
        right: -2px;
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        border: 1px solid var(--navy);
    }

    /* Page content top padding */
    .page-content {
        /* padding-top: 75px; */
        padding-top: 52px;
    }

    /* Hero — Mobile Card Style */
    .hero-section {
        min-height: auto;
        padding: 0 0 0 0;
        background: linear-gradient(160deg, rgba(13, 33, 55, 0.85) 0%, rgba(26, 58, 42, 0.75) 100%),
            url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=800&q=80') center/cover;
        border-radius: 0 0 28px 28px;
    }

    .hero-section::before {
        display: none;
    }

    .hero-mobile-inner {
        /* padding: 24px 20px 32px; */
        padding: 90px 20px 32px;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 8px 0 18px;
    }

    .hero-actions .btn-primary-gold {
        padding: 11px 26px;
        font-size: 0.85rem;
    }

    .hero-actions .btn-outline-white {
        padding: 9px 22px;
        font-size: 0.85rem;
    }

    .photo-stack {
        display: none;
    }

    .hero-stats .stat-num {
        font-size: 1.4rem;
    }

    .hero-stats .stat-label {
        font-size: 0.62rem;
    }

    .hero-stats {
        padding: 16px 0 0;
    }

    /* Quick Search Pill */
    .quick-search {
        margin: 16px;
        background: var(--white);
        border-radius: 50px;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
    }

    .quick-search i {
        color: var(--green-mid);
        font-size: 1rem;
    }

    .quick-search input {
        border: none;
        outline: none;
        flex: 1;
        font-size: 0.85rem;
        font-family: 'Poppins', sans-serif;
        color: var(--text-dark);
        background: transparent;
    }

    .quick-search-btn {
        background: var(--gold);
        color: var(--navy);
        border: none;
        border-radius: 30px;
        padding: 6px 16px;
        font-size: 0.78rem;
        font-weight: 700;
        cursor: pointer;
    }

    /* Services Chips Scroll */
    .services-chips-wrap {
        padding: 4px 16px 8px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .services-chips-wrap::-webkit-scrollbar {
        display: none;
    }

    .service-chip {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: var(--white);
        border: 1.5px solid #e8e8e8;
        border-radius: 50px;
        padding: 8px 16px;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--text-dark);
        margin-right: 10px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
    }

    .service-chip i {
        color: var(--green-mid);
        font-size: 0.9rem;
    }

    .service-chip.active,
    .service-chip:hover {
        background: var(--navy);
        color: var(--white);
        border-color: var(--navy);
    }

    .service-chip.active i,
    .service-chip:hover i {
        color: var(--gold);
    }

    /* Section spacing */
    .how-section,
    .dest-section,
    .treks-section,
    .why-section {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    /* Horizontal scroll cards */
    .scroll-row {
        overflow-x: auto;
        white-space: nowrap;
        padding: 4px 16px 8px;
        scrollbar-width: none;
        display: block;
    }

    .scroll-row::-webkit-scrollbar {
        display: none;
    }

    .scroll-row .scroll-item {
        display: inline-block;
        white-space: normal;
        vertical-align: top;
    }

    /* Dest cards mobile */
    .scroll-row .dest-card {
        width: 170px;
        margin-right: 12px;
    }

    .dest-card img {
        height: 160px;
    }

    .dest-name {
        font-size: 0.9rem;
    }

    /* Step cards mobile */
    .scroll-row .step-card {
        width: 220px;
        margin-right: 12px;
        padding: 24px 18px;
    }

    /* Trek cards mobile */
    .treks-section {
        background: var(--navy);
    }

    .treks-section .section-title {
        color: var(--navy);
    }

    .treks-section .section-tag {
        background: rgba(26, 58, 42, 0.1);
        color: var(--green-mid);
        border-color: rgba(26, 58, 42, 0.2);
    }

    /* Why cards mobile */
    .scroll-row .why-card {
        width: 180px;
        margin-right: 12px;
        padding: 24px 16px;
    }

    /* CTA section mobile */
    .cta-section {
        padding: 36px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .contact-box {
        padding: 16px 18px;
    }

    .contact-box .c-value {
        font-size: 0.88rem;
    }

    /* Bottom Nav */
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
        border-top: 1px solid #eee;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        padding: 4px 0 6px;
    }

    .bnav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 6px 4px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        color: #aaa;
        font-size: 0.58rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        position: relative;
    }

    .bnav-item i {
        font-size: 1.3rem;
        margin-bottom: 3px;
        display: block;
    }

    .bnav-item.active {
        color: var(--green-mid);
    }

    .bnav-item.active i {
        color: var(--green-mid);
    }

    .bnav-center-btn {
        width: 54px;
        height: 54px;
        background: linear-gradient(135deg, var(--gold), #e8940a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -20px;
        box-shadow: 0 6px 20px rgba(244, 166, 35, 0.5);
        color: var(--navy) !important;
    }

    .bnav-center-btn i {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
        color: var(--navy) !important;
    }

    .bnav-badge {
        position: absolute;
        top: 2px;
        right: 14px;
        width: 16px;
        height: 16px;
        background: #e74c3c;
        color: white;
        font-size: 0.55rem;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile section headings */
    .mobile-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        margin-bottom: 14px;
    }

    .mobile-section-head h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        font-weight: 900;
        color: var(--navy);
    }

    .mobile-see-all {
        font-size: 0.78rem;
        color: var(--green-mid);
        font-weight: 600;
        text-decoration: none;
    }

    /* Promo Banner Mobile */
    .promo-banner-mobile {
        margin: 8px 16px;
        background: linear-gradient(135deg, var(--navy), var(--green-dark));
        border-radius: 20px;
        padding: 20px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .promo-banner-mobile::after {
        content: '🏔️';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        opacity: 0.25;
    }

    .promo-banner-mobile h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-weight: 900;
    }

    .promo-banner-mobile p {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.75);
        margin: 4px 0 12px;
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 768px) {

    .mobile-appbar,
    .mobile-bottom-nav,
    .quick-search,
    .services-chips-wrap,
    .mobile-section-head,
    .promo-banner-mobile,
    .page-content .service-chip .active {
        display: none !important;
    }

    .scroll-row {
        display: flex !important;
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        white-space: normal !important;
        padding: 0 !important;
    }

    .scroll-row .scroll-item {
        display: block !important;
    }
}


.sta-desc-para {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.8
}

.hero-para {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.7;
    animation: fadeInUp .8s .5s ease both
}

.gold-clr {
    color: var(--gold)
}

.blue-clr-bg {
    background-color: #1a3a5c;
}

.footer-description {
    font-size: 0.84rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.rent-service-card:hover {
    background-color: #1a3a5c;
}

.promo-banner-mobile {
    display: none;
    font-size: 0.65rem;
    color: #fff;
    display: inline-block;
    padding: 20px 15px;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 8px;

}