:root {
    --primary: #0a6faa;
    --primary-dark: #085a8a;
    --primary-light: #e8f4fc;
    --accent: #c8960c;
    --accent-light: #fdf5e0;
    --green: #1a9e5c;
    --wa-green: #25d366;
    --text: #1a1a2e;
    --text-mid: #4a4a6a;
    --text-light: #7a7a9a;
    --bg: #f7f9fc;
    --border: #e0e8f0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/*-----*/
.off-white a {
    color: rgba(255, 255, 255, 0.85);
}

/* --- NAVBAR --- */
.navbar-brand img {
    height: 68px;
    width: auto;
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 62px;
    }
}

.navbar {
    border-bottom: 3px solid var(--primary);
    background: var(--primary);
}

.btn-wa {
    background: var(--wa-green);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-wa:hover {
    background: #1da851;
    color: #fff;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Hero-specific larger CTAs */
.btn-hero-primary {
    background: #0d83cc;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 14px 32px;
    box-shadow: 0 4px 20px rgba(10, 111, 170, 0.45);
    transition: all 0.2s;
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(10, 111, 170, 0.5);
}

.btn-hero-wa {
    background: var(--wa-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s;
}

.btn-hero-wa:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-1px);
}

/* --- HERO --- */
.hero-section {
    position: relative;
    min-height: 480px;
    background: #050e1a;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

/* Slide 1 (Kedarnath) — temple centred, slightly pulled up so spire is visible */
.hero-slide:first-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    filter: blur(5px);
    transform: scale(1.05);
}

/* Slides 2 & 3 — desktop only, standard centre crop */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: blur(5px);
    transform: scale(1.05);
}

/* Layer 1 — vertical gradient: firm top for headline, open mid, grounded bottom */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.22) 45%,
            rgba(0, 0, 0, 0.55) 100%);
}

/* Layer 2 — left-side vignette so headline always pops against any image */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.10) 55%,
            rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 150, 12, 0.2);
    border: 1px solid rgba(200, 150, 12, 0.5);
    color: #ffd166;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-section h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
}

.hero-section h1 span {
    color: #ffd166;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.65;
}

.hero-price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 8px;
}

.hero-price-tag strong {
    font-size: 22px;
}

.hero-trust-line {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Hero Form */
.hero-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.hfc-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 18px 22px;
    color: #fff;
}

.hfc-price {
    font-size: 26px;
    font-weight: 900;
}

.hfc-price sub {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

.hfc-form {
    padding: 20px 22px 22px;
}

.hfc-form .form-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
}

.hfc-form .form-control,
.hfc-form .form-select {
    font-size: 13.5px;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
}

.hfc-form .form-control:focus,
.hfc-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(10, 111, 170, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(10, 111, 170, 0.3);
}

.btn-submit:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 111, 170, 0.35);
}

.btn-wa-full {
    width: 100%;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    background: var(--wa-green);
    color: #fff;
    border: none;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-wa-full:hover {
    background: #1da851;
    color: #fff;
}

/* --- HIGHLIGHTS STRIP --- */
.highlights-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.hl-item {
    text-align: center;
    padding: 14px 8px;
}

.hl-item .bi {
    font-size: 22px;
    color: var(--primary);
}

.hl-item .label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text);
    margin-top: 4px;
}

/* --- SECTION STYLES --- */
.section-block {
    padding: 56px 0;
}

.section-block.bg-white {
    background: #fff;
}

.sec-heading {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.sec-heading-sm {
    font-size: 22px;
}

.sec-intro {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 24px;
}

.sec-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 14px;
}

/* --- WHY CARDS --- */
.why-card {
    border: none;
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: transform 0.2s;
    background: #fff;
    height: 100%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.why-card .bi {
    font-size: 30px;
    color: var(--primary);
}

.why-card h4 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 10px 0 6px;
}

.why-card p {
    font-size: 12.5px;
    color: var(--text-mid);
    line-height: 1.55;
    margin: 0;
}

/* --- ITINERARY --- */
.itin-accordion .accordion-button {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    gap: 10px;
}

.itin-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: none;
}

.itin-accordion .accordion-button:focus {
    box-shadow: none;
}

.day-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.itin-accordion .accordion-body {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.7;
    background: var(--bg);
    padding: 14px 16px;
}

.itin-accordion .accordion-body ul {
    padding-left: 18px;
}

.itin-accordion .accordion-body li {
    margin-bottom: 4px;
}

.hotel-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-top: 8px;
}

.itin-note {
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: #5d4037;
    margin-top: 10px;
}

/* --- INCLUSIONS --- */
.incl-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
    padding: 6px 0;
}

.incl-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: #e8f5e9;
    color: var(--green);
    margin-top: 1px;
}

/* --- HOTELS --- */
.hotel-card {
    border: none;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    background: #fff;
    height: 100%;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.hotel-card .location {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hotel-card .name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin: 4px 0;
}

.hotel-card .type {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* --- NOTES --- */
.note-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.6;
    padding: 6px 0;
}

.note-item .bi {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- FAQ --- */
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--text);
    padding: 16px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.7;
}

/* --- FINAL CTA --- */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
}

/* --- FORM SECTION --- */
.enquiry-form-section {
    background: #fff;
}

.form-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-card .form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}

.form-card .form-control,
.form-card .form-select {
    padding: 11px 14px;
    font-size: 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
}

.form-card .form-control:focus,
.form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.15rem rgba(10, 111, 170, 0.15);
}

/* --- TESTIMONIALS STRIP --- */
.past-tours-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.past-tours-wrap::before,
.past-tours-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.past-tours-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.past-tours-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.past-tours-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: scrollTours 45s linear infinite;
}

.past-tours-track:hover {
    animation-play-state: paused;
}

.past-tour-img {
    height: 160px;
    width: 220px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

@keyframes scrollTours {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 180px 180px;
    gap: 8px;
    border-radius: 14px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #e0e8f0;
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 14px;
    z-index: 2;
}

/* --- STICKY MOBILE CTA --- */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #fff;
    border-top: 2px solid var(--border);
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-mobile-cta .price-text {
    font-size: 13px;
    color: var(--text-mid);
}

.sticky-mobile-cta .price-text strong {
    color: var(--primary);
    font-size: 17px;
}

/* --- WA FLOAT --- */
.wa-float {
    position: fixed;
    bottom: 84px;
    right: 16px;
    z-index: 1060;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--wa-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 3px 14px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s;
}

.wa-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* --- FOOTER --- */
.site-footer {
    background: #0d1b2a;
    color: rgba(255, 255, 255, 0.75);
}

.site-footer h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.65);
}

.site-footer a:hover {
    color: var(--primary);
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.footer-logo small {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* --- RESPONSIVE --- */
@media (max-width: 991.98px) {

    /* Hero: hide form, strip content */
    .hero-section {
        min-height: auto;
    }

    .hero-form-card {
        display: none !important;
    }

    .hero-bullets-desktop {
        display: none !important;
    }

    .hero-trust-line {
        display: none !important;
    }

    .hero-section .container {
        padding-top: 24px !important;
        padding-bottom: 28px !important;
    }

    .hero-section h1 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 8px !important;
    }

    .hero-sub {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-price-tag {
        font-size: 14px;
        padding: 7px 16px;
    }

    .hero-price-tag strong {
        font-size: 19px;
    }

    /* Hero CTAs: full-width stacked, generous size */
    .hero-cta-wrap {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .hero-cta-wrap .btn {
        width: 100% !important;
        justify-content: center;
        font-size: 16px !important;
        padding: 14px 20px !important;
    }

    /* Disable slider on mobile — show only first image */
    .hero-slide {
        display: none !important;
    }

    .hero-slide.active {
        display: block !important;
    }

    /* Mobile: Kedarnath slide locked, stronger blur + overlay for readability */
    .hero-slide img,
    .hero-slide:first-child img {
        filter: blur(7px);
        transform: scale(1.06);
        object-position: 50% 25%;
        /* pull up on mobile so temple spire stays in view */
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.68) 0%,
                rgba(0, 0, 0, 0.30) 45%,
                rgba(0, 0, 0, 0.60) 100%);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 140px 140px 140px;
    }

    .gallery-item:first-child {
        grid-row: span 1;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 120px 120px 120px;
    }

    .past-tour-img {
        height: 120px;
        width: 170px;
    }

    body {
        padding-bottom: 70px;
    }

    .section-block {
        padding: 40px 0;
    }

    .why-card {
        padding: 18px 14px;
    }

    .why-card .bi {
        font-size: 26px;
    }

    .why-card h4 {
        font-size: 13.5px;
    }

    .why-card p {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .wa-float {
        bottom: 28px;
        right: 28px;
    }

    .sticky-mobile-cta {
        display: none !important;
    }
}