/* =========================================================
   VISITMALVAN
   HOTELS & HOMESTAYS PAGE
   Dedicated stylesheet
========================================================= */


/* =========================================================
   HERO
========================================================= */

.hotels-page .hotels-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        url("../images/hotels-homestays-hero.jpg")
        center center / cover no-repeat;

    color: #fff;

    overflow: hidden;
}


.hotels-page .hotels-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0, 35, 55, .42),
            rgba(0, 0, 0, .68)
        );
}


.hotels-page .hotels-hero-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 900px;

    margin: 0 auto;

    padding: 80px 0;
}


.hotels-page .hotels-badge {

    display: inline-block;

    padding: 9px 20px;

    margin-bottom: 24px;

    border-radius: 40px;

    background: rgba(255,255,255,.15);

    border: 1px solid rgba(255,255,255,.30);

    backdrop-filter: blur(10px);

    font-size: 13px;

    font-weight: 600;
}


.hotels-page .hotels-hero h1 {

    margin: 0 0 20px;

    color: #fff;

    font-size: 62px;

    line-height: 1.1;

    font-weight: 800;
}


.hotels-page .hotels-hero h1 span {

    display: block;

    color: #FFD166;
}


.hotels-page .hotels-hero-subtitle {

    max-width: 760px;

    margin: 0 auto 28px;

    color: #fff;

    font-size: 19px;

    line-height: 1.75;
}


/* =========================================================
   HERO SERVICES
========================================================= */

.hotels-page .hotels-services {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 30px;
}


.hotels-page .hotels-services span {

    display: inline-flex;

    align-items: center;

    padding: 9px 16px;

    border-radius: 40px;

    background: rgba(255,255,255,.13);

    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(8px);

    color: #fff;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hotels-page .hotels-hero-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   COMMON SECTION LABEL
========================================================= */

.hotels-page .hotels-section-label {

    display: inline-block;

    padding: 6px 14px;

    margin-bottom: 15px;

    border-radius: 30px;

    background: #e9f8fb;

    color: #08758b;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .7px;
}


/* =========================================================
   INTRO
========================================================= */

.hotels-page .hotel-intro {

    padding: 85px 20px 80px;

    background: #fff;

    text-align: center;
}


.hotels-page .hotel-intro .container {

    max-width: 850px;

    margin: 0 auto;
}


.hotels-page .hotel-intro h2 {

    margin: 0 0 25px;

    color: #08758b;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;
}


.hotels-page .intro-text {

    max-width: 820px;

    margin: 0 auto 18px;

    color: #666;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   ACCOMMODATION OPTIONS
========================================================= */

.hotels-page .accommodation-types {

    padding: 90px 20px 100px;

    background: #f4f8fa;

    text-align: center;
}


.hotels-page .accommodation-types .container {

    max-width: 1100px;

    margin: 0 auto;
}


.hotels-page .accommodation-types h2,
.hotels-page .stay-locations h2,
.hotels-page .why-book h2 {

    margin: 0 0 12px;

    color: #08758b;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;
}


.hotels-page .section-subtitle {

    max-width: 700px;

    margin: 0 auto 42px;

    color: #666;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   ACCOMMODATION GRID
========================================================= */

.hotels-page .accommodation-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    text-align: left;
}


/* =========================================================
   ACCOMMODATION CARD
========================================================= */

.hotels-page .accommodation-card {

    overflow: hidden;

    background: #fff;

    border-radius: 11px;

    box-shadow:
        0 7px 22px rgba(0,0,0,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.hotels-page .accommodation-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 13px 30px rgba(0,0,0,.13);
}


.hotels-page .accommodation-image {

    position: relative;

    height: 220px;

    overflow: hidden;
}


.hotels-page .accommodation-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s ease;
}


.hotels-page .accommodation-card:hover
.accommodation-image img {

    transform: scale(1.06);
}


.hotels-page .accommodation-tag {

    position: absolute;

    top: 14px;

    left: 14px;

    padding: 6px 11px;

    border-radius: 30px;

    background: rgba(0,0,0,.65);

    color: #fff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .6px;
}


.hotels-page .accommodation-content {

    padding: 22px;
}


.hotels-page .accommodation-content h3 {

    margin: 0 0 10px;

    color: #08758b;

    font-size: 20px;

    font-weight: 800;
}


.hotels-page .accommodation-content p {

    min-height: 65px;

    margin: 0 0 18px;

    color: #666;

    font-size: 13px;

    line-height: 1.65;
}


.hotels-page .accommodation-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding: 0 17px;

    border-radius: 6px;

    background: #ff7a00;

    color: #fff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition: .3s;
}


.hotels-page .accommodation-btn:hover {

    background: #e86d00;

    transform: translateY(-2px);
}


/* =========================================================
   WHERE TO STAY
========================================================= */

.hotels-page .stay-locations {

    padding: 90px 20px;

    background: #fff;

    text-align: center;
}


.hotels-page .stay-locations .container {

    max-width: 1100px;

    margin: 0 auto;
}


.hotels-page .location-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 38px;
}


.hotels-page .location-card {

    padding: 32px 25px;

    background: #f8fbfc;

    border: 1px solid #e2eef1;

    border-radius: 11px;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.hotels-page .location-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}


.hotels-page .location-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #0aa4df;

    font-size: 25px;
}


.hotels-page .location-card h3 {

    margin: 0 0 12px;

    color: #08758b;

    font-size: 21px;

    font-weight: 800;
}


.hotels-page .location-card p {

    margin: 0 0 18px;

    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


.hotels-page .location-card a {

    color: #08758b;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: .3s;
}


.hotels-page .location-card a:hover {

    color: #ff7a00;
}


/* =========================================================
   WHY BOOK
========================================================= */

.hotels-page .why-book {

    padding: 90px 20px 100px;

    background: #f4f8fa;

    text-align: center;
}


.hotels-page .why-book .container {

    max-width: 1100px;

    margin: 0 auto;
}


.hotels-page .features-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    margin-top: 40px;
}


.hotels-page .feature-box {

    padding: 30px 20px;

    background: #fff;

    border-radius: 11px;

    box-shadow:
        0 6px 20px rgba(0,0,0,.07);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.hotels-page .feature-box:hover {

    transform: translateY(-5px);

    box-shadow:
        0 12px 26px rgba(0,0,0,.11);
}


.hotels-page .feature-box > span {

    width: 58px;

    height: 58px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #0aa4df;

    font-size: 25px;
}


.hotels-page .feature-box h3 {

    margin: 0 0 11px;

    color: #08758b;

    font-size: 17px;

    line-height: 1.35;
}


.hotels-page .feature-box p {

    margin: 0;

    color: #666;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.hotels-page .hotels-action-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.hotels-page .hotels-cta {

    padding: 90px 20px;

    background:
        linear-gradient(
            135deg,
            #08798b,
            #0a6c80
        );

    color: #fff;

    text-align: center;
}


.hotels-page .hotels-cta h2 {

    margin: 0 0 15px;

    color: #fff;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 800;
}


.hotels-page .hotels-cta p {

    max-width: 700px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,.92);

    font-size: 15px;

    line-height: 1.7;
}


.hotels-page .hotels-cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hotels-page .accommodation-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .hotels-page .features-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .hotels-page .hotels-hero h1 {

        font-size: 54px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .hotels-page .hotels-hero {

        min-height: 650px;
    }


    .hotels-page .hotels-hero-content {

        padding: 70px 0 50px;
    }


    .hotels-page .hotels-badge {

        padding: 7px 14px;

        margin-bottom: 18px;

        font-size: 10px;
    }


    .hotels-page .hotels-hero h1 {

        font-size: 40px;

        line-height: 1.1;

        margin-bottom: 16px;
    }


    .hotels-page .hotels-hero-subtitle {

        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 22px;
    }


    .hotels-page .hotels-services {

        gap: 7px;

        margin-bottom: 25px;
    }


    .hotels-page .hotels-services span {

        padding: 7px 11px;

        font-size: 10px;
    }


    .hotels-page .hotel-intro {

        padding: 60px 18px;
    }


    .hotels-page .hotel-intro h2,
    .hotels-page .accommodation-types h2,
    .hotels-page .stay-locations h2,
    .hotels-page .why-book h2 {

        font-size: 28px;
    }


    .hotels-page .intro-text {

        font-size: 14px;

        line-height: 1.7;
    }


    .hotels-page .accommodation-types {

        padding: 65px 15px 75px;
    }


    .hotels-page .accommodation-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .hotels-page .accommodation-image {

        height: 240px;
    }


    .hotels-page .accommodation-content p {

        min-height: auto;
    }


    .hotels-page .stay-locations {

        padding: 65px 15px;
    }


    .hotels-page .location-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }


    .hotels-page .location-card {

        padding: 28px 20px;
    }


    .hotels-page .why-book {

        padding: 65px 15px 75px;
    }


    .hotels-page .features-grid {

        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 30px;
    }


    .hotels-page .feature-box {

        padding: 28px 20px;
    }


    .hotels-page .hotels-cta {

        padding: 65px 18px;
    }


    .hotels-page .hotels-cta h2 {

        font-size: 29px;
    }


    .hotels-page .hotels-cta p {

        font-size: 13px;
    }


    .hotels-page .hotels-hero-buttons,
    .hotels-page .hotels-action-buttons,
    .hotels-page .hotels-cta-buttons {

        flex-direction: column;

        width: 100%;
    }


    .hotels-page .hotels-hero-buttons .header-btn,
    .hotels-page .hotels-action-buttons .header-btn,
    .hotels-page .hotels-cta-buttons .header-btn {

        width: 100%;

        max-width: 240px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .hotels-page .hotels-hero h1 {

        font-size: 34px;
    }


    .hotels-page .hotels-hero-subtitle {

        font-size: 13px;
    }


    .hotels-page .hotels-services span {

        font-size: 9px;

        padding: 6px 9px;
    }

}
