/* =============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================= */

.about-page {
    margin-top: var(--nav-h); /* Account for fixed navbar */
    background-color: #fff;
}

/* Unified About Hero */
.about-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.45);
}

/* No Card for About Hero */
.about-hero .hero__glass {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    width: 900px;
    max-width: 100%;
    text-align: center;
    animation: aboutReveal 1.2s ease-out;
    margin-left: -5%;
}

@keyframes aboutReveal {
    from { opacity: 0; transform: scale(0.98) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.who-we-are__heading {
    font-size: clamp(34px, 6vw, 56px);
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.who-we-are__body {
    font-size: 19px;
    line-height: 1.8;
    color: #fff;
    max-width: 850px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.text-white { color: #ffffff !important; }

/* Shared utility for green text */
.g {
    color: #4eff74;
    font-weight: 700;
}

/* What Drives Us Section */
.drives-us {
    padding: 10px 40px 60px;
    background-color: #fff;
    max-width: 1100px;
    margin: 0 auto;
}

.drives-us__inner {
    width: 100%;
}

.drives-us__heading {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
    margin-left: 34px; /* Align with Who We Are heading */
}

.drives-us__cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.drive-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    max-width: 380px;
    background-color: #fffaf0; /* Light cream */
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.drive-card__icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.drive-card__icon--blue {
    color: #2196F3;
}

.drive-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.drive-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.drive-card__text strong {
    font-weight: 700;
}

/* Our Commitment Section */
.commitment {
    padding: 100px 40px;
    background-color: #fff;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.commitment__inner {
    width: 100%;
}

.commitment__heading {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 40px;
}

.commitment__body {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .drives-us__cards {
        flex-direction: column;
        align-items: center;
    }
    .drive-card {
        width: 100%;
    }
    .about-hero .hero__glass {
        margin-left: 0;
        width: min(100%, 96%);
        padding: 38px 26px;
    }
}

@media (max-width: 768px) {
    .who-we-are__heading {
        font-size: 32px;
        margin-left: 0;
    }
    .who-we-are__body {
        margin-left: 0;
    }
    .about-hero {
        min-height: 70vh;
        padding: 0 16px;
    }
    .about-hero .hero__glass {
        width: 100%;
        margin-left: 0;
    }
    .about-hero-img {
        padding: 20px;
    }
    .drives-us {
        padding: 30px 16px;
    }
}
