/* =========================================================
   MANALI TOUR PAGE
   PAGE-SCOPED CSS
========================================================= */


/* =========================================================
   RESET
========================================================= */

.manali-page,
.manali-page *,
.manali-page *::before,
.manali-page *::after {
    box-sizing: border-box;
}

.manali-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Poppins", Arial, sans-serif;
    background: #f5f7fa;
    color: #172033;
}

.manali-page a {
    text-decoration: none;
}

.manali-page button,
.manali-page input,
.manali-page textarea,
.manali-page select {
    font-family: inherit;
}


/* =========================================================
   HERO
========================================================= */

.manali-page .package-hero {
    width: 100%;
    height: 430px;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.manali-page .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.manali-page .hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 16, 32, 0.92) 0%,
            rgba(5, 16, 32, 0.52) 45%,
            rgba(5, 16, 32, 0.08) 100%
        );
}

.manali-page .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: auto;
    padding: 50px 30px;
    color: #ffffff;
}

.manali-page .hero-location {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.4px;
}

.manali-page .hero-content h1 {
    margin: 0 0 15px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 800;
}

.manali-page .hero-content p {
    max-width: 680px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.manali-page .hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.manali-page .hero-info span {
    padding: 9px 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    font-size: 13px;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.manali-page .package-container {
    width: 100%;
    max-width: 1250px;
    margin: 50px auto;
    padding: 0 25px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
}

.manali-page .package-main {
    min-width: 0;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.manali-page .content-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 25px;
    border: 1px solid #e9edf2;
    box-shadow: 0 8px 30px rgba(20, 35, 55, 0.05);
}

.manali-page .section-heading {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.manali-page .section-heading > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;
    background: #0b5c8e;
    color: #ffffff;

    font-weight: 700;
    font-size: 13px;
}

.manali-page .section-heading small {
    display: block;
    color: #0b76b7;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.manali-page .section-heading h2 {
    margin: 4px 0 0;
    font-size: 27px;
    color: #172033;
}

.manali-page .overview {
    margin: 0;
    color: #657083;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.manali-page .highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.manali-page .highlight-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;

    background: #f7fafc;
    border: 1px solid #edf1f5;
    border-radius: 14px;

    min-width: 0;
}

.manali-page .highlight-box .icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 12px;

    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.manali-page .highlight-box small {
    display: block;
    color: #8791a1;
    font-size: 11px;
    margin-bottom: 3px;
}

.manali-page .highlight-box strong {
    display: block;
    color: #263348;
    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   TIMELINE
========================================================= */

.manali-page .timeline {
    position: relative;
}

.manali-page .timeline::before {
    content: "";
    position: absolute;

    left: 22px;
    top: 15px;
    bottom: 15px;

    width: 2px;
    background: #dce7ef;
}

.manali-page .timeline-item {
    position: relative;

    display: flex;
    gap: 20px;

    margin-bottom: 25px;
}

.manali-page .timeline-item:last-child {
    margin-bottom: 0;
}

.manali-page .timeline-number {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #0b5c8e;
    color: #ffffff;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;

    position: relative;
    z-index: 2;
}

.manali-page .timeline-content {
    padding: 4px 0;
    min-width: 0;
}

.manali-page .day-label {
    font-size: 11px;
    color: #0b76b7;
    font-weight: 700;
    text-transform: uppercase;
}

.manali-page .timeline-content h3 {
    margin: 4px 0 8px;
    font-size: 19px;
}

.manali-page .timeline-content p {
    margin: 0;
    color: #687486;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PLACES
========================================================= */

.manali-page .places-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.manali-page .place-card {
    padding: 22px;
    border-radius: 15px;

    background: #f7fafc;
    border: 1px solid #edf1f5;

    transition: 0.3s ease;
}

.manali-page .place-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.manali-page .place-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.manali-page .place-card h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.manali-page .place-card p {
    margin: 0;
    color: #707b8b;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   HOTEL
========================================================= */

.manali-page .hotel-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.manali-page .hotel-details > div {
    padding: 22px;
    background: #f7fafc;
    border-radius: 14px;
}

.manali-page .hotel-details h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.manali-page .hotel-details p {
    margin: 0;
    color: #6d7786;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   INCLUSION
========================================================= */

.manali-page .include-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.manali-page .include-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.manali-page .include-column li {
    position: relative;
    padding: 9px 0 9px 25px;

    font-size: 14px;
    color: #687486;

    border-bottom: 1px solid #edf0f3;
}

.manali-page .include-column li::before {
    content: "✓";

    position: absolute;
    left: 0;

    font-weight: 700;
    color: #159b6c;
}

.manali-page .include-title,
.manali-page .exclude-title {
    margin: 0 0 15px;
    font-size: 17px;
}

.manali-page .exclude-title {
    color: #d35454;
}

.manali-page .exclude-title + ul li::before {
    content: "×";
    color: #d35454;
}


/* =========================================================
   TERMS
========================================================= */

.manali-page .terms p {
    margin: 0 0 10px;

    color: #687486;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SIDEBAR
========================================================= */

.manali-page .package-sidebar {
    position: relative;
}

.manali-page .booking-card {
    position: sticky;
    top: 25px;

    background: #102b43;
    color: #ffffff;

    border-radius: 20px;
    padding: 30px;

    box-shadow: 0 15px 40px rgba(10, 35, 60, 0.18);
}

.manali-page .price-label {
    color: #aebdca;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.manali-page .price {
    font-size: 38px;
    font-weight: 800;
    margin: 5px 0 8px;
    line-height: 1.2;
}

.manali-page .price span {
    font-size: 12px;
    font-weight: 400;
    color: #b5c1cb;
}

.manali-page .price-note {
    margin: 0 0 25px;

    color: #b7c4cf;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   SIDEBAR BUTTONS
========================================================= */

.manali-page .primary-btn,
.manali-page .call-btn,
.manali-page .whatsapp-btn {
    width: 100%;
    min-height: 48px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    padding: 13px 16px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    margin-top: 10px;

    text-align: center;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;

    box-sizing: border-box;

    white-space: normal;
    overflow: hidden;
}

.manali-page .primary-btn span,
.manali-page .call-btn span,
.manali-page .whatsapp-btn span {
    display: inline-block;
}

.manali-page .primary-btn b {
    font-size: 17px;
}

.manali-page .btn-icon {
    width: 22px;
    height: 22px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    flex: 0 0 22px;
}

.manali-page .primary-btn {
    background: #e2ad35;
    color: #152437;
}

.manali-page .primary-btn:hover {
    background: #f0bf4b;
    transform: translateY(-2px);
}

.manali-page .call-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
}

.manali-page .call-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.manali-page .whatsapp-btn {
    background: #159b68;
    color: #ffffff;
    border: 1px solid #159b68;
}

.manali-page .whatsapp-btn:hover {
    background: #128b5c;
    border-color: #128b5c;
    transform: translateY(-2px);
}


/* =========================================================
   QUICK CARD
========================================================= */

.manali-page .quick-card {
    margin-top: 20px;

    background: #ffffff;
    border: 1px solid #e7ebef;
    border-radius: 18px;

    padding: 25px;
}

.manali-page .quick-card h3 {
    margin: 0 0 15px;
    font-size: 19px;
}

.manali-page .quick-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 0;

    border-bottom: 1px solid #edf0f3;
}

.manali-page .quick-item:last-child {
    border-bottom: 0;
}

.manali-page .quick-item span {
    color: #159b68;
    font-weight: 700;
}

.manali-page .quick-item p {
    margin: 0;
    font-size: 13px;
    color: #697485;
}


/* =========================================================
   ENQUIRY
========================================================= */

.manali-page .enquiry-section {
    width: 100%;
    background: #102b43;
    padding: 70px 25px;
}

.manali-page .enquiry-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.manali-page .enquiry-text > span {
    color: #e2ad35;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.manali-page .enquiry-text h2 {
    margin: 12px 0 18px;

    color: #ffffff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.manali-page .enquiry-text h2 strong {
    color: #e2ad35;
}

.manali-page .enquiry-text > p {
    max-width: 500px;

    margin: 0;

    color: #b7c4cf;
    line-height: 1.8;
    font-size: 14px;
}


/* =========================================================
   CONTACT MINI
========================================================= */

.manali-page .contact-mini {
    margin-top: 30px;
}

.manali-page .contact-mini > div {
    display: flex;
    gap: 12px;
    align-items: center;

    margin-bottom: 18px;
}

.manali-page .contact-mini > div > span {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.manali-page .contact-mini small {
    display: block;
    color: #899baa;
    font-size: 11px;
}

.manali-page .contact-mini strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
    margin-top: 2px;
}


/* =========================================================
   FORM
========================================================= */

.manali-page .enquiry-form {
    width: 100%;

    background: #ffffff;

    padding: 32px;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.manali-page .enquiry-form h3 {
    margin: 0 0 25px;
    font-size: 24px;
}

.manali-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.manali-page .form-group {
    margin-bottom: 17px;
}

.manali-page .form-group label {
    display: block;

    font-size: 12px;
    font-weight: 600;

    color: #4f5c6d;

    margin-bottom: 7px;
}

.manali-page .form-group input,
.manali-page .form-group textarea,
.manali-page .form-group select {
    width: 100%;
    max-width: 100%;

    border: 1px solid #dce2e8;
    border-radius: 9px;

    outline: none;

    padding: 12px 13px;

    font-size: 13px;

    color: #263348;
    background: #ffffff;

    transition: 0.25s;

    box-sizing: border-box;
}

.manali-page .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.manali-page .form-group input:focus,
.manali-page .form-group textarea:focus,
.manali-page .form-group select:focus {
    border-color: #0b76b7;

    box-shadow:
        0 0 0 3px rgba(11, 118, 183, 0.08);
}

.manali-page .submit-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;

    cursor: pointer;

    padding: 14px;

    border-radius: 10px;

    background: #e2ad35;
    color: #172033;

    font-weight: 700;

    transition: 0.3s;
}

.manali-page .submit-btn b {
    font-size: 17px;
}

.manali-page .submit-btn:hover {
    background: #f0bf4b;
    transform: translateY(-2px);
}


/* =========================================================
   MANALI PAGE OWN FOOTER
   IMPORTANT:
   This does NOT target common footer.php
========================================================= */

.manali-page .manali-page-footer {
    width: 100%;
    padding: 22px;

    text-align: center;

    background: #091b2a;
    color: #9ba9b5;

    font-size: 12px;
}

.manali-page .manali-page-footer p {
    margin: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .manali-page .package-container {
        grid-template-columns: 1fr;
    }

    .manali-page .package-sidebar {
        order: -1;
    }

    .manali-page .booking-card {
        position: relative;
        top: auto;
    }

    .manali-page .enquiry-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .manali-page {
        width: 100%;
        overflow-x: hidden;
    }


    /* HERO */

    .manali-page .package-hero {
        height: 330px;
        min-height: 330px;
    }

    .manali-page .hero-content {
        padding: 30px 18px;
    }

    .manali-page .hero-location {
        font-size: 12px;
    }

    .manali-page .hero-content h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .manali-page .hero-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .manali-page .hero-info {
        gap: 7px;
        margin-top: 15px;
    }

    .manali-page .hero-info span {
        font-size: 10px;
        padding: 7px 10px;
    }


    /* MAIN */

    .manali-page .package-container {
        width: 100%;

        margin: 25px auto;

        padding: 0 12px;

        display: block;
    }


    /* CARDS */

    .manali-page .content-card {
        padding: 22px 17px;

        border-radius: 14px;

        margin-bottom: 15px;
    }


    /* HEADING */

    .manali-page .section-heading {
        gap: 11px;
        margin-bottom: 18px;
    }

    .manali-page .section-heading > span {
        width: 38px;
        height: 38px;
        flex-basis: 38px;

        border-radius: 9px;

        font-size: 11px;
    }

    .manali-page .section-heading h2 {
        font-size: 21px;
        line-height: 1.3;
    }

    .manali-page .section-heading small {
        font-size: 9px;
    }

    .manali-page .overview {
        font-size: 13px;
        line-height: 1.75;
    }


    /* GRIDS */

    .manali-page .highlight-grid,
    .manali-page .places-grid,
    .manali-page .hotel-details,
    .manali-page .include-grid {
        grid-template-columns: 1fr;
    }


    /* HIGHLIGHT */

    .manali-page .highlight-box {
        padding: 14px;
    }

    .manali-page .highlight-box strong {
        font-size: 13px;
    }


    /* TIMELINE */

    .manali-page .timeline-item {
        gap: 13px;
    }

    .manali-page .timeline-number {
        width: 38px;
        height: 38px;
        flex-basis: 38px;

        font-size: 11px;
    }

    .manali-page .timeline::before {
        left: 18px;
    }

    .manali-page .timeline-content h3 {
        font-size: 16px;
    }

    .manali-page .timeline-content p {
        font-size: 13px;
    }


    /* SIDEBAR */

    .manali-page .package-sidebar {
        margin-bottom: 20px;
    }

    .manali-page .booking-card {
        padding: 23px;
        border-radius: 16px;
    }

    .manali-page .price {
        font-size: 32px;
    }


    /* MOBILE BUTTONS */

    .manali-page .primary-btn,
    .manali-page .call-btn,
    .manali-page .whatsapp-btn {
        width: 100%;
        min-width: 0;
        min-height: 50px;

        padding: 13px 14px;

        margin-top: 10px;

        border-radius: 10px;

        font-size: 14px;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 9px;

        box-sizing: border-box;
    }

    .manali-page .primary-btn span,
    .manali-page .call-btn span,
    .manali-page .whatsapp-btn span {
        max-width: calc(100% - 30px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .manali-page .btn-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }


    /* ENQUIRY */

    .manali-page .enquiry-section {
        padding: 45px 15px;
    }

    .manali-page .enquiry-container {
        width: 100%;
        gap: 30px;
    }

    .manali-page .enquiry-text h2 {
        font-size: 34px;
    }

    .manali-page .enquiry-form {
        width: 100%;
        padding: 22px 17px;
        border-radius: 15px;
    }

    .manali-page .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .manali-page .form-group input,
    .manali-page .form-group textarea,
    .manali-page .form-group select {
        font-size: 14px;
        min-height: 46px;
    }

    .manali-page .form-group textarea {
        min-height: 110px;
    }

    .manali-page .submit-btn {
        min-height: 50px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .manali-page .hero-content {
        padding: 25px 15px;
    }

    .manali-page .hero-content h1 {
        font-size: 28px;
    }

    .manali-page .content-card {
        padding: 19px 14px;
    }

    .manali-page .booking-card {
        padding: 20px 17px;
    }

    .manali-page .primary-btn,
    .manali-page .call-btn,
    .manali-page .whatsapp-btn {
        min-height: 48px;
        font-size: 13px;
    }

}