/* ===== ABOUT PAGE ===== */

/* HERO — photo banner matching other service pages */
.about-hero-override {
    height: 520px;
}

.about-hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin: 12px 0 0;
    letter-spacing: 0.5px;
}

/* kept for fallback */
.about-hero {
    margin-top: 70px;
    background: linear-gradient(160deg, #012a9e 0%, #091660 100%);
    padding: 100px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3.5px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin: 0 0 20px;
}

.about-hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    color: white;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.about-hero-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* CENTERED BODY */
.about-body {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 28px 72px;
}

.about-statement {
    font-size: 1.4rem;
    font-weight: 600;
    color: #012a9e;
    line-height: 1.65;
    margin: 0 0 48px;
    font-style: italic;
    border-left: 3px solid #012a9e;
    padding-left: 24px;
}

.about-story p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0 0 22px;
}

.about-signature {
    font-size: 1.1rem;
    font-style: italic;
    color: #012a9e;
    font-weight: 600;
    margin: 36px 0 0;
}

/* STATS ROW */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 64px 0;
    border-top: 1px solid #e8ecf1;
    border-bottom: 1px solid #e8ecf1;
    padding: 40px 0;
}

.about-stat {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid #e8ecf1;
}

.about-stat:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #012a9e;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* CONTACT BLOCK */
.about-contact-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 36px;
    background: #f4f6fb;
    border-radius: 12px;
    margin-top: 16px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #333;
}

.contact-row svg { flex-shrink: 0; color: #012a9e; }
.contact-row a { color: #012a9e; text-decoration: none; font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

/* DIVIDER */
.about-divider {
    width: 48px;
    height: 3px;
    background: #012a9e;
    margin: 48px 0;
    border-radius: 2px;
}

/* PHOTO PLACEHOLDER */
.about-photo-placeholder {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 28px 72px;
}

.about-photo-slot {
    width: 100%;
    aspect-ratio: 16/7;
    background: #e8ecf1;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.9rem;
    border: 2px dashed #ccc;
}

.about-photo-slot svg {
    opacity: 0.35;
}

.about-photo-slot span {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.about-photo-slot small {
    font-size: 0.78rem;
    opacity: 0.7;
}

/* BEFORE/AFTER ROW */
.about-photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: #111;
}

.photo-row-item {
    position: relative;
    overflow: hidden;
}

.photo-row-item img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.photo-row-item:hover img {
    transform: scale(1.03);
}

.photo-row-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(1,42,158,0.85);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.about-photo-row-wrapper {
    position: relative;
}

.about-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 36px;
}

/* CTA */
.about-cta {
    background: linear-gradient(135deg, #012a9e 0%, #0142c8 100%);
    color: white;
    text-align: center;
    padding: 80px 40px;
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 0 0 12px;
}

.about-cta p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin: 0 auto 36px;
    max-width: 460px;
    line-height: 1.7;
}

.about-cta-btn {
    display: inline-block;
    padding: 15px 44px;
    background: white;
    color: #012a9e;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero { padding: 80px 20px 70px; }
    .about-hero h1 { font-size: 2.6rem; }
    .about-statement { font-size: 1.15rem; }
    .about-stats { flex-direction: column; gap: 32px; border: none; padding: 32px 0; }
    .about-stat { border-right: none; border-bottom: 1px solid #e8ecf1; padding-bottom: 28px; }
    .about-stat:last-child { border-bottom: none; }
    .about-photo-row { grid-template-columns: 1fr; }
    .about-cta { padding: 60px 28px; }
    .about-cta h2 { font-size: 1.6rem; }
}

@media (max-width: 700px) {
    .about-hero-override { height: 300px; }
}
