/* =========================================
   about.css — page-specific styles
   Extends: assets/css/styles.css
   All root variables from styles.css are
   available here — do NOT redefine :root.
   ========================================= */

/* ── Page Hero (shared across pages via page-hero class) ── */
.page-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;
    overflow: hidden;
    background: var(--navy);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .25;
    animation: slowZoom 22s ease-in-out infinite alternate;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(10, 22, 40, .97) 0%,
            rgba(10, 22, 40, .70) 60%,
            rgba(215, 38, 56, .12) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.breadcrumb-custom {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.breadcrumb-custom li {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, .55);
    transition: color var(--transition);
}

.breadcrumb-custom a:hover {
    color: var(--red);
}

.breadcrumb-custom i {
    font-size: .6rem;
    color: rgba(255, 255, 255, .3);
}

.breadcrumb-custom [aria-current="page"] {
    color: var(--gold);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: .04em;
    line-height: 1.05;
    color: var(--white);
    animation: fadeInUp .8s ease both;
}

.page-hero__title span {
    color: var(--red);
}

.page-hero__sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .65);
    max-width: 560px;
    line-height: 1.7;
    margin-top: 1.2rem;
    animation: fadeInUp .9s .15s ease both;
}

/* ── About Overview Section ── */
.about-overview {
    padding: 90px 0;
    background: var(--off-white);
}

.about-body-text {
    font-size: .97rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

/* Quick stats inline bar */
.about-quick-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-top: 2.2rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--gray-200);
    flex-wrap: wrap;
}

.qs-item {
    text-align: center;
}

.qs-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    letter-spacing: .04em;
    color: var(--red);
    line-height: 1;
}

.qs-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: .3rem;
}

.qs-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

/* ── Core Values Section ── */
.about-values {
    padding: 90px 0;
    background: var(--white);
}

.value-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    width: 68px;
    height: 68px;
    background: rgba(215, 38, 56, .09);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.7rem;
    margin: 0 auto 1.2rem;
    transition: all var(--transition);
}

.value-card:hover .value-icon {
    background: var(--red);
    color: var(--white);
    transform: rotateY(360deg);
    transition: all .6s ease;
}

.value-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: .6rem;
}

.value-desc {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ── Team Section ── */
.about-team {
    padding: 90px 0;
    background: var(--off-white);
}

.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(215, 38, 56, .18);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.9rem;
    margin: 0 auto 1.2rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--red);
    transition: all var(--transition);
}

.team-card:hover .team-avatar {
    background: var(--red);
    border-color: var(--navy);
}

.team-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: .3rem;
}

.team-role {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .8rem;
}

.team-bio {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ── Trust Section ── */
.about-trust {
    padding: 90px 0;
    background: var(--white);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.trust-item:last-child {
    border-bottom: none;
}

.trust-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(215, 38, 56, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
}

.trust-title {
    font-weight: 700;
    font-size: .95rem;
    color: var(--navy);
    margin-bottom: .2rem;
}

.trust-desc {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.55;
}

/* Trust image grid */
.trust-image-grid {
    position: relative;
}

.tg-main {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 440px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.tg-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

/* ── CTA Band (shared with service.php via same class) ── */
.about-cta-band {
    background: var(--red);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 30px,
            rgba(0, 0, 0, .04) 30px, rgba(0, 0, 0, .04) 60px);
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: .04em;
    color: var(--white);
    position: relative;
}

.cta-band-sub {
    font-size: .97rem;
    color: rgba(255, 255, 255, .75);
    margin-top: .5rem;
    position: relative;
}

.btn-outline-custom-light {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .04em;
    padding: .85rem 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, .55);
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.btn-outline-custom-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .tg-accent {
        display: none;
    }

    .page-hero {
        min-height: auto;
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 767px) {

    .about-overview,
    .about-values,
    .about-team,
    .about-trust {
        padding: 60px 0;
    }

    .tg-main {
        height: 300px;
    }

    .page-hero__title {
        font-size: 2.8rem;
    }

    .about-quick-stats {
        gap: 1.5rem;
    }

    .qs-divider {
        display: none;
    }
}