/* =====================
   ABOUT PAGE STYLES
   ===================== */

/* Shared helpers */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-hero-divider {
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin: 16px 0 20px;
}

/* ---- HERO ---- */
.about-hero {
    width: 100%;
}

.about-hero-inner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.80) 35%, rgba(0,0,0,0.25) 100%);
}

.about-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 600px;
}

.breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.about-hero-content .section-tag {
    color: var(--primary-red);
}

.about-hero-content h1 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin: 0;
}

.about-hero-content h1 .highlight {
    color: var(--primary-red);
}

.about-hero-content .about-hero-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 460px;
}

/* ---- WHO WE ARE ---- */

.who-we-are {
    padding: 80px 0;
    background: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 6px;
    color: white;
}

.who-image-badge .logo-main {
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
}

.who-image-badge .hype,
.who-image-badge .dash,
.who-image-badge .biz {
    color: white;
}

.who-content h2 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark-text);
}

.who-content p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ---- OUR VALUES ---- */
.our-values {
    background: #f9f9f9;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.values-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--dark-text);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fdfdfd;
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #eee;
}

.value-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(228, 0, 0, 0.2);
}

.value-text h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--dark-text);
}

.value-text p {
    font-size: 11.5px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* ---- OUR JOURNEY ---- */
.our-journey {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid #eee;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
    padding-top: 20px;
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 140px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-red);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-red);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.active-dot {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 3px var(--primary-red);
}

.timeline-year {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.timeline-year.red {
    color: var(--primary-red);
}

.timeline-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 11px;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ---- TEAM & STATS UNIFIED ---- */
.team-stats-unified {
    padding: 80px 0;
}

.unified-bar {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    min-height: 240px;
}

.team-side {
    flex: 1.2;
    background-color: #0b0b0b;
    padding: 50px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.team-content {
    position: relative;
    z-index: 5;
    max-width: 450px;
}

.team-content h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: white;
    letter-spacing: 0.5px;
}

.team-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

.team-btn {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    font-size: 10px;
    font-weight: 800;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    text-transform: uppercase;
}

.team-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('images/about-team.png');
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0));
    opacity: 0.7;
}

.stats-side {
    flex: 1.3;
    display: flex;
    align-items: center;
    padding: 40px 20px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #ddd;
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-icon {
    color: var(--primary-red);
    margin-bottom: 15px;
}

.about-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.about-stat-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: capitalize;
}

/* Responsive */
@media (max-width: 1200px) {
    .unified-bar { flex-direction: column; }
    .team-side, .stats-side { flex: none; }
    .team-image-overlay { width: 100%; opacity: 0.4; }
    .about-stat { border-right: none; padding: 20px 0; }
}

@media (max-width: 992px) {
    .who-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    
    .journey-timeline { 
        flex-direction: column; 
        align-items: center; 
        gap: 30px; 
    }
    .timeline-item { max-width: 100%; }
    .timeline-line { display: none; }
    
    .about-hero-inner { height: 350px; }
    .about-hero-content { padding: 0 40px; }
    .about-hero-logo { display: none; }
    
    .stats-row { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px; 
    }
}

@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    
    .stats-row { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .about-hero-content { padding: 0 20px; }
    .about-hero-content h1 { font-size: 28px; }
    .about-hero-desc { font-size: 13px; }
}
