/* ABOUT PAGE STYLES — PREMIUM REFRESH */

:root {
  --py-section: 100px;
}

.py-section {
    padding: var(--py-section) 0;
}

.bg-brand-surface {
    background: var(--brand-surface);
}

.mb-60 {
    margin-bottom: 60px;
}

/* HERO SECTION */
#about-hero {
  height: 100vh;
  min-height: 700px;
  background: 
    linear-gradient(135deg, rgba(15, 17, 23, 0.92) 0%, rgba(15, 17, 23, 0.6) 50%, rgba(201, 98, 47, 0.1) 100%),
    url('../images/about_bg.png') center/cover no-repeat;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#about-hero::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 98, 47, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-eyebrow {
    color: var(--brand-primary-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

/* Hero Grid Layout */
.about-hero-grid {
    position: relative;
    padding-bottom: 40px;
}

.grid-main-img {
    width: 85%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.grid-main-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.grid-acc-img {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 240px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--brand-dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.grid-acc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-stat-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--brand-primary);
    padding: 24px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(201, 98, 47, 0.3);
    color: #fff;
    z-index: 3;
}

.gs-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.gs-txt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-top: 4px;
}

/* MISSION SECTION */
.mission-visual {
    position: relative;
}

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--brand-primary);
    font-size: 1.5rem;
}

.floating-badge span {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.mission-checklist {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.m-check-item {
    display: flex;
    gap: 20px;
}

.mc-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 98, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.m-check-item h5 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.m-check-item p {
    font-size: 0.92rem;
    color: var(--brand-muted);
    margin: 0;
    line-height: 1.6;
}

/* VALUES V2 */
.value-card-v2 {
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.value-card-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-primary);
}

.vv-icon {
    width: 54px;
    height: 54px;
    background: var(--brand-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.value-card-v2:hover .vv-icon {
    background: var(--brand-primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.value-card-v2 h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card-v2 p {
    color: var(--brand-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* TEAM */
.team-visual {
    position: relative;
    padding-right: 40px;
}

.team-overlay-card {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.toc-stat {
    text-align: center;
}

.toc-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--brand-primary);
    line-height: 1;
}

.toc-stat span {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand-muted);
    margin-top: 4px;
    display: block;
}

.toc-divider {
    width: 1px;
    background: var(--brand-border);
}

.team-quote {
    margin-top: 40px;
    padding: 30px;
    background: var(--brand-surface);
    border-radius: 20px;
    position: relative;
}

.team-quote i {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 3rem;
    color: var(--brand-primary);
    opacity: 0.2;
}

.team-quote p {
    font-style: italic;
    color: var(--brand-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.quote-author {
    display: flex;
    flex-direction: column;
}

.quote-author strong {
    font-size: 0.95rem;
    color: var(--brand-text);
}

.quote-author span {
    font-size: 0.8rem;
    color: var(--brand-muted);
}

/* STATS BOX ALT */
.stats-parallax {
    background: linear-gradient(rgba(15, 17, 23, 0.9), rgba(15, 17, 23, 0.9)), 
                url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1600&q=80') center/cover fixed;
    color: #fff;
}

.stat-box-alt .stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--brand-primary-light);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box-alt .stat-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    opacity: 0.7;
}

/* CTA V2 */
.cta-banner-v2 {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-v2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
}

.cta-v2-content {
    position: relative;
    z-index: 2;
}

.cta-banner-v2 .section-title em {
    color: var(--brand-dark);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    #about-hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .about-hero-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .grid-main-img {
        width: 100%;
        transform: none;
    }
    
    .grid-acc-img {
        width: 160px;
        height: 160px;
        bottom: -20px;
    }
    
    .grid-stat-card {
        top: 20px;
        right: 0;
        padding: 15px 20px;
    }
    
    .gs-num { font-size: 1.6rem; }
    
    .floating-badge {
        display: none;
    }
    
    .m-check-item {
        text-align: left;
    }
    
    .team-visual {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .py-section {
        padding: 70px 0;
    }
    
    .stat-box-alt .stat-num {
        font-size: 2.2rem;
    }
    
    .cta-banner-v2 {
        padding: 60px 20px;
    }
}
