/* About Us — aligns with site tokens (style.css) and service pages */

:root {
    --about-primary: #ca3200;
    --about-accent: #34ad54;
    --about-ink: #091e3e;
    --about-soft: #f6faf8;
    --about-border: rgba(9, 30, 62, 0.1);
    --about-hero-bg: url("../img/aboutus-banner.jpg");
}

.about-page {
    background: #fff;
}

.about-hero {
    position: relative;
    color: #fff;
    padding: 72px 0 56px;
    overflow: hidden;
    background-color: #091e3e;
    background-image:
        linear-gradient(120deg, rgba(9, 30, 62, 0.88) 0%, rgba(20, 101, 90, 0.72) 100%),
        var(--about-hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -200px;
    bottom: -200px;
    background: radial-gradient(circle at center, rgba(202, 50, 0, 0.35), rgba(202, 50, 0, 0) 65%);
    z-index: 0;
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
}

.about-breadcrumb {
    font-size: 0.9rem;
    opacity: 0.92;
    margin-bottom: 1rem;
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.about-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.about-hero-title {
    color: #fff !important;
    font-weight: 900;
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: clamp(2rem, 3vw, 2.85rem);
    line-height: 1.12;
    max-width: 720px;
}

.about-hero-lead {
    color: rgba(255, 255, 255, 0.93);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 22px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-btn-shadow {
    box-shadow: 0 8px 22px rgba(202, 50, 0, 0.25);
}

.about-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-hero-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-hero-meta-item i {
    color: var(--about-accent);
    margin-top: 3px;
}

.about-hero-meta-item strong {
    display: block;
    font-size: 0.95rem;
}

.about-hero-meta-item span {
    font-size: 0.88rem;
    opacity: 0.88;
}

.about-section {
    position: relative;
}

.about-section-kicker {
    color: var(--about-accent);
    font-weight: 800;
    letter-spacing: 0.28px;
    text-transform: uppercase;
    font-size: 0.88rem;
}

.about-section-title {
    font-weight: 900;
    margin-top: 8px;
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2.1vw, 2.1rem);
    line-height: 1.22;
    color: var(--about-ink);
}

.about-section-subtitle {
    color: rgba(9, 30, 62, 0.72);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 640px;
}

.about-soft-bg {
    background: var(--about-soft);
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(9, 30, 62, 0.12);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    max-width: calc(100% - 40px);
}

.about-img-badge strong {
    display: block;
    color: var(--about-ink);
    font-size: 1.05rem;
}

.about-img-badge span {
    font-size: 0.88rem;
    color: rgba(9, 30, 62, 0.65);
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(9, 30, 62, 0.88);
    line-height: 1.55;
}

.about-checklist li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.about-stats {
    border-radius: 18px;
    background: linear-gradient(135deg, #091e3e 0%, #0d2f4d 100%);
    color: #fff;
    padding: 36px 24px;
    box-shadow: 0 16px 40px rgba(9, 30, 62, 0.2);
}

.about-stat {
    text-align: center;
    padding: 8px 12px;
}

.about-stat-num {
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.about-stat-num span {
    color: var(--about-accent);
}

.about-stat-label {
    font-size: 0.88rem;
    opacity: 0.88;
    margin-top: 6px;
}

.about-card {
    height: 100%;
    border-radius: 18px;
    border: 1px solid var(--about-border);
    background: #fff;
    padding: 26px 22px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-card:hover {
    box-shadow: 0 14px 36px rgba(9, 30, 62, 0.08);
    transform: translateY(-2px);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 173, 84, 0.12);
    color: var(--about-accent);
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.about-card-title {
    font-weight: 800;
    font-size: 1.12rem;
    margin-bottom: 10px;
    color: var(--about-ink);
}

.about-card-text {
    margin: 0;
    color: rgba(9, 30, 62, 0.72);
    line-height: 1.6;
    font-size: 0.96rem;
}

.about-mv-card {
    border-radius: 18px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid var(--about-border);
}

.about-mv-card--mission {
    background: linear-gradient(180deg, #fff 0%, #f0f9f4 100%);
}

.about-mv-card--vision {
    background: linear-gradient(180deg, #fff 0%, #eef6fb 100%);
}

.about-mv-label {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--about-primary);
    margin-bottom: 10px;
}

.about-expertise-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    border: 1px solid var(--about-border);
    padding: 22px 18px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-expertise-link:hover {
    border-color: rgba(202, 50, 0, 0.35);
    box-shadow: 0 10px 28px rgba(9, 30, 62, 0.07);
    color: inherit;
}

.about-expertise-link h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--about-ink);
}

.about-expertise-link p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(9, 30, 62, 0.65);
    line-height: 1.5;
}

.about-expertise-link .about-arrow {
    color: var(--about-primary);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 12px;
}

.about-process-step {
    position: relative;
    padding-left: 48px;
    margin-bottom: 22px;
}

.about-process-step:last-child {
    margin-bottom: 0;
}

.about-process-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--about-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video-wrap {
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(9, 30, 62, 0.18);
}

.about-video-wrap video {
    width: 100%;
    height: auto;
    display: block;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .about-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.about-gallery img:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.about-cta {
    border-radius: 20px;
    padding: 44px 28px;
    background: linear-gradient(120deg, #091e3e 0%, #145a4a 100%);
    color: #fff;
    text-align: center;
}

.about-cta h2 {
    color: #fff !important;
    font-weight: 900;
    margin-bottom: 12px;
}

.about-cta p {
    opacity: 0.92;
    max-width: 560px;
    margin: 0 auto 22px;
    line-height: 1.65;
}

@media (max-width: 575.98px) {
    .about-stats .row > div {
        margin-bottom: 12px;
    }
}
