/* ============================================================
   ABOUT PAGE STYLES
============================================================ */
:root {
    --orange: #0891df;
    --orange-dark: #0672b0;
    --dark:  #0d0d0d;
    --dark2: #161616;
    --dark3: #1e1e1e;
    --gray:  #777;
    --light: #f5f5f5;
    --font-c: 'Barlow Condensed', 'Barlow', sans-serif;
}

/* ---- PAGE HERO ---- */
.ab-hero {
    position: relative;
    background: var(--dark);
    min-height: 360px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ab-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: .25;
}
.ab-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.75) 100%);
}
.ab-hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0 70px;
}
.ab-hero-content .page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.ab-hero-content .page-tag::before {
    content: '';
    width: 30px; height: 2px;
    background: var(--orange);
    display: inline-block;
}
.ab-hero-content h1 {
    font-family: var(--font-c);
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}
.ab-hero-content h1 span { color: var(--orange); }
.ab-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
}
.ab-breadcrumb a { color: #888; }
.ab-breadcrumb a:hover { color: var(--orange); }
.ab-breadcrumb .sep { color: var(--orange); }
.ab-breadcrumb .current { color: #ccc; }
.ab-hero-right {
    position: relative;
    z-index: 2;
    text-align: right;
}
.ab-quick-stats {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    text-align: center;
}
.ab-quick-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 18px 22px;
    backdrop-filter: blur(8px);
    transition: border-color .3s;
}
.ab-quick-stat:hover { border-color: var(--orange); }
.ab-quick-stat .num {
    font-family: var(--font-c);
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}
.ab-quick-stat .lbl { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* ---- SECTION SHARED ---- */
.ab-section { padding: 90px 0; }
.ab-section-dark { background: var(--dark2); }
.ab-section-light { background: #fff; }
.ab-section-gray  { background: #f7f7f7; }
.ab-section-black { background: var(--dark); }

.ab-tag {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ab-title {
    font-family: var(--font-c);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--dark);
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 18px;
}
.ab-title span { color: var(--orange); }
.ab-title-white { color: #fff; }
.ab-divider {
    width: 50px; height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 20px;
}
.ab-lead {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}
.ab-lead-white { color: #aaa; }

/* ---- STORY SECTION ---- */
.ab-story-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 520px;
}
.ab-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ab-story-img-badge {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    padding: 22px 28px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 8px 30px rgba(8,145,223,0.45);
}
.ab-story-img-badge .big {
    font-family: var(--font-c);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.ab-story-img-badge .sm { font-size: 12px; font-weight: 700; letter-spacing: 1px; opacity: .9; }
.ab-story-img::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    right: 40px; bottom: 40px;
    border: 2px solid rgba(8,145,223,0.25);
    border-radius: 16px;
    z-index: -1;
}
.ab-check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.ab-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.5;
}
.ab-check-list li .ico {
    width: 22px; height: 22px;
    background: rgba(8,145,223,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- MISSION / VALUES ---- */
.ab-value-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #f0f0f0;
    transition: all .35s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.ab-value-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .35s;
}
.ab-value-card:hover {
    box-shadow: 0 12px 45px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}
.ab-value-card:hover::before { transform: scaleX(1); }
.ab-value-icon {
    width: 58px; height: 58px;
    background: rgba(8,145,223,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 24px;
    margin-bottom: 22px;
    transition: background .35s;
}
.ab-value-card:hover .ab-value-icon { background: var(--orange); color: #fff; }
.ab-value-card h4 {
    font-family: var(--font-c);
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.ab-value-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; }

/* ---- STATS ---- */
.ab-stats-wrap {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}
.ab-stats-wrap::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.ab-stats-wrap::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.ab-stat-item { text-align: center; position: relative; z-index: 1; }
.ab-stat-item .n {
    font-family: var(--font-c);
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.ab-stat-item .n sup { font-size: 24px; vertical-align: super; }
.ab-stat-item p { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin: 0; }
.ab-stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
    margin: 10px 0;
}

/* ---- TEAM ---- */
.ab-team-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all .35s;
    margin-bottom: 30px;
}
.ab-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.14);
}
.ab-team-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.ab-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.ab-team-card:hover .ab-team-img img { transform: scale(1.06); }
.ab-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .35s;
}
.ab-team-card:hover .ab-team-overlay { opacity: 1; }
.ab-team-social a {
    width: 34px; height: 34px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 6px;
    transition: background .25s;
}
.ab-team-social a:hover { background: #fff; color: var(--orange); }
.ab-team-body { padding: 20px 22px 22px; }
.ab-team-body h5 {
    font-family: var(--font-c);
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.ab-team-body span {
    font-size: 13px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- TESTIMONIALS ---- */
.ab-testi-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #ebebeb;
    position: relative;
    transition: all .35s;
    height: 100%;
    margin-bottom: 30px;
}
.ab-testi-card:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 40px rgba(8,145,223,0.1);
    transform: translateY(-4px);
}
.ab-testi-card .quote {
    font-size: 52px;
    color: rgba(8,145,223,0.12);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}
.ab-testi-card p { font-size: 15px; color: #555; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.ab-testi-stars { margin-bottom: 16px; }
.ab-testi-stars i { color: var(--orange); font-size: 14px; margin-right: 2px; }
.ab-testi-author { display: flex; align-items: center; gap: 14px; }
.ab-testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-c);
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}
.ab-testi-author h6 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0 0 2px; }
.ab-testi-author small { font-size: 12px; color: var(--orange); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ---- CTA ---- */
.ab-cta {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}
.ab-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.ab-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(8,145,223,0.75) 100%);
}
.ab-cta-content { position: relative; z-index: 2; text-align: center; }
.ab-cta-content h2 {
    font-family: var(--font-c);
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.ab-cta-content p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }
.btn-cta-primary {
    display: inline-block;
    background: #fff;
    color: var(--orange) !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 6px;
    transition: all .3s;
    margin: 6px;
}
.btn-cta-primary:hover { background: var(--dark); color: #fff !important; }
.btn-cta-outline {
    display: inline-block;
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 40px;
    border-radius: 6px;
    transition: all .3s;
    margin: 6px;
}
.btn-cta-outline:hover { background: #fff; color: var(--orange) !important; border-color: #fff; }

/* ---- RESPONSIVE ---- */
@media(max-width:991px) {
    .ab-story-img { height: 360px; }
    .ab-story-img-badge { right: 10px; }
    .ab-stats-wrap { padding: 40px 20px; }
    .ab-stat-divider { display: none; }
}
@media(max-width:767px) {
    .ab-story-img { height: 260px; margin-bottom: 40px; }
    .ab-story-img-badge { bottom: 16px; right: 16px; }
}