﻿/* ================= HERO ================= */
.about-hero {
    position: relative;
    background: url('../images/about/about-bg.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-hero {
    position: relative;
    background: url('../images/about/service-bg.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero {
    position: relative;
    background: url('../images/about/products-bg.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont-hero {
    position: relative;
    background: url('../images/about/contact-bg.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
}

    .hero-content h1 {
        font-size: 42px;
    }

/* ================= STORY ================= */
.about-story {
    display: flex;
    gap: 40px;
    padding: 70px 0;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-img {
    flex: 1;
}

    .story-img img {
        width: 100%;
        border-radius: 12px;
    }

/* ================= BUSINESS ================= */
.business-section {
    background: #f8fafc;
    padding: 70px 0;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
}

.business-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: 0.3s;
}

    .business-card:hover {
        transform: translateY(-5px);
    }

/* ICON */
.biz-icon {
    height: 50px;
    margin-bottom: 10px;
}

/* ================= MV ================= */
.about-mv {
    background: #f8fafc;
    padding: 60px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.mv-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

/* ================= INFRA ================= */
.infra-section {
    background: url('../images/about/ev-factory.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.infra-box {
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 10px;
}

/* ================= WHY ================= */
.about-why {
    padding: 60px 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.why-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 10px;
}

.why-icon {
    height: 45px;
    margin-bottom: 10px;
}

/* ================= CTA ================= */
.about-cta {
    background: url('../images/about/ev-road.jpg') center/cover no-repeat;
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
}

    .about-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

    .about-cta .container {
        position: relative;
    }

/* ================= MOBILE ================= */
@media(max-width:768px) {
    .about-story {
        flex-direction: column;
    }
}
