/* About Page Specific Styles */
:root {
    --ab-dark: #113264;
    --ab-gold: #eab308;
    --ab-bg-light: #f8fafc;
    --ab-text-main: #334155;
    --ab-text-muted: #64748b;
}

body.about-page {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: var(--ab-text-main);
    margin: 0;
    padding: 0;
}

/* Hero Section */
.ab-hero {
    background: #113264;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}
.ab-hero h1 {
    color: #fff !important;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    font-family: 'Inter', sans-serif;
}
.ab-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Who We Are */
.ab-who {
    padding: 5rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}
.ab-who-img {
    flex: 1;
}
.ab-who-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}
.ab-who-content {
    flex: 1;
}
.ab-who-content h2 {
    color: #113264;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.ab-who-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #475569;
}

/* Mission & Values */
.ab-mission {
    background: #f8fafc;
    padding: 5rem 1rem;
    text-align: center;
}
.ab-mission h2 {
    color: #113264;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
.ab-mission-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.ab-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.ab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.ab-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.ab-card h3 {
    color: #113264;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.ab-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us */
.ab-why {
    padding: 5rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.ab-why h2 {
    color: #113264;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}
.ab-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
}
.ab-feature {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: background 0.3s ease;
}
.ab-feature:hover {
    background: #f1f5f9;
}
.ab-feature-icon {
    font-size: 1.8rem;
    width: 40px;
    text-align: center;
    line-height: 1;
}
.ab-feature-text h4 {
    color: #113264;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}
.ab-feature-text p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Commitment */
.ab-commit {
    background: #113264;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}
.ab-commit-inner {
    max-width: 800px;
    margin: 0 auto;
}
.ab-commit h2 {
    color: #fff !important;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.ab-commit p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}
.ab-commit-btns {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn-yellow {
    background: #eab308;
    color: #000;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-yellow:hover { background: #ca8a04; }
.btn-white {
    background: #fff;
    color: #113264;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-white:hover { background: #f1f5f9; }

/* Get in Touch */
.ab-contact {
    padding: 4rem 1rem 5rem;
    text-align: center;
    background: #fff;
}
.ab-contact h2 {
    color: #113264;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.ab-contact p {
    color: #64748b;
    margin-bottom: 2rem;
}
.ab-contact-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn-outline {
    background: #fff;
    color: #113264;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #cbd5e1;
    transition: background 0.3s;
}
.btn-outline:hover { background: #f8fafc; }
.btn-green {
    background: #22c55e;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-green:hover { background: #16a34a; }

@media (max-width: 992px) {
    .ab-who { flex-direction: column; gap: 2rem; }
    .ab-mission-grid { grid-template-columns: 1fr; }
    .ab-why-grid { grid-template-columns: 1fr; }
    .ab-commit-btns, .ab-contact-btns { flex-direction: column; }
}
