/* =====================================================
   THINGS TO DO - PAGE CSS
   VisitMalvan
===================================================== */


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

.things-page .things-hero {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        url("../images/things-to-do-hero.jpg")
        center center / cover no-repeat;

    color: #fff;

    overflow: hidden;
}


.things-page .things-hero-overlay {

    position: absolute;

    inset: 0;

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


.things-page .things-hero-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 900px;

    margin: 0 auto;

    padding: 80px 0;
}


.things-page .things-badge {

    display: inline-block;

    padding: 9px 20px;

    margin-bottom: 24px;

    border-radius: 40px;

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

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

    backdrop-filter: blur(10px);

    font-size: 13px;

    font-weight: 600;
}


.things-page .things-hero h1 {

    margin: 0 0 20px;

    font-size: 64px;

    line-height: 1.08;

    font-weight: 800;

    color: #fff;
}


.things-page .things-hero h1 span {

    display: block;

    color: #FFD166;
}


.things-page .things-hero-subtitle {

    max-width: 760px;

    margin: 0 auto 28px;

    font-size: 18px;

    line-height: 1.75;

    color: #fff;
}


/* Hero Services */

.things-page .things-services {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 30px;
}


.things-page .things-services span {

    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;
}


/* Hero Buttons */

.things-page .things-hero-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


.things-page .things-btn {

    min-width: 150px;

    min-height: 48px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-sizing: border-box;

    transition: all .3s ease;
}


.things-page .things-btn-primary {

    background: #FF7A00;

    color: #fff;
}


.things-page .things-btn-primary:hover {

    background: #e86d00;

    transform: translateY(-2px);
}


.things-page .things-btn-whatsapp {

    background: #25D366;

    color: #fff;
}


.things-page .things-btn-whatsapp:hover {

    background: #1ebe5d;

    transform: translateY(-2px);
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

.things-page .container {

    width: 90%;

    max-width: 1100px;

    margin: 0 auto;
}


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

.things-page .things-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: .5px;
}


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

.things-page .things-intro {

    padding: 85px 0 75px;

    text-align: center;

    background: #fff;
}


.things-page .things-intro h2 {

    margin: 0 0 25px;

    color: #00758b;

    font-size: 34px;

    font-weight: 800;
}


.things-page .things-intro p {

    max-width: 850px;

    margin: 0 auto 18px;

    color: #666;

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   EXPERIENCES
===================================================== */

.things-page .things-experiences {

    padding: 90px 0 100px;

    background: #f4f8fa;

    text-align: center;
}


.things-page .things-experiences h2,
.things-page .things-why h2 {

    margin: 0 0 14px;

    color: #00758b;

    font-size: 34px;

    font-weight: 800;
}


.things-page .things-section-subtitle {

    max-width: 700px;

    margin: 0 auto 40px;

    color: #666;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   EXPERIENCE GRID
===================================================== */

.things-page .things-experience-grid {

    display: grid;

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

    gap: 20px;

    max-width: 1000px;

    margin: 0 auto;
}


/* =====================================================
   EXPERIENCE CARD
===================================================== */

.things-page .things-experience-card {

    position: relative;

    height: 300px;

    display: block;

    overflow: hidden;

    border-radius: 10px;

    text-decoration: none;

    background: #111;

    box-shadow:
        0 8px 22px rgba(0,0,0,.12);

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


.things-page .things-experience-card:hover {

    transform: translateY(-5px);

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


.things-page .things-experience-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


.things-page .things-experience-card:hover img {

    transform: scale(1.06);
}


/* Card Overlay */

.things-page .things-card-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 22px;

    text-align: left;

    color: #fff;

    background:
        linear-gradient(
            transparent 25%,
            rgba(0,0,0,.20) 42%,
            rgba(0,0,0,.88) 100%
        );
}


.things-page .things-card-tag {

    align-self: flex-start;

    padding: 5px 10px;

    margin-bottom: 8px;

    border-radius: 30px;

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

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

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .5px;
}


.things-page .things-card-overlay h3 {

    margin: 0 0 7px;

    color: #fff;

    font-size: 22px;

    font-weight: 800;
}


.things-page .things-card-overlay p {

    margin: 0 0 12px;

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

    font-size: 12px;

    line-height: 1.5;
}


.things-page .things-explore {

    align-self: flex-start;

    padding: 7px 15px;

    border-radius: 30px;

    background: #FF7A00;

    color: #fff;

    font-size: 11px;

    font-weight: 700;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.things-page .things-why {

    padding: 90px 0 100px;

    background: #fff;

    text-align: center;
}


.things-page .things-why .things-section-subtitle {

    margin-bottom: 45px;
}


.things-page .things-service-grid {

    display: grid;

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

    gap: 18px;

    max-width: 1050px;

    margin: 0 auto;
}


.things-page .things-service-card {

    padding: 30px 22px;

    background: #fff;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.08);

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


.things-page .things-service-card:hover {

    transform: translateY(-4px);

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


.things-page .things-service-icon {

    width: 55px;

    height: 55px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #08a8e0,
        #087fd0
    );

    color: #fff;

    font-size: 22px;

    font-weight: 800;
}


.things-page .things-service-card h3 {

    margin: 0 0 12px;

    color: #00758b;

    font-size: 17px;
}


.things-page .things-service-card p {

    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


.things-page .things-why-buttons {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 35px;

    flex-wrap: wrap;
}


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

.things-page .things-cta {

    padding: 90px 0;

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

    color: #fff;

    text-align: center;
}


.things-page .things-cta h2 {

    margin: 0 0 15px;

    color: #fff;

    font-size: 38px;

    font-weight: 800;
}


.things-page .things-cta p {

    max-width: 700px;

    margin: 0 auto 30px;

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

    font-size: 15px;

    line-height: 1.7;
}


.things-page .things-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


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

@media (max-width: 900px) {

    .things-page .things-hero h1 {

        font-size: 52px;
    }


    .things-page .things-experience-grid {

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


    .things-page .things-service-grid {

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

}


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

@media (max-width: 600px) {

    .things-page .things-hero {

        min-height: 620px;
    }


    .things-page .things-hero-content {

        padding: 70px 0 50px;
    }


    .things-page .things-badge {

        font-size: 10px;

        padding: 7px 14px;

        margin-bottom: 18px;
    }


    .things-page .things-hero h1 {

        font-size: 40px;

        line-height: 1.08;

        margin-bottom: 16px;
    }


    .things-page .things-hero-subtitle {

        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 22px;
    }


    .things-page .things-services {

        gap: 7px;

        margin-bottom: 24px;
    }


    .things-page .things-services span {

        padding: 7px 11px;

        font-size: 10px;
    }


    .things-page .things-btn {

        min-width: 140px;

        min-height: 44px;

        padding: 0 18px;

        font-size: 12px;
    }


    .things-page .things-intro {

        padding: 60px 0;
    }


    .things-page .things-intro h2,
    .things-page .things-experiences h2,
    .things-page .things-why h2 {

        font-size: 27px;
    }


    .things-page .things-intro p {

        font-size: 14px;

        line-height: 1.7;
    }


    .things-page .things-experiences {

        padding: 65px 0 70px;
    }


    .things-page .things-section-subtitle {

        font-size: 13px;

        margin-bottom: 30px;
    }


    .things-page .things-experience-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .things-page .things-experience-card {

        height: 270px;
    }


    .things-page .things-card-overlay {

        padding: 20px;
    }


    .things-page .things-card-overlay h3 {

        font-size: 20px;
    }


    .things-page .things-card-overlay p {

        font-size: 11px;
    }


    .things-page .things-why {

        padding: 65px 0 70px;
    }


    .things-page .things-service-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .things-page .things-service-card {

        padding: 26px 20px;
    }


    .things-page .things-cta {

        padding: 65px 20px;
    }


    .things-page .things-cta h2 {

        font-size: 29px;
    }


    .things-page .things-cta p {

        font-size: 13px;
    }

}


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

@media (max-width: 380px) {

    .things-page .things-hero h1 {

        font-size: 34px;
    }


    .things-page .things-hero-subtitle {

        font-size: 13px;
    }


    .things-page .things-services span {

        font-size: 9px;

        padding: 6px 9px;
    }


    .things-page .things-btn {

        width: 100%;

        max-width: 220px;
    }

}
