﻿/* ══════════════════════════════════════════
   ABOUT PAGE STYLES
   Matches existing PreWish design system
══════════════════════════════════════════ */

/* ── INLINE LINKS ── */
.about-inline-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(20,185,140,.4);
    transition: all .2s;
}

    .about-inline-link:hover {
        color: var(--primary-dark);
        border-bottom-style: solid;
    }

.about-inline-link-white {
    color: rgba(255,255,255,.9);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.4);
    transition: all .2s;
}

    .about-inline-link-white:hover {
        color: #fff;
        border-bottom-style: solid;
    }

/* ══════════════════════════════════════════
   ABOUT INTRO SECTION
══════════════════════════════════════════ */
.about-intro-section {
    background: #fff;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-light);
    border: 1px solid rgba(20,185,140,.25);
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

    .about-badge i {
        font-size: .9rem;
    }

.about-main-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

    .about-main-title em {
        font-style: normal;
        color: var(--primary);
    }

.about-desc {
    font-size: .97rem;
    line-height: 1.8;
    color: #4a5f70;
    margin-bottom: 14px;
}

/* Intro Stats */
.about-intro-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 20px 0 0;
}

.intro-stat {
    text-align: center;
    flex: 1;
}

.intro-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.intro-stat-label {
    display: block;
    font-size: .75rem;
    color: #7f96a8;
    margin-top: 4px;
}

.intro-stat-divider {
    width: 1px;
    height: 40px;
    background: #e2ecf1;
}

/* About Image Wrapper */
.about-img-wrapper {
    position: relative;
    display: inline-block;
}

    .about-img-wrapper img {
        max-width: 480px;
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(13,27,42,.12);
    }

.about-floating-card {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(13,27,42,.14);
    border: 1px solid rgba(20,185,140,.15);
}

    .about-floating-card i {
        font-size: 1.8rem;
        color: var(--primary);
    }

    .about-floating-card strong {
        display: block;
        font-family: var(--font-display);
        font-size: .9rem;
        font-weight: 700;
        color: var(--dark);
    }

    .about-floating-card span {
        font-size: .75rem;
        color: #7f96a8;
    }

/* ══════════════════════════════════════════
   MISSION / VISION SECTION
══════════════════════════════════════════ */
.mission-section {
    background: #f8fbfd;
}

.mv-card {
    padding: 32px 28px;
    border-radius: 16px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .mv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(13,27,42,.12);
    }

.mv-card--mission {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
    color: rgba(255,255,255,.75);
}

.mv-card--vision {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: rgba(255,255,255,.85);
}

.mv-card--values {
    background: #fff;
    border: 1px solid #e2ecf1;
    color: #4a5f70;
    box-shadow: 0 4px 20px rgba(13,27,42,.06);
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 18px;
}

.mv-card--values .mv-icon {
    background: var(--primary-light);
    color: var(--primary);
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.mv-card--values h3 {
    color: var(--dark);
}

.mv-card p {
    font-size: .9rem;
    line-height: 1.75;
    margin: 0;
}

/* ══════════════════════════════════════════
   SERVICE OVERVIEW CARDS
══════════════════════════════════════════ */
.services-overview-section {
    background: #fff;
}

.service-overview-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e8f0f5;
    border-radius: 14px;
    padding: 26px 24px;
    height: 100%;
    transition: all .28s ease;
    color: inherit;
    position: relative;
    overflow: hidden;
}

    .service-overview-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--primary);
        transition: width .3s ease;
    }

    .service-overview-card:hover {
        border-color: rgba(20,185,140,.3);
        box-shadow: 0 12px 40px rgba(20,185,140,.1);
        transform: translateY(-3px);
        color: inherit;
    }

        .service-overview-card:hover::before {
            width: 100%;
        }

.soc-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: all .25s;
}

.service-overview-card:hover .soc-icon {
    background: var(--primary);
    color: #fff;
}

.service-overview-card h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-overview-card p {
    font-size: .85rem;
    color: #6a7f8e;
    line-height: 1.65;
    margin-bottom: 14px;
}

.soc-link {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-about-section {
    background: #f8fbfd;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(20,185,140,.15);
}

.why-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.why-item p {
    font-size: .87rem;
    color: #6a7f8e;
    line-height: 1.65;
    margin: 0;
}

/* Metric Cards */
.about-metric-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    color: rgba(255,255,255,.7);
    transition: transform .3s ease;
}

    .about-metric-card:hover {
        transform: translateY(-4px);
    }

.about-metric-card--green {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: rgba(255,255,255,.85);
}

.about-metric-card i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.about-metric-card--green i {
    color: rgba(255,255,255,.9);
}

.about-metric-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.about-metric-card p {
    font-size: .8rem;
    margin: 0;
}

/* ══════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════ */
.process-section {
    background: #fff;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 200px;
    text-align: center;
    padding: 0 10px;
}

.ps-number {
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: rgba(20,185,140,.4);
    margin-bottom: 12px;
}

.ps-icon {
    width: 62px;
    height: 62px;
    background: var(--primary-light);
    border: 2px solid rgba(20,185,140,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 14px;
    transition: all .3s ease;
}

.process-step:hover .ps-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: scale(1.1);
}

.process-step h5 {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.process-step p {
    font-size: .82rem;
    color: #7f96a8;
    line-height: 1.6;
}

.process-connector {
    align-self: center;
    color: rgba(20,185,140,.3);
    font-size: 1.2rem;
    padding: 0 4px;
    margin-top: -20px;
}

@media (max-width: 767px) {
    .process-connector {
        display: none;
    }

    .process-step {
        min-width: 45%;
        margin-bottom: 24px;
    }
}

/* ══════════════════════════════════════════
   TEAM SECTION
══════════════════════════════════════════ */
.team-section {
    background: #f8fbfd;
}

.team-card {
    background: #fff;
    border: 1px solid #e8f0f5;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: all .3s ease;
}

    .team-card:hover {
        border-color: rgba(20,185,140,.25);
        box-shadow: 0 14px 40px rgba(13,27,42,.1);
        transform: translateY(-4px);
    }

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 2px solid rgba(20,185,140,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0 auto 16px;
    overflow:hidden;
}

    .team-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; /* removes unwanted spacing */
    }

.team-card h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card > span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: .83rem;
    color: #6a7f8e;
    line-height: 1.65;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

    .team-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #f0f6fa;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7f96a8;
        font-size: .85rem;
        text-decoration: none;
        transition: all .25s;
    }

        .team-social a:hover {
            background: var(--primary);
            color: #fff;
        }

/* ══════════════════════════════════════════
   TECH STRIP
══════════════════════════════════════════ */
.tech-strip-section {
    background: #fff;
}

.tech-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f6fa;
    border: 1px solid #dce8ef;
    color: var(--dark-3);
    font-size: .85rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    transition: all .25s;
    cursor: default;
}

    .tech-pill i {
        color: var(--primary);
    }

    .tech-pill:hover {
        background: var(--primary-light);
        border-color: rgba(20,185,140,.3);
        color: var(--primary-dark);
        transform: translateY(-2px);
    }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonial-section {
    background: #f8fbfd;
}

.testi-card {
    background: #fff;
    border: 1px solid #e8f0f5;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    transition: all .3s ease;
    position: relative;
}

    .testi-card:hover {
        box-shadow: 0 12px 40px rgba(13,27,42,.09);
        transform: translateY(-3px);
    }

.testi-card--featured {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(13,27,42,.2);
}

.testi-stars {
    color: #f5c518;
    font-size: .85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-card p {
    font-size: .88rem;
    line-height: 1.75;
    color: #4a5f70;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-card--featured p {
    color: rgba(255,255,255,.75);
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
}

.testi-card--featured .testi-author strong {
    color: #fff;
}

.testi-author span {
    font-size: .78rem;
    color: #7f96a8;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 767px) {
    .about-intro-stats {
        gap: 0;
    }

    .about-floating-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .about-img-wrapper {
        padding-bottom: 30px;
    }

    .tech-strip {
        gap: 8px;
    }

    .tech-pill {
        font-size: .78rem;
        padding: 7px 14px;
    }
}

.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    padding: 70px 25px;
    border-radius: var(--radius-lg);
    margin: 60px 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(20,185,140,0.15);
}

    /* subtle glow accents */
    .cta-section::before,
    .cta-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: var(--primary);
        filter: blur(100px);
        opacity: 0.12;
        border-radius: 50%;
        z-index: 0;
    }

    .cta-section::before {
        top: -80px;
        left: -80px;
    }

    .cta-section::after {
        bottom: -100px;
        right: -100px;
    }

    /* ensure content above glow */
    .cta-section * {
        position: relative;
        z-index: 1;
    }

    /* TITLE */
    .cta-section h2 {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 2.1rem;
        color: var(--white);
        margin-bottom: 12px;
        letter-spacing: -0.4px;
    }

    /* PARAGRAPH */
    .cta-section p {
        color: var(--text-muted);
        font-size: 1.05rem;
        max-width: 650px;
        margin: 0 auto 26px;
        line-height: 1.7;
    }

/* BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 0 0 rgba(20,185,140,0);
    position: relative;
    overflow: hidden;
}

    /* BUTTON HOVER - GLOW PULSE */
    .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(20,185,140,0.45);
        background: var(--primary-dark);
    }

    /* animated shine effect */
    .cta-btn::after {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,0.25), transparent );
        transform: skewX(-20deg);
    }

    .cta-btn:hover::after {
        animation: shine 0.9s ease;
    }

@keyframes shine {
    0% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}

/* ICON */
.cta-btn i {
    transition: transform var(--transition);
}

.cta-btn:hover i {
    transform: translateX(6px);
}

/* CONTACT INFO */
.cta-contact {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .cta-contact span {
        padding: 7px 14px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(20,185,140,0.15);
        border-radius: 999px;
        transition: var(--transition);
    }

        .cta-contact span:hover {
            background: var(--primary-light);
            color: var(--dark);
            transform: translateY(-2px);
        }
