/* ==========================================================
   NORTHEAST VOYAGERS
   TOUR PACKAGE SECTION
   ========================================================== */

.nv-tour-packages {

    width: 100%;

    padding: 90px 0;

    background: #f7f9f7;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;
}


.nv-tour-container {

    width: 92%;

    max-width: 1400px;

    margin: 0 auto;
}


/* ==========================================================
   SECTION HEADING
   ========================================================== */

.nv-tour-heading {

    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}


.nv-tour-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #f56845;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.nv-tour-heading h2 {

    margin: 0 0 15px;

    color: #174f31;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 700;
}


.nv-tour-heading h2 span {

    color: #f56845;
}


.nv-tour-heading p {

    max-width: 700px;

    margin: 0 auto;

    color: #68736c;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================================
   PACKAGE GRID
   ========================================================== */

.nv-tour-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


/* ==========================================================
   PACKAGE CARD
   ========================================================== */

.nv-tour-card {

    background: #ffffff;

    border: 1px solid #e1e8e3;

    border-radius: 9px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.nv-tour-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 17px 35px rgba(23,79,49,0.13);
}


/* ==========================================================
   PACKAGE IMAGE
   ========================================================== */

.nv-tour-image {

    width: 100%;

    aspect-ratio: 16 / 10;

    position: relative;

    overflow: hidden;

    background: #eeeeee;
}


.nv-tour-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


.nv-tour-card:hover
.nv-tour-image img {

    transform: scale(1.05);
}


/* ==========================================================
   DURATION
   ========================================================== */

.nv-tour-duration {

    position: absolute;

    left: 14px;

    bottom: 14px;

    padding: 7px 11px;

    background: #f56845;

    color: #ffffff;

    border-radius: 3px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.4px;
}


/* ==========================================================
   PACKAGE CONTENT
   ========================================================== */

.nv-tour-content {

    padding: 19px 20px 18px;
}


.nv-tour-content h3 {

    min-height: 46px;

    margin: 0 0 13px;

    color: #174f31;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;
}


/* ==========================================================
   PLACES TO STAY
   ========================================================== */

.nv-stay {

    min-height: 48px;

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 17px;

    padding-bottom: 15px;

    border-bottom: 1px solid #edf0ee;
}


.nv-stay-icon {

    width: 30px;

    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(23,79,49,0.08);

    color: #174f31;

    font-size: 16px;
}


.nv-stay div {

    display: flex;

    flex-direction: column;

    gap: 4px;
}


.nv-stay small {

    color: #8a938d;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.nv-stay strong {

    color: #59655e;

    font-size: 10px;

    line-height: 1.5;

    font-weight: 500;
}


/* ==========================================================
   ACTION BUTTONS
   ========================================================== */

.nv-tour-actions {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px;
}


.nv-tour-book,
.nv-tour-call {

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    font-size: 10px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}


/* Book Now */

.nv-tour-book {

    background: #174f31;

    color: #ffffff;

    border: 1px solid #174f31;
}


.nv-tour-book:hover {

    background: #f56845;

    border-color: #f56845;

    color: #ffffff;

    text-decoration: none;
}


/* Call */

.nv-tour-call {

    background: #fff5f2;

    color: #f56845;

    border: 1px solid #f56845;
}


.nv-tour-call:hover {

    background: #f56845;

    color: #ffffff;

    text-decoration: none;
}


/* ==========================================================
   VIEW ALL
   ========================================================== */

.nv-tour-more {

    margin-top: 42px;

    text-align: center;
}


.nv-tour-more-btn {

    min-height: 48px;

    padding: 0 25px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    background: #174f31;

    color: #ffffff;

    border-radius: 4px;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.nv-tour-more-btn:hover {

    background: #f56845;

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-2px);
}


/* ==========================================================
   LARGE TABLET
   ========================================================== */

@media (max-width: 1100px) {

    .nv-tour-grid {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 18px;
    }


    .nv-tour-content {

        padding: 17px;
    }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .nv-tour-packages {

        padding: 70px 0;
    }


    .nv-tour-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 20px;
    }


    .nv-tour-heading h2 {

        font-size: 34px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .nv-tour-packages {

        padding: 55px 0;
    }


    .nv-tour-container {

        width: 90%;
    }


    .nv-tour-heading {

        margin-bottom: 30px;
    }


    .nv-tour-heading h2 {

        font-size: 29px;
    }


    .nv-tour-heading p {

        font-size: 13px;

        line-height: 1.7;
    }


    .nv-tour-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .nv-tour-image {

        aspect-ratio: 16 / 10;
    }


    .nv-tour-content {

        padding: 18px;
    }


    .nv-tour-content h3 {

        min-height: auto;

        font-size: 18px;
    }


    .nv-stay {

        min-height: auto;
    }


    .nv-tour-actions {

        gap: 9px;
    }


    .nv-tour-book,
    .nv-tour-call {

        height: 43px;

        font-size: 11px;
    }

}