.hero
{
    width: 100%;
    height: 260px;
    background: url("/pgc/images/hero.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::after
{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.12);
}

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

.intro
{
    padding: 3rem 1rem;
    text-align: center;
}

.intro h2
{
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.intro h3
{
    color: #c58b2a;
    letter-spacing: 0.35rem;
    margin-bottom: 2rem;
}

.intro p
{
    max-width: 800px;
    margin: 1rem auto;
    line-height: 1.6;
}

.quote
{
    margin: 2rem 0;
    letter-spacing: 0.35rem;
    color: #5ba6b5;
}

.signature
{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.signature img
{
    width: 180px;
    opacity: 0.85;
    filter: contrast(1.1) brightness(0.95);
}

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

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

.services
{
    background: #d8d0c2;
    padding: 5rem 1rem;
    text-align: center;
}

.services h2
{
    color: #b07a2c;
    letter-spacing: 0.45rem;
    margin-bottom: 3.5rem;
}

.services-wrap
{
    position: relative;
    max-width: 820px;
    margin: auto;
    height: 460px;
}

/* COMMON BASE (important fix) */
.service
{
    position: absolute;
    text-align: center;
    transform: translate(0,0); /* 🔥 normalize */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service img
{
    width: 135px;
    border-radius: 28px;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.service span
{
    display: block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.14rem;
    color: #4e8fa1;
}

/* CENTER */
.service.center
{
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
}

.service.center img
{
    width: 150px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* CTA under brain */
.cta-wrap
{
    margin-top: 12px;
}

.cta
{
    display: inline-block;
    padding: 0.7rem 1.4rem;
    background: #3f5163;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    transition: all 0.2s ease;
}

.cta:hover
{
    background: #2f3f52;
}

/* 🔥 CONSISTENT HOVER (fix bounce) */
.service:hover
{
    transform: translateY(-6px);
}

/* CENTER HOVER FIX */
.service.center:hover
{
    transform: translate(-50%, calc(-50% - 6px));
}

/* POSITIONS (more breathing room) */
.s1 { top: 30px; left: 80px; }
.s2 { top: 30px; right: 80px; }
.s3 { bottom: 30px; left: 80px; }
.s4 { bottom: 30px; right: 80px; }


/* CTA */
.cta
{
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.4rem;
    background: #3f5163;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    transition: all 0.2s ease;
}

.cta:hover
{
    background: #2f3f52;
    transform: translateY(-2px);
}

/* ================= SOCIAL ================= */

.social
{
    padding: 3rem 1rem;
    text-align: center;
}

.social h3
{
    color: #c58b2a;
    letter-spacing: 0.3rem;
}

.social-buttons
{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn
{
    padding: 0.8rem 1.5rem;
    background: #2f3f52;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
}

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

@media (max-width: 768px)
{
    .services-wrap
    {
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .service
    {
        position: static;
        transform: none !important;
    }

    .service.center
    {
        order: 1;
    }

    .s1 { order: 2; }
    .s2 { order: 3; }
    .s3 { order: 4; }
    .s4 { order: 5; }

    .service img
    {
        width: 180px;
    }

    .service.center img
    {
        width: 160px;
    }

    .service span
    {
        margin-top: 0.5rem;
    }

    .cta-wrap
    {
        margin-top: 10px;
    }
}