/* ===== Video Hero ===== */
.rescue-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.rescue-hero-video {
    position: relative;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
}

.rescue-hero-video video {
    width: 100%;
    display: block;
    object-fit: cover;
}

.rescue-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

.rescue-hero-content {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    z-index: 2;
}

.rescue-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.rescue-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.rescue-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 5;
}

.rescue-mute-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== Content Section ===== */
.rescue-content-section {
    padding: 5rem 0;
    background: #fff;
}

.rescue-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rescue-intro {
    max-width: 850px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.rescue-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* ===== Feature Cards ===== */
.rescue-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.rescue-feature-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rescue-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.rescue-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
}

.rescue-feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1b4332;
}

.rescue-feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* ===== Detail Blocks ===== */
.rescue-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.rescue-detail-block {
    background: #f4faf6;
    border-left: 4px solid #2d6a4f;
    border-radius: 8px;
    padding: 2rem 2rem;
}

.rescue-detail-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #1b4332;
    margin-bottom: 0.8rem;
}

.rescue-detail-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* ===== Stats ===== */
.rescue-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.rescue-stat-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.rescue-stat-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .rescue-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rescue-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .rescue-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .rescue-hero-title {
        font-size: 2rem;
    }

    .rescue-hero-subtitle {
        font-size: 1rem;
    }

    .rescue-features-grid {
        grid-template-columns: 1fr;
    }

    .rescue-details {
        grid-template-columns: 1fr;
    }

    .rescue-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem 1.5rem;
    }

    .rescue-stat-item h3 {
        font-size: 2rem;
    }

    .rescue-mute-btn {
        bottom: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .rescue-stats {
        grid-template-columns: 1fr;
    }
}
