/* INNER HERO */
.inner-hero {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(to right, #6f859d, #5f7892),
        url('../images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    }

.inner-hero-content {
    padding: 0 20px;
    }

.inner-hero h1 {
    margin: 0 0 10px;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .5px;
    }

.inner-hero p {
    margin: 0;
    font-size: 20px;
}

/* INTRO */
.gallery-intro {
    padding: 55px 20px 25px;
    background: #f8fafc;
    }

.gallery-intro p {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
    color: #4b5563;
}

/* FEATURED BLOCK */
.featured-result {
    padding: 25px 20px 70px;
    background: #f8fafc;
    }

.featured-result-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    }

.featured-result-text {
    flex: 1;
    }

.featured-result-text h2 {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.1;
    color: #0F2F4F;
    }

.featured-result-text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    }

.featured-result-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    }

.featured-result-image img {
    width: 100%;
    max-width: 460px;
    height: auto;
    display: block;
    border: 8px solid #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    border-radius: 10px;
}

/* GALLERY GRID */
.gallery-grid-section {
    padding: 0 20px 80px;
    background: #f8fafc;
    }

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    }

.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* CTA SECTION */
.page-cta {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0f2f4f, #17466f);
    color: #fff;
    }

.page-cta h2 {
    margin: 0 0 12px;
    font-size: 40px;
    color: #fff;
    }

.page-cta p {
    margin: 0 0 26px;
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    }

.page-cta a,
.page-cta a:visited {
    color: #fff;
    text-decoration: none;
    }

.page-cta .cta-btn {
    display: inline-block;
    background: #6CC24A;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    }

.page-cta .cta-btn:hover {
    background: #5aad3d;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 900px) {
    .featured-result-wrap {
        flex-direction: column;
        gap: 30px;
    }

    .featured-result-image {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    }

@media (max-width: 600px) {
    /* .gallery-hero h1 { */
        /* font-size: 36px;
    }

    .gallery-hero p {
        font-size: 18px;
    } */

    .gallery-intro p,
    .featured-result-text p {
        font-size: 17px;
    }

    .featured-result-text h2,
    .page-cta h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: auto;
    }
}