/* =========================================================
   VISIT CHAMOLI
   VIRTUAL TOURS PAGE
   COMPLETELY ISOLATED CSS
========================================================= */


/* =========================================================
   PAGE VARIABLES
========================================================= */

.vc-vt-page {

    --vc-vt-navy: #082f54;
    --vc-vt-deep-navy: #06253f;
    --vc-vt-green: #527b3b;
    --vc-vt-gold: #d5ae38;
    --vc-vt-light: #f5f8f6;
    --vc-vt-border: #e2e8e4;
    --vc-vt-text: #273746;
    --vc-vt-muted: #6a777f;
    --vc-vt-white: #ffffff;

    width: 100%;

    overflow: hidden;

}


/* =========================================================
   CONTAINER
========================================================= */

.vc-vt-page .vc-vt-container {

    width: 100%;

    max-width: 1240px;

    margin: 0 auto;

    padding-left: 20px;

    padding-right: 20px;

}


.vc-vt-page .vc-vt-eyebrow {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--vc-vt-gold);

    font-size: 13px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.vc-vt-page .vc-vt-hero-content h1 {

    margin: 0 0 20px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.05;

    font-weight: 600;

}


.vc-vt-page .vc-vt-hero-content p {

    max-width: 590px;

    margin: 0;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.7;

}


/* =========================================================
   INTRO
========================================================= */

.vc-vt-page .vc-vt-intro {

    position: relative;

    padding: 90px 0 100px;

    background:
        linear-gradient(
            180deg,
            #f8faf9 0%,
            #f5f8f6 100%
        );

}


/* =========================================================
   SECTION HEADING
========================================================= */

.vc-vt-page .vc-vt-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.vc-vt-page .vc-vt-section-label {

    display: block;

    margin-bottom: 12px;

    color: var(--vc-vt-green);

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 2px;

}


.vc-vt-page .vc-vt-heading h2 {

    margin: 0;

    color: var(--vc-vt-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 600;

}


.vc-vt-page .vc-vt-heading-line {

    width: 55px;

    height: 3px;

    margin: 20px auto;

    background: var(--vc-vt-gold);

}


.vc-vt-page .vc-vt-heading p {

    margin: 0 auto;

    color: var(--vc-vt-muted);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   TOUR GRID
========================================================= */

.vc-vt-page .vc-vt-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 32px;

    max-width: 1100px;

    margin: 0 auto;

}


/* =========================================================
   TOUR CARD
========================================================= */

.vc-vt-page .vc-vt-card {

    position: relative;

    background: #ffffff;

    border: 1px solid var(--vc-vt-border);

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(8,47,84,.07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.vc-vt-page .vc-vt-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(8,47,84,.14);

}


/* =========================================================
   IMAGE
========================================================= */

.vc-vt-page .vc-vt-image-wrap {

    position: relative;

    height: 360px;

    overflow: hidden;

}


.vc-vt-page .vc-vt-image-wrap img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .7s ease;

}


.vc-vt-page .vc-vt-card:hover
.vc-vt-image-wrap img {

    transform: scale(1.06);

}


/* Image overlay */

.vc-vt-page .vc-vt-image-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.03) 25%,
            rgba(0,0,0,.62) 100%
        );

    pointer-events: none;

}


/* =========================================================
   TOUR BADGE
========================================================= */

.vc-vt-page .vc-vt-tour-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border-radius: 50px;

    background:
        rgba(6,35,63,.90);

    color: #ffffff;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .2px;

    backdrop-filter: blur(7px);

}


.vc-vt-page .vc-vt-tour-badge i {

    color: var(--vc-vt-gold);

    font-size: 15px;

}


/* =========================================================
   LOCATION
========================================================= */

.vc-vt-page .vc-vt-location {

    position: absolute;

    left: 20px;

    bottom: 18px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 500;

}


.vc-vt-page .vc-vt-location i {

    color: var(--vc-vt-gold);

    font-size: 14px;

}


/* =========================================================
   CARD BODY
========================================================= */

.vc-vt-page .vc-vt-card-body {

    position: relative;

    padding: 28px 30px 30px;

}


.vc-vt-page .vc-vt-card-number {

    position: absolute;

    top: 25px;

    right: 28px;

    color: rgba(8,47,84,.08);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 42px;

    line-height: 1;

    font-weight: 700;

}


.vc-vt-page .vc-vt-card-body h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: var(--vc-vt-navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    line-height: 1.2;

    font-weight: 600;

}


.vc-vt-page .vc-vt-card-body p {

    position: relative;

    z-index: 2;

    margin: 0 0 24px;

    color: var(--vc-vt-muted);

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   TOUR BUTTON
========================================================= */

.vc-vt-page .vc-vt-tour-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 5px;

    background: var(--vc-vt-navy);

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 14px;

    line-height: 1;

    font-weight: 600;

    transition:
        background .25s ease,
        transform .25s ease;

}


.vc-vt-page .vc-vt-tour-button:hover {

    background: var(--vc-vt-green);

    color: #ffffff !important;

    transform: translateX(3px);

}


.vc-vt-page .vc-vt-tour-button i {

    font-size: 12px;

}


/* =========================================================
   CTA
========================================================= */

.vc-vt-page .vc-vt-cta {

    position: relative;

    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #062a48 0%,
            #0a4268 55%,
            #365f42 100%
        );

    overflow: hidden;

}


/* Decorative background */

.vc-vt-page .vc-vt-cta-bg {

    position: absolute;

    width: 500px;

    height: 500px;

    right: -180px;

    top: -250px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    pointer-events: none;

}


.vc-vt-page .vc-vt-cta-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 28px;

}


.vc-vt-page .vc-vt-cta-icon {

    flex: 0 0 78px;

    width: 78px;

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    color: var(--vc-vt-gold);

    font-size: 30px;

}


.vc-vt-page .vc-vt-cta-label {

    display: block;

    margin-bottom: 7px;

    color: var(--vc-vt-gold);

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 1.8px;

}


.vc-vt-page .vc-vt-cta-text h2 {

    margin: 0 0 8px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 600;

}


.vc-vt-page .vc-vt-cta-text p {

    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vc-vt-page .vc-vt-hero {

        min-height: 380px;

    }


    .vc-vt-page .vc-vt-intro {

        padding: 75px 0 80px;

    }


    .vc-vt-page .vc-vt-grid {

        gap: 22px;

    }


    .vc-vt-page .vc-vt-image-wrap {

        height: 310px;

    }


    .vc-vt-page .vc-vt-card-body {

        padding: 25px;

    }


    .vc-vt-page .vc-vt-cta {

        padding: 65px 0;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vc-vt-page .vc-vt-container {

        padding-left: 16px;

        padding-right: 16px;

    }


    .vc-vt-page .vc-vt-hero {

        min-height: 360px;

        background-position: center center;

    }


    .vc-vt-page .vc-vt-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(4,29,49,.92) 0%,
                rgba(4,29,49,.68) 100%
            );

    }


    .vc-vt-page .vc-vt-hero-content {

        padding: 65px 0;

    }


    .vc-vt-page .vc-vt-hero-content h1 {

        font-size: 45px;

    }


    .vc-vt-page .vc-vt-hero-content p {

        font-size: 16px;

        line-height: 1.65;

    }


    .vc-vt-page .vc-vt-intro {

        padding: 60px 0 70px;

    }


    .vc-vt-page .vc-vt-heading {

        margin-bottom: 38px;

    }


    .vc-vt-page .vc-vt-heading h2 {

        font-size: 34px;

    }


    .vc-vt-page .vc-vt-heading p {

        font-size: 15px;

    }


    .vc-vt-page .vc-vt-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .vc-vt-page .vc-vt-image-wrap {

        height: 290px;

    }


    .vc-vt-page .vc-vt-card-body h3 {

        font-size: 26px;

    }


    .vc-vt-page .vc-vt-cta {

        padding: 55px 0;

    }


    .vc-vt-page .vc-vt-cta-content {

        flex-direction: column;

        text-align: center;

        gap: 20px;

    }


    .vc-vt-page .vc-vt-cta-text h2 {

        font-size: 29px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vc-vt-page .vc-vt-hero {

        min-height: 330px;

    }


    .vc-vt-page .vc-vt-hero-content h1 {

        font-size: 39px;

    }


    .vc-vt-page .vc-vt-image-wrap {

        height: 245px;

    }


    .vc-vt-page .vc-vt-card-body {

        padding: 23px;

    }


    .vc-vt-page .vc-vt-card-body h3 {

        font-size: 24px;

    }


    .vc-vt-page .vc-vt-tour-button {

        width: 100%;

    }


    .vc-vt-page .vc-vt-cta-text h2 {

        font-size: 26px;

    }

}