﻿h2, h1 {
    color: var(--gold);
}

.about-renovex {
    padding-bottom: 40px;
}

.about-hero {
    max-width: 100% !important;
    padding: 96px;
    background: url(../Home/img/bg.png);
    margin-bottom: 40px;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero-text {
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 1px 10px var(--light);
    font-weight: 900;
}

.contact-hero {
    max-width: 100% !important;
    padding: 10px;
    background: url(../Home/img/bg.png);
}
/* HERO */
.hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-left h1 {
    font-size: 44px;
    font-family: var(--poppins);
    color: var(--gold);
}

.hero-left p {
    color: var(--text-light);
    margin: 15px 0 25px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

    .hero-stats strong {
        font-size: 22px;
    }

    .hero-stats span {
        font-size: 13px;
        color: var(--text-light);
    }

.hero-right img {
    width: 100%;
    border-radius: 18px;
}

/* INFO SECTIONS */
.info-section {
    margin: 90px auto;
}

.hero-stats > div {
    text-align: center;
    line-height: 1px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .info-grid.reverse {
        direction: rtl;
    }

        .info-grid.reverse * {
            direction: ltr;
        }

.info-images {
    position: relative;
}

    .info-images img {
        width: 100%;
        border-radius: 16px;
    }

.float-img {
    position: absolute;
    width: 55%;
    bottom: -30px;
    right: -30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.info-text ul li {
    margin: 10px 0;
    color: var(--text-light);
}

/* VIDEO */
.video-section {
    text-align: center;
}

.video-box {
    position: relative;
    margin-top: 30px;
}

    .video-box img {
        width: 100%;
        border-radius: 20px;
    }

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 70px;
    height: 70px;
    background: var(--yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 15px;
}

    .team-card img {
        width: 100%;
        border-radius: 14px;
    }

    .team-card span {
        font-size: 13px;
        color: var(--text-light);
    }

/* MOBILE */
@media(max-width: 900px) {
    .hero-wrap,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .float-img {
        position: static;
        width: 100%;
        margin-top: 15px;
    }
}
