/* =========================================
   ABOUT PAGE STYLES (Nuqta Brand)
   ========================================= */

:root {
    --brand-green: #4a7c59;
    --brand-dark: #050505;
    --brand-card: #111;
    --text-muted: #a0a0a0;
}

.about-page-wrapper {
    padding-top: 80px;
    background-color: var(--brand-dark);
    color: #fff;
    overflow: hidden;
}

/* --- Hero Section --- */
.about-hero {
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.badge-pill {
    background: rgba(74, 124, 89, 0.2);
    color: #6fb583;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 124, 89, 0.3);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Glow Effect Background */
.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* --- Stats Section --- */
.stats-section { padding: 40px 0; }

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}
.stat-item .label { color: var(--text-muted); font-size: 0.9rem; }

.divider {
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.1);
    display: block;
}

/* --- Identity Section --- */
.identity-section { padding: 80px 0; }

.identity-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.identity-text h2 { font-size: 2.2rem; margin-bottom: 20px; }
.identity-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; }

.values-list { list-style: none; padding: 0; }
.values-list li {
    display: flex; gap: 20px;
    margin-bottom: 25px;
}

.icon-box {
    width: 50px; height: 50px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-green);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.values-list strong { display: block; color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.values-list p { margin: 0; font-size: 0.95rem; }

.visual-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
}
.glow-icon {
    font-size: 4rem;
    color: var(--brand-green);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(74,124,89,0.4));
}

/* --- Locations Section (The Map) --- */
.locations-section { padding: 60px 0 100px; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }

.map-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: #141416;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    width: 380px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    overflow: hidden;
    z-index: 2;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-green);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.card-bg-icon {
    position: absolute;
    top: -20px; left: -20px;
    font-size: 8rem;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
}

.loc-header {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.flag-icon { font-size: 2.5rem; }
.loc-header h3 { margin: 0; font-size: 1.2rem; }
.loc-role { font-size: 0.8rem; color: var(--text-muted); }

.loc-body p {
    display: flex; align-items: center; gap: 10px;
    color: #ccc; margin-bottom: 10px; font-size: 0.95rem;
}
.loc-body i { color: var(--brand-green); }

/* The Connector Line */
.connection-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    position: relative;
    margin: 0 -10px;
    z-index: 1;
    min-width: 50px;
}
.pulse-dot {
    width: 10px; height: 10px;
    background: var(--brand-green);
    border-radius: 50%;
    position: absolute;
    top: -4px;
    box-shadow: 0 0 10px var(--brand-green);
}
.pulse-dot:first-child { left: 0; }
.pulse-dot:last-child { right: 0; }

/* --- CTA Section --- */
.cta-section { padding-bottom: 80px; }
.cta-box {
    text-align: center;
    padding: 60px;
    background: radial-gradient(circle at center, #1a2e20 0%, #0a0a0a 100%);
    border-radius: 24px;
    border: 1px solid rgba(74, 124, 89, 0.3);
}

.cta-box h2 { font-size: 2rem; margin-bottom: 15px; }
.cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--brand-green);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 30px;
    transition: 0.3s;
}
.cta-btn:hover { background: #5da374; transform: scale(1.05); }

/* --- Responsive --- */
@media (max-width: 900px) {
    .about-hero h1 { font-size: 2.5rem; }
    .identity-grid { grid-template-columns: 1fr; }
    .map-grid { flex-direction: column; gap: 30px; }
    .connection-line { width: 2px; height: 50px; min-width: 0; margin: 0; }
    .location-card { width: 100%; }
    .stats-grid { flex-direction: column; gap: 20px; }
    .divider { display: none; }
}