.about-section {
    padding: 40px 0 30px;
    z-index: 2;
}

.about-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.about-eyebrow {
    color: var(--muted);
    display: inline-block;
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-title span {
    display: block;
    color: #7f8896;
}

.about-desc {
    margin-top: 20px;
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.about-left img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.about-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 28px;
}

.about-small img {
    width: 100%;
    height: 246px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.about-left img,
.about-small img {
    transition: transform .4s ease;
}

.about-left:hover img,
.about-small:hover img {
    transform: scale(1.04);
}

@media (max-width:900px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-left img {
        height: 320px;
    }

    .about-right {
        grid-template-rows: auto;
    }

    .about-small img {
        height: 220px;
    }

}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
