/* --- ABOUT PAGE REDESIGN - 2026 Ubuntu & Electric Blue --- */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
    --electric-blue: #0030DB;
    --light-blue: #00BEFF;
    --purple: #9E5EE5;
    --about-gradient: linear-gradient(135deg, #00BEFF, #0030DB 50%, #9E5EE5);
    --text-main: #1D1D1F;
    --text-muted: #6E6E73;
    --bg-light: #F8FAFF;
    --bg-white: #FFFFFF;
    --font-ubuntu: 'Ubuntu', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-ubuntu);
    color: var(--text-main);
    line-height: 1.6;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Badge System */
.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 48, 219, 0.05);
    color: var(--electric-blue);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header Lite */
.section-header-lite {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-lite h2 {
    font-size: 36px !important;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.section-header-lite p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Hero Section */
.about-hero-modern {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
}

.about-hero-modern h1 {
    font-size: 56px !important;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.about-hero-modern h1 span {
    color: var(--electric-blue);
}

.about-hero-modern p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.hero-bg-accent {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 48, 219, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

/* Stats Section */
.about-stats {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid #E5E9F2;
    border-bottom: 1px solid #E5E9F2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Vision & Mission */
.about-vision-mission {
    padding: 120px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-vision-mission h2 {
    font-size: 32px !important;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.about-vision-mission p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Core Values */
.about-values {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #E5E9F2;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 48, 219, 0.08);
    border-color: rgba(0, 48, 219, 0.2);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 48, 219, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.value-icon i {
    color: #0030DB;
}

.value-card h3 {
    font-size: 22px !important;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Team Section */
.about-team {
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.team-card:hover {
    background: var(--bg-light);
    border-color: #E5E9F2;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--electric-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.team-card h3 {
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Modern */
.about-cta-modern {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, #00BEFF 0%, #0030DB 45%, #9E5EE5 100%);
    padding: 80px 40px;
    border-radius: 32px;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 42px !important;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff !important;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary-modern, .btn-secondary-modern {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary-modern {
    background: #fff;
    color: var(--electric-blue);
}

.btn-primary-modern:hover {
    background: #F0F4FF;
    transform: translateY(-2px);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .vision-mission-grid { gap: 60px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-hero-modern h1 { font-size: 42px !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-mission-grid { grid-template-columns: 1fr; gap: 60px; }
    .values-grid { grid-template-columns: 1fr; }
    .about-hero-modern { padding: 80px 0 60px; }
    .cta-box { padding: 60px 20px; }
    .cta-box h2 { font-size: 32px !important; }
    .cta-buttons { flex-direction: column; }
}
