/* ==========================================================================
   ABOUT US PAGE V2 SPECIFIC STYLES
   ========================================================================== */

/* Overrides for Header on About page */
.nav-links a[href="about.html"] {
    color: var(--color-cyan);
    font-weight: 600;
}

.about-main {
    padding-top: 100px; /* Offset for header */
    overflow-x: hidden;
}

/* Typography & General */
.title-large {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: var(--font-primary);
}

.btn-outline-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-primary);
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    background: transparent;
}

.btn-outline-yellow:hover {
    background: var(--color-blue);
    color: #000000;
}

.glass-card {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.15);
    border-color: rgba(255, 212, 0, 0.3);
}

/* 1. HERO SECTION (2-Column) */
.about-hero-v2 {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 212, 0, 0.1);
    color: var(--color-blue);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,212,0,0.2);
    margin-bottom: 24px;
}

.hero-title-large {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-desc-large {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions-v2 {
    display: flex;
    gap: 16px;
}

.globe-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#globe-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--color-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-blue);
    font-size: 20px;
    z-index: 2;
    animation: floatIcon 4s ease-in-out infinite alternate;
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.2);
}

.icon-phone { top: 15%; left: 15%; animation-delay: 0s; }
.icon-chat { top: 25%; right: 10%; animation-delay: -1s; }
.icon-crm { bottom: 20%; left: 10%; animation-delay: -2s; }
.icon-whatsapp { bottom: 15%; right: 20%; animation-delay: -3s; }

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

/* 2. STATS SECTION */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card-v2 {
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-yellow {
    font-size: 32px;
    color: var(--color-blue);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(255, 212, 0, 0.4));
}

.stat-number-wrapper {
    font-size: 48px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number-wrapper span:last-child {
    font-size: 32px; /* Smaller plus sign */
    color: var(--color-blue);
    margin-left: 4px;
}

.stat-card-v2 p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* 3. WHY MENETALK SECTION */
.why-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card-v2 {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-smooth);
}

.why-card-v2:hover {
    border-color: rgba(255, 212, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 212, 0, 0.1);
    transform: translateY(-5px);
}

.why-icon-minimal {
    width: 60px;
    height: 60px;
    background: rgba(255, 212, 0, 0.05);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--color-blue);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.why-card-v2:hover .why-icon-minimal {
    background: var(--color-blue);
    color: #000;
}

.why-card-v2 h3 {
    font-size: 20px;
    margin: 0;
    color: #FFFFFF;
}

/* 4. MISSION & VISION SECTION */
.about-mv-v2 {
    position: relative;
    overflow: hidden;
}

.mv-bg-animation {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.mv-pulse {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,212,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    animation: slowPulse 8s ease-in-out infinite alternate;
}

.mv-pulse.p2 {
    left: auto;
    right: 20%;
    animation-delay: -4s;
}

@keyframes slowPulse {
    0% { transform: translateY(-50%) scale(0.8); opacity: 0.5; }
    100% { transform: translateY(-50%) scale(1.2); opacity: 1; }
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.mv-badge-yellow {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 212, 0, 0.1);
    color: var(--color-blue);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,212,0,0.2);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.mv-text {
    font-size: 26px;
    line-height: 1.5;
    color: #FFFFFF;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* 5. FINAL CTA SECTION */
.about-cta-v2 {
    position: relative;
    background: #000000;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.cta-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 212, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-desc {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR ABOUT PAGE V2
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title-large { font-size: 52px; }
    .title-large { font-size: 48px; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions-v2 {
        justify-content: center;
    }
    
    .hero-desc-large {
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-large { font-size: 42px; }
    .title-large { font-size: 36px; }
    
    .globe-container {
        height: 350px;
    }
    
    .why-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title-large { font-size: 36px; }
    .title-large { font-size: 32px; }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .hero-actions-v2, .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions-v2 .btn, .cta-actions .btn {
        width: 100%;
    }
    
    .mv-card {
        padding: 40px 20px;
    }
    
    .mv-text {
        font-size: 20px;
    }
}
