/* ═══════════════════════════════════════════════════════
   ABOUT PAGE CSS
   Add to: assets/css/pages.css (append at bottom)
   OR create as assets/css/about.css and enqueue separately
   ═══════════════════════════════════════════════════════ */

/* ── Shared Eyebrow Label ─────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-eyebrow--light {
    color: rgba(255,255,255,0.8);
}

.section-eyebrow--light::before {
    background: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════════ */
.about-hero {
    position: relative;
    height: 88vh;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
}

.about-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28, 40, 51, 0.95) 0%,
        rgba(28, 40, 51, 0.60) 45%,
        rgba(28, 40, 51, 0.20) 100%
    );
}

.about-hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 72px;
    color: white;
}

.about-hero__badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-hero__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 48px;
    font-weight: 400;
}

/* Stats bar */
.about-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 24px 36px;
    width: fit-content;
    flex-wrap: wrap;
    gap: 0;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 36px;
}

.about-stat:first-child {
    padding-left: 0;
}

.about-stat__num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat__label {
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.about-stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   2. OUR STORY
══════════════════════════════════════════════════════ */
.about-story {
    padding: 100px 0;
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story__text {
    display: flex;
    flex-direction: column;
}

.about-story__heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-story__text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-story__text strong {
    color: var(--primary);
    font-weight: 700;
}

.about-story__accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin-top: 16px;
}

/* Images layout */
.about-story__images {
    position: relative;
    height: 480px;
}

.about-story__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.about-story__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-story__img-main:hover img {
    transform: scale(1.04);
}

.about-story__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    border: 5px solid white;
}

.about-story__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
    line-height: 1.3;
}

.about-story__img-badge span {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

/* ══════════════════════════════════════════════════════
   3. MISSION / VISION / VALUES
══════════════════════════════════════════════════════ */
.about-mvv {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-mvv__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.about-mvv__top {
    text-align: center;
    margin-bottom: 60px;
}

.about-mvv__heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

/* Mission & Vision cards */
.about-mvv__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 60px;
}

.mvv-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-6px);
}

.mvv-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.mvv-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.mvv-card__text {
    font-size: 14.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin: 0;
}

/* Values */
.about-values {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 56px;
}

.about-values__heading {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 0.3px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.value-item__icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.value-item__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.value-item__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}

/* ══════════════════════════════════════════════════════
   4. CORE STRENGTHS
══════════════════════════════════════════════════════ */
.about-strengths {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-strengths__heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 56px;
    letter-spacing: -0.5px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.strength-card {
    background: white;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.strength-card:hover {
    box-shadow: 0 12px 40px rgba(46,187,111,0.12);
    border-color: rgba(46,187,111,0.3);
    transform: translateX(4px);
}

.strength-card:hover::before {
    opacity: 1;
}

.strength-card__num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: rgba(46,187,111,0.18);
    line-height: 1;
    flex-shrink: 0;
    min-width: 44px;
}

.strength-card__title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.strength-card__desc {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
}

/* ══════════════════════════════════════════════════════
   5. TESTIMONIALS
══════════════════════════════════════════════════════ */
.about-testimonials {
    background: var(--charcoal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-testimonials__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(46,187,111,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(255,158,100,0.06) 0%, transparent 40%);
    pointer-events: none;
}

.about-testimonials__heading {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 56px;
    letter-spacing: -0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-6px);
    border-color: rgba(46,187,111,0.3);
}

.testimonial-card__quote-mark {
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 0.6;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 20px;
    display: block;
}

.testimonial-card__text {
    font-size: 14.5px;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    flex-grow: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 20px;
}

.testimonial-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid rgba(46,187,111,0.4);
    flex-shrink: 0;
}

.testimonial-card__name {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.testimonial-card__role {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .about-story__grid    { grid-template-columns: 1fr; gap: 48px; }
    .about-story__images  { height: 340px; }
    .about-mvv__cards     { grid-template-columns: 1fr; }
    .values-grid          { grid-template-columns: repeat(2, 1fr); }
    .strengths-grid       { grid-template-columns: 1fr; }
    .testimonials-grid    { grid-template-columns: 1fr; gap: 20px; }
    .about-hero__stats    { gap: 0; }
    .about-stat           { padding: 0 20px; }
}

@media (max-width: 768px) {
    .about-hero           { height: 100svh; }
    .about-hero__stats    { flex-wrap: wrap; gap: 16px; padding: 20px 24px; }
    .about-stat__divider  { display: none; }
    .about-stat           { padding: 0 16px; }
    .about-story          { padding: 64px 0; }
    .about-story__images  { height: 280px; }
    .about-mvv            { padding: 72px 0; }
    .values-grid          { grid-template-columns: 1fr; }
    .about-strengths      { padding: 72px 0; }
    .about-testimonials   { padding: 72px 0; }
}

@media (max-width: 480px) {
    .about-hero__title    { font-size: 30px; }
    .about-story__img-secondary { display: none; }
    .about-story__img-main { width: 100%; position: relative; height: 240px; }
    .about-story__images  { height: auto; }
    .strength-card        { flex-direction: column; gap: 8px; }
}