/* ============================
   ABOUT PAGE — about.css
   ============================ */

/* HERO */
.about-hero {
    height: 60vh;
    min-height: 380px;
    background: url('../../assets/images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.50) 0%,
        rgba(0,0,0,0.68) 100%
    );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255,122,0,0.90);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.about-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.90);
    margin: 0;
}

/* ============================
   GLOBAL SECTION DEFAULTS
   ============================ */
section {
    padding: 70px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* SECTION PILL LABEL */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff7a00;
    background: rgba(255,122,0,0.09);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* SECTION HEADING */
.section-heading {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.25;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    border-radius: 10px;
    margin: 12px auto 0;
}

/* SECTION SUBTEXT */
.section-sub {
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 40px;
}

/* ============================
   ABOUT INTRO
   ============================ */
.about-intro {
    background: #fff;
}

.about-intro .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-intro-text {
    max-width: 820px;
    width: 100%;
}

.about-intro-text p {
    font-size: 17px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 16px;
    text-align: center;
}

.about-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a8a3a;
    background: #e6f7ec;
    padding: 7px 16px;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a8a3a;
    display: inline-block;
    animation: pulse-green 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

/* STAT CARDS — row below text */
.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 36px;
    width: 100%;
    max-width: 820px;
}

.stat-card {
    background: #fffaf5;
    border: 1.5px solid #ffe0b2;
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(255,122,0,0.12);
    border-color: #ff9800;
}

.stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #ff7a00;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: #777;
    font-weight: 500;
}

/* ============================
   MISSION — हम क्या करते हैं
   ============================ */
.mission {
    background: #fffaf5;
}

.mission .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 0;
    width: 100%;
}

.mission-card {
    background: white;
    padding: 32px 24px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1.5px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(255,122,0,0.13);
    border-color: #ffcc80;
}

.mission-icon {
    font-size: 38px;
    margin-bottom: 14px;
    line-height: 1;
}

.mission-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

/* ============================
   METRICS — संस्था की मुख्य जानकारी
   ============================ */
.metrics {
    background: #fff;
}

.metrics .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metrics-note {
    font-size: 14px;
    color: #999;
    margin-bottom: 36px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    max-width: 860px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.09);
    border: 1.5px solid #f0e8de;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    background: #fff;
    border-bottom: 1px solid #f0e8de;
    border-right: 1px solid #f0e8de;
    transition: background 0.2s ease;
    text-align: left;
}

.metric-item:nth-child(even) {
    border-right: none;
}

.metric-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.metric-item:hover {
    background: #fffaf5;
}

.metric-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: rgba(255,122,0,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-info {
    flex: 1;
    min-width: 0;
}

.metric-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.metric-value {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    word-break: break-word;
}

.metric-value.mono {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: #333;
    letter-spacing: 0.3px;
}

.active-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1a8a3a;
    font-weight: 700;
}

.active-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1a8a3a;
    display: inline-block;
    animation: pulse-green 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

/* ============================
   ADDRESS — पता और संपर्क विवरण
   ============================ */
.address-section {
    background: #fffaf5;
}

.address-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 0;
    width: 100%;
}

.address-card {
    background: white;
    border-radius: 18px;
    padding: 32px 24px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1.5px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(255,122,0,0.12);
    border-color: #ffcc80;
}

.address-card-icon {
    font-size: 36px;
    margin-bottom: 14px;
    line-height: 1;
}

.address-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.address-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.address-card a {
    color: #ff7a00;
    font-weight: 700;
    text-decoration: none;
    font-size: 20px;
}

.address-card a:hover {
    text-decoration: underline;
}

/* ============================
   DONATION CTA
   ============================ */
.donation {
    background: linear-gradient(135deg, #ff7a00, #ff9800);
    color: white;
    padding: 70px 20px;
}

.donation .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.donation h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    line-height: 1.3;
}

.donation p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.93);
    max-width: 700px;
    margin: 0 auto 8px;
}

.btn-donate-big {
    display: inline-block;
    margin-top: 28px;
    padding: 15px 40px;
    background: white;
    color: #ff7a00;
    border-radius: 30px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.btn-donate-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

/* CONTACT STRIP */
.contact-strip {
    background: #222;
    color: white;
    text-align: center;
    padding: 18px 20px;
}

.contact-strip p {
    margin: 0;
    font-size: 17px;
}

/* ============================
   RESPONSIVE — TABLET ≤960px
   ============================ */
@media (max-width: 960px) {
    .about-intro-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .address-grid {
        grid-template-columns: 1fr 1fr;
    }

    .address-grid .address-card:last-child {
        grid-column: 1 / -1;
    }
}

/* ============================
   RESPONSIVE — MOBILE ≤768px
   ============================ */
@media (max-width: 768px) {
    .about-hero {
        height: auto;
        min-height: auto;
        padding: 100px 20px 70px;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-hero-badge {
        font-size: 11px;
    }

    .section-heading {
        font-size: 26px;
    }

    .section-sub {
        font-size: 15px;
    }

    /* INTRO */
    .about-intro-text p {
        font-size: 15px;
    }

    .about-intro-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    /* MISSION */
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mission-card {
        padding: 24px 20px;
    }

    /* METRICS */
    .metrics-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
        max-width: 100%;
    }

    .metric-item {
        border-right: none !important;
        padding: 16px 18px;
    }

    .metric-item:nth-last-child(-n+2) {
        border-bottom: 1px solid #f0e8de;
    }

    .metric-item:last-child {
        border-bottom: none !important;
    }

    /* ADDRESS */
    .address-grid {
        grid-template-columns: 1fr;
    }

    .address-grid .address-card:last-child {
        grid-column: auto;
    }

    /* CTA */
    .donation {
        padding: 55px 20px;
    }

    .donation h2 {
        font-size: 26px;
    }

    .donation p {
        font-size: 15px;
    }

    .btn-donate-big {
        display: block;
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
    }

    .contact-strip p {
        font-size: 15px;
    }
}

/* ============================
   VERY SMALL ≤420px
   ============================ */
@media (max-width: 420px) {
    .about-hero h1 {
        font-size: 26px;
    }

    .stat-card {
        padding: 16px 10px;
    }

    .stat-number {
        font-size: 18px;
    }
}