
/* ============================================================
   NEW WORLD-CLASS ABOUT PAGE STYLES
   ============================================================ */

/* ===== DARK CINEMATIC HERO ===== */
.about-hero-dark {
    position: relative;
    background: #050812;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.about-hero-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 65% at 80% 50%, rgba(227,27,72,0.13) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 15% 30%, rgba(188,46,145,0.09) 0%, transparent 60%);
    pointer-events: none;
}
.ahd-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.ahd-bg-glow--1 {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(227,27,72,0.06) 0%, transparent 70%);
}
.ahd-bg-glow--2 {
    width: 400px; height: 400px;
    bottom: -100px; left: 5%;
    background: radial-gradient(circle, rgba(188,46,145,0.05) 0%, transparent 70%);
}
.ahd-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.ahd-tag {
    display: inline-block;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(227,27,72,0.15);
    color: #dd4490;
    border: 1px solid rgba(227,27,72,0.3);
    margin-bottom: 22px;
}
.ahd-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
}
.ahd-accent { color: #E31B48; }
.ahd-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.68);
    margin-bottom: 32px;
    max-width: 500px;
}
.ahd-stats {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 14px;
    padding: 18px 22px;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
    gap: 0;
}
.ahd-stat {
    flex: 1;
    text-align: center;
    min-width: 70px;
}
.ahd-stat-num {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.ahd-stat-label {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}
.ahd-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    margin: 0 4px;
}
.ahd-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.ahd-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    color: #fff;
    box-shadow: 0 4px 20px rgba(227,27,72,0.35);
    transition: all 0.3s ease;
}
.ahd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(227,27,72,0.5);
}
.ahd-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.28);
    transition: all 0.3s ease;
}
.ahd-btn-outline:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.55);
}

/* Photo frame */
.ahd-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.ahd-photo-frame {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.07);
}
.ahd-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.ahd-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(5,8,18,0.65) 100%);
}
.ahd-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(5,8,18,0.88);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    padding: 8px 14px;
    z-index: 5;
}
.ahd-badge div strong {
    display: block;
    font-size: 0.73rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.ahd-badge div span {
    display: block;
    font-size: 0.58rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}
.ahd-badge--tl { top: 14px; left: 14px; }
.ahd-badge--br { bottom: 14px; right: 14px; }
.ahd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 460px;
}
.ahd-chip {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
}

/* ===== STORY SECTION ===== */
.story-visual-new {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.story-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.story-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.story-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.11);
}
.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.stat-card-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.bbbee-badge {
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(227,27,72,0.28);
}
.bbbee-inner { color: #fff; }
.bbbee-level {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.bbbee-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 4px;
}
.bbbee-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.story-intro {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 36px;
}
.timeline-item--latest .timeline-year {
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    box-shadow: 0 4px 16px rgba(227,27,72,0.35);
}

/* ===== FOUNDER ===== */
.founder-name-sub {
    font-size: 1rem;
    font-weight: 600;
    color: #E31B48;
    margin-bottom: 18px;
    margin-top: -16px;
}

/* ===== SHARED LABEL ===== */
.section-label-center {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

/* ===== VALUES 6-UP ===== */
.values-grid--6 {
    grid-template-columns: repeat(3, 1fr);
}

/* ===== INDUSTRIES ===== */
.industries-served {
    padding: 100px 0;
    background: #fff;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.industry-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #E31B48;
    text-decoration: none;
    transition: color 0.2s ease;
}
.industry-link:hover { color: #BC2E91; }

/* ===== NEW MANAGER CARDS ===== */
.managers-grid--new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 48px;
}
.manager-card--new {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}
.manager-card--new:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(227,27,72,0.12);
}
.manager-card--new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E31B48, #BC2E91);
    z-index: 2;
}
.manager-card--new .manager-image {
    height: 260px;
    border-radius: 0;
    margin: 0;
    width: 100%;
}
.manager-card--new .manager-content {
    padding: 22px 24px 28px;
}
.manager-role-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(227,27,72,0.09);
    color: #E31B48;
    border: 1px solid rgba(227,27,72,0.22);
    margin-bottom: 10px;
}
.manager-role-badge--blue  { background: rgba(37,99,235,0.08); color: #2563eb; border-color: rgba(37,99,235,0.2); }
.manager-role-badge--green { background: rgba(5,150,105,0.08); color: #059669; border-color: rgba(5,150,105,0.2); }
.manager-role-badge--purple{ background: rgba(124,58,237,0.08); color: #7c3aed; border-color: rgba(124,58,237,0.2); }
.manager-card--new .manager-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}
.manager-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.manager-card--new .manager-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
}

/* ===== CERT VISUAL ===== */
.cert-badge-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.cert-badge-outer {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(227,27,72,0.35);
    animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
    0%,100% { box-shadow: 0 20px 50px rgba(227,27,72,0.35); transform: scale(1); }
    50%      { box-shadow: 0 28px 60px rgba(227,27,72,0.5); transform: scale(1.04); }
}
.cert-badge-inner-ring {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cert-badge-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 6px;
}
.cert-badge-sub {
    display: block;
    font-size: 0.6rem;
    opacity: 0.72;
    letter-spacing: 1px;
    margin-top: 3px;
}
.cert-partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 220px;
}
.cert-partner {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.06);
    height: 56px;
}
.cert-partner img {
    max-width: 100%;
    max-height: 32px;
    object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ahd-text h1 { font-size: 2.6rem; }
}
@media (max-width: 900px) {
    .about-hero-dark { padding: 110px 0 70px; min-height: auto; }
    .ahd-container { grid-template-columns: 1fr; gap: 40px; }
    .ahd-visual { order: -1; }
    .ahd-photo { height: 320px; }
    .ahd-subtitle { max-width: 100%; }
    .values-grid--6 { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .story-visual-new { margin: 0 auto; max-width: 460px; width: 100%; }
}
@media (max-width: 768px) {
    .ahd-text h1 { font-size: 2rem; }
    .ahd-stat-num { font-size: 1.5rem; }
    .managers-grid--new { grid-template-columns: 1fr; }
    .manager-card--new .manager-image { height: 220px; }
    .cert-badge-outer { width: 140px; height: 140px; }
}
@media (max-width: 600px) {
    .ahd-text h1 { font-size: 1.7rem; }
    .values-grid--6 { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .story-stat-grid { grid-template-columns: 1fr 1fr; }
    .ahd-btns { flex-direction: column; align-items: flex-start; }
    .ahd-btn-primary, .ahd-btn-outline { width: 100%; max-width: 280px; justify-content: center; }
}

/* ===== HERO PHOTO COLLAGE ===== */
.ahd-collage {
    position: relative;
    width: 100%;
    max-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.ahd-col-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}
.ahd-col-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.ahd-col-item:hover img { transform: scale(1.06); }
.ahd-col-item--tl { border-radius: 20px 8px 8px 8px; }
.ahd-col-item--tr { border-radius: 8px 20px 8px 8px; }
.ahd-col-item--bl { border-radius: 8px 8px 8px 20px; }
.ahd-col-item--br { border-radius: 8px 8px 20px 8px; }

/* ===== SECTION LABEL CENTERED ===== */
.section-label-center {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E31B48;
    border: 1px solid rgba(227,27,72,0.35);
    border-radius: 30px;
    padding: 5px 16px;
    margin-bottom: 14px;
}

/* ===== JOURNEY STATS ROW ===== */
.journey-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}
.journey-stat-card {
    background: #ffffff;
    border: 1px solid rgba(8,31,44,0.08);
    box-shadow: 0 12px 30px rgba(8,31,44,0.06);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.journey-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227,27,72,0.3);
}
.journey-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.journey-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #081f2c;
    line-height: 1;
    margin-bottom: 6px;
}
.journey-stat-label {
    font-size: 0.82rem;
    color: #64748b;
    letter-spacing: 0.5px;
}

/* ===== COMPACT JOURNEY CARDS ===== */
.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.journey-card {
    background: #ffffff;
    border: 1px solid rgba(8,31,44,0.08);
    box-shadow: 0 12px 30px rgba(8,31,44,0.06);
    border-radius: 18px;
    padding: 24px 22px;
}
.journey-card--featured {
    border-color: rgba(227,27,72,0.18);
    background: linear-gradient(135deg, rgba(227,27,72,0.04), rgba(188,46,145,0.03));
}
.journey-year {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #E31B48;
    background: rgba(227,27,72,0.08);
    border: 1px solid rgba(227,27,72,0.22);
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 14px;
}
.journey-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #081f2c;
    margin: 0 0 8px;
}
.journey-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== ALTERNATING ZIGZAG TIMELINE ===== */
.tla-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tla-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(227,27,72,0.6), rgba(188,46,145,0.4), rgba(227,27,72,0.1));
    transform: translateX(-50%);
}
.tla-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    min-height: 120px;
    padding: 24px 0;
}
.tla-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.tla-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E31B48, #BC2E91);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(227,27,72,0.3);
    flex-shrink: 0;
}
.tla-dot--latest {
    width: 24px;
    height: 24px;
    box-shadow: 0 0 0 5px rgba(227,27,72,0.25), 0 0 20px rgba(227,27,72,0.4);
    animation: dot-pulse 2.5s ease-in-out infinite;
}
@keyframes dot-pulse {
    0%,100% { box-shadow: 0 0 0 5px rgba(227,27,72,0.25), 0 0 20px rgba(227,27,72,0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(227,27,72,0.15), 0 0 30px rgba(227,27,72,0.55); }
}
.tla-year-pill {
    background: rgba(227,27,72,0.08);
    border: 1px solid rgba(227,27,72,0.28);
    color: #E31B48;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.tla-year-pill--latest {
    background: linear-gradient(135deg, rgba(227,27,72,0.25), rgba(188,46,145,0.25));
    border-color: rgba(227,27,72,0.7);
    color: #ff4d72;
}
.tla-content {
    background: #ffffff;
    border: 1px solid rgba(8,31,44,0.08);
    box-shadow: 0 12px 30px rgba(8,31,44,0.06);
    border-radius: 16px;
    padding: 24px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.tla-content:hover {
    transform: translateY(-3px);
    border-color: rgba(227,27,72,0.25);
    background: #ffffff;
}
.tla-content--left { margin-right: 12px; }
.tla-content--right { margin-left: 12px; }
.tla-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #081f2c;
    margin: 0 0 8px;
}
.tla-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.tla-spacer { /* empty grid cell on opposite side */ }
.tla-item--latest .tla-content {
    border-color: rgba(227,27,72,0.2);
    background: linear-gradient(135deg, rgba(227,27,72,0.05), rgba(188,46,145,0.04));
}

/* ===== RESPONSIVE — TIMELINE & JOURNEY ===== */
@media (max-width: 900px) {
    .journey-stats-row { grid-template-columns: repeat(2, 1fr); }
    .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tla-wrapper::before { left: 20px; }
    .tla-item { grid-template-columns: 40px 1fr; grid-template-rows: auto; }
    .tla-mid { flex-direction: column; align-items: center; }
    .tla-content--left,
    .tla-content--right { margin: 0; grid-column: 2; grid-row: 1; }
    .tla-spacer { display: none; }
    .tla-item .tla-mid { grid-column: 1; grid-row: 1; }
    .tla-year-pill { font-size: 0.7rem; padding: 3px 8px; }
}
@media (max-width: 600px) {
    .journey-stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .journey-grid { grid-template-columns: 1fr; }
    .journey-stat-card { padding: 20px 14px; }
    .journey-stat-num { font-size: 1.6rem; }
    .tla-content { padding: 18px 16px; }
    .ahd-collage { max-width: 100%; }
}
