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

/* Hero Section */
.hero-page {
    background-image: url('../assets/contact-hero-bg.jpg'); /* fallback if we don't have about-hero-bg */
}
.about-hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}
.about-hero-desc {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Vision/Mission/Values Section */
.vmv-section {
    background: #f8fafc;
}
.vmv-card-vision { border-top: 4px solid #95C11F; }
.vmv-card-mission { border-top: 4px solid #D97706; }
.vmv-card-values { border-top: 4px solid #0ea5e9; }

/* Leadership Profile Cards */
.director-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.director-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(149, 193, 31, 0.1);
}

.director-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #95C11F 0%, #14b8a6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.director-card:hover::before {
    opacity: 1;
}

.director-role {
    color: #95C11F;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.director-card h4 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.15rem;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.director-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.director-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #475569;
}

.director-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #95C11F;
    font-weight: bold;
}

/* Collective Leadership Section */
.collective-leadership {
    margin-top: 40px;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f8fafb);
    border: 1px solid rgba(149, 193, 31, 0.1);
}

.collective-desc {
    max-width: 900px;
    margin: 0 auto;
    color: #475569;
    line-height: 1.8;
}

/* ========================================
   COVERAGE MAP SECTION
   ======================================== */
.coverage-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-solid-bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.coverage-map {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.india-map-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.05));
}

.pulse-ring {
    stroke-width: 2;
    fill: none;
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.node-label {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    fill: var(--dark);
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

[data-theme="dark"] .node-label {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    fill: #fff;
}

.coverage-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--green-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: var(--transition-normal);
}

[data-theme="dark"] .stat-card {
    background: rgba(149, 193, 31, 0.05);
}

.stat-card:hover {
    transform: translateX(10px);
}

.stat-card p {
    font-weight: 500;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .coverage-container {
        flex-direction: column;
        padding: 24px;
    }
    .india-map-svg {
        max-width: 300px;
    }
}
