/* =========================================================
   MALVAN PAGE CSS
   This stylesheet is ONLY for malvan.html
========================================================= */


/* ---------------------------------------------------------
   CONTAINER
--------------------------------------------------------- */

.malvan-container {
    width: min(1100px, 92%);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.malvan-hero {
    position: relative;
    min-height: 560px;
    background-image: url("../images/malvan-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.malvan-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0, 35, 55, 0.48),
            rgba(0, 20, 35, 0.58)
        );
}

.malvan-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 80px 20px 50px;
    color: #fff;
}

.malvan-badge {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 30px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 11px;
    margin-bottom: 18px;
}

.malvan-hero h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
}

.malvan-hero h1 span {
    display: block;
    color: #ffd15c;
}

.malvan-hero p {
    max-width: 700px;
    margin: 20px auto;
    font-size: 16px;
    line-height: 1.7;
}

.malvan-hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.malvan-hero-tags span {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 11px;
}

.malvan-hero-buttons,
.malvan-center-buttons,
.malvan-expert-buttons,
.malvan-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.malvan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.malvan-btn-primary {
    background: #ff7900;
    color: #fff;
}

.malvan-btn-primary:hover {
    background: #e96800;
    transform: translateY(-2px);
}

.malvan-btn-whatsapp {
    background: #19c965;
    color: #fff;
}

.malvan-btn-whatsapp:hover {
    background: #11ad55;
    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   COMMON SECTION STYLES
--------------------------------------------------------- */

.malvan-intro,
.malvan-attractions,
.malvan-activities,
.malvan-best-time,
.malvan-reach,
.malvan-stays,
.malvan-why,
.malvan-expert,
.malvan-faq {
    padding: 75px 0;
}

.malvan-intro,
.malvan-best-time,
.malvan-why,
.malvan-faq {
    background: #fff;
}

.malvan-attractions,
.malvan-activities,
.malvan-reach,
.malvan-stays {
    background: #f4f8fa;
}

.malvan-intro {
    text-align: center;
}

.malvan-intro h2,
.malvan-attractions h2,
.malvan-activities h2,
.malvan-best-time h2,
.malvan-reach h2,
.malvan-stays h2,
.malvan-why h2,
.malvan-faq h2 {
    margin: 10px 0 15px;
    color: #007b92;
    font-size: 32px;
    line-height: 1.2;
}

.malvan-section-label {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: #e8f8fb;
    color: #007c91;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.malvan-section-subtitle {
    max-width: 650px;
    margin: 0 auto 35px;
    text-align: center;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

.malvan-intro p {
    max-width: 780px;
    margin: 0 auto 18px;
    color: #555;
    line-height: 1.8;
    font-size: 14px;
}


/* ---------------------------------------------------------
   WHY VISIT HIGHLIGHTS
--------------------------------------------------------- */

.malvan-highlight-grid {
    max-width: 780px;
    margin: 35px auto 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.malvan-highlight {
    background: #f3f9fb;
    border: 1px solid #dcecf0;
    border-radius: 6px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: 13px;
}

.malvan-highlight span {
    font-weight: 600;
}


/* ---------------------------------------------------------
   ATTRACTIONS
--------------------------------------------------------- */

.malvan-attractions {
    text-align: center;
}

.malvan-attraction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.malvan-attraction-card {
    position: relative;
    height: 270px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.malvan-attraction-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.malvan-attraction-card:hover img {
    transform: scale(1.06);
}

.malvan-card-overlay {
    position: absolute;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    background:
        linear-gradient(
            transparent 25%,
            rgba(0,0,0,0.85) 100%
        );
}

.malvan-card-overlay span {
    font-size: 9px;
    background: rgba(0,0,0,0.5);
    padding: 5px 9px;
    border-radius: 15px;
    width: fit-content;
    margin-bottom: 8px;
}

.malvan-card-overlay h3 {
    margin: 0 0 5px;
    font-size: 21px;
}

.malvan-card-overlay p {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.5;
}

.malvan-card-overlay strong {
    display: inline-block;
    width: fit-content;
    background: #ff7900;
    padding: 7px 13px;
    border-radius: 20px;
    font-size: 10px;
}


/* ---------------------------------------------------------
   ACTIVITIES
--------------------------------------------------------- */

.malvan-activities {
    text-align: center;
}

.malvan-activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.malvan-activity-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.malvan-activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.malvan-activity-card h3 {
    color: #007b92;
    margin: 0 0 10px;
    font-size: 17px;
}

.malvan-activity-card p {
    margin: 0;
    color: #666;
    font-size: 12px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   STATS
--------------------------------------------------------- */

.malvan-stats {
    padding: 35px 0;
    background: #087d90;
}

.malvan-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.malvan-stat {
    text-align: center;
    padding: 22px 15px;
    border-radius: 6px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}

.malvan-stat strong {
    display: block;
    font-size: 28px;
    margin-bottom: 5px;
}

.malvan-stat span {
    font-size: 11px;
}


/* ---------------------------------------------------------
   INFORMATION CARDS
--------------------------------------------------------- */

.malvan-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.malvan-info-card {
    background: #fff;
    padding: 28px 22px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.07);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e7f7fa;
    border-radius: 50%;
    font-size: 23px;
}

.malvan-info-card h3 {
    color: #007b92;
    margin: 0 0 10px;
    font-size: 17px;
}

.malvan-info-card p {
    color: #666;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}


/* ---------------------------------------------------------
   WHERE TO STAY
--------------------------------------------------------- */

.malvan-stays {
    text-align: center;
}

.malvan-stay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.malvan-stay-card {
    position: relative;
    height: 230px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.malvan-stay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.malvan-stay-card:hover img {
    transform: scale(1.05);
}

.malvan-stay-card > div {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(
        transparent 35%,
        rgba(0,0,0,0.82)
    );
    text-align: left;
}

.malvan-stay-card h3 {
    margin: 0 0 5px;
    font-size: 21px;
}

.malvan-stay-card span {
    color: #ffd15c;
    font-size: 11px;
}


/* ---------------------------------------------------------
   WHY CHOOSE VISITMALVAN
--------------------------------------------------------- */

.malvan-why {
    text-align: center;
}

.malvan-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.malvan-feature-card {
    padding: 28px 18px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.malvan-feature-card > div {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #079bd9;
    font-size: 22px;
}

.malvan-feature-card h3 {
    color: #007b92;
    font-size: 15px;
    margin: 0 0 9px;
}

.malvan-feature-card p {
    color: #666;
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
}





/* ---------------------------------------------------------
   FAQ
--------------------------------------------------------- */

.malvan-faq {
    text-align: center;
}

.malvan-faq-list {
    max-width: 800px;
    margin: 35px auto 0;
    text-align: left;
}

.malvan-faq details {
    background: #fff;
    border: 1px solid #e2edf0;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.malvan-faq summary {
    cursor: pointer;
    padding: 17px 20px;
    font-weight: 600;
    font-size: 14px;
    color: #007b92;
    list-style: none;
}

.malvan-faq summary::-webkit-details-marker {
    display: none;
}

.malvan-faq summary::after {
    content: "+";
    float: right;
    font-size: 18px;
}

.malvan-faq details[open] summary::after {
    content: "−";
}

.malvan-faq details p {
    padding: 0 20px 18px;
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.malvan-final-cta {
    padding: 75px 0;
    background: #087d90;
    color: #fff;
    text-align: center;
}

.malvan-final-cta h2 {
    margin: 0 0 15px;
    font-size: 34px;
}

.malvan-final-cta p {
    max-width: 650px;
    margin: 0 auto 25px;
    line-height: 1.7;
    font-size: 14px;
}

.malvan-cta-buttons {
    justify-content: center;
}


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

@media (max-width: 900px) {

    .malvan-hero {
        min-height: 500px;
    }

    .malvan-attraction-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .malvan-activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .malvan-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .malvan-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .malvan-expert-grid {
        grid-template-columns: 300px 1fr;
        gap: 35px;
    }

}


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

@media (max-width: 600px) {

    .malvan-container {
        width: 90%;
    }


    /* HERO */

    .malvan-hero {
        min-height: 600px;
        background-position: center;
    }

    .malvan-hero-content {
        padding: 75px 15px 35px;
    }

    .malvan-hero h1 {
        font-size: 38px;
    }

    .malvan-hero p {
        font-size: 13px;
        line-height: 1.6;
    }

    .malvan-hero-tags {
        gap: 5px;
    }

    .malvan-hero-tags span {
        font-size: 9px;
        padding: 6px 9px;
    }

    .malvan-btn {
        width: auto;
        min-width: 125px;
        padding: 11px 15px;
        font-size: 11px;
    }


    /* SECTIONS */

    .malvan-intro,
    .malvan-attractions,
    .malvan-activities,
    .malvan-best-time,
    .malvan-reach,
    .malvan-stays,
    .malvan-why,
    .malvan-expert,
    .malvan-faq {
        padding: 55px 0;
    }

    .malvan-intro h2,
    .malvan-attractions h2,
    .malvan-activities h2,
    .malvan-best-time h2,
    .malvan-reach h2,
    .malvan-stays h2,
    .malvan-why h2,
    .malvan-faq h2 {
        font-size: 25px;
    }

    .malvan-section-subtitle {
        font-size: 12px;
    }


    /* HIGHLIGHTS */

    .malvan-highlight-grid {
        grid-template-columns: 1fr;
    }


    /* ATTRACTIONS */

    .malvan-attraction-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .malvan-attraction-card {
        height: 245px;
    }


    /* ACTIVITIES */

    .malvan-activity-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .malvan-activity-card {
        padding: 24px 18px;
    }


    /* STATS */

    .malvan-stats {
        padding: 20px 0;
    }

    .malvan-stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .malvan-stat {
        padding: 18px 8px;
    }

    .malvan-stat strong {
        font-size: 23px;
    }


    /* INFO */

    .malvan-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    /* STAYS */

    .malvan-stay-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .malvan-stay-card {
        height: 220px;
    }


    /* WHY */

    .malvan-feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }


    /* FAQ */

    .malvan-faq summary {
        font-size: 13px;
        padding: 15px;
    }


    /* CTA */

    .malvan-final-cta {
        padding: 55px 20px;
    }

    .malvan-final-cta h2 {
        font-size: 27px;
    }

    .malvan-final-cta p {
        font-size: 12px;
    }

}
