/* ========================================
   Tzuzoo Rescue - About Us Page Styles
   ======================================== */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><g fill="white" opacity="0.1"><circle cx="200" cy="150" r="60"/><circle cx="800" cy="100" r="80"/><circle cx="400" cy="350" r="40"/><circle cx="1000" cy="250" r="70"/></g></svg>');
    background-size: cover;
}

.back-nav {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s;
}

.back-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateX(-3px);
}

.header-content {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    margin-bottom: 40px;
}

.organization-section {
    margin-bottom: 50px;
}

.section-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.mission-statement {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    margin-bottom: 40px;
}

.mission-statement h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.mission-statement h3 i {
    margin-right: 15px;
    color: var(--primary-green);
}

.mission-statement p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.what-we-do {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border-top: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(126, 211, 33, 0.2);
}

.service-card h4 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-card h4 i {
    margin-right: 10px;
    color: var(--primary-green);
    font-size: 1.6rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.key-points {
    background: #e8f5e8;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.key-points h3 {
    color: var(--primary-purple);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.point-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.point-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(126, 211, 33, 0.15);
}

.point-item i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.point-item span {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.tax-deductible {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.tax-deductible h3 {
    color: #856404;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.tax-deductible p {
    color: #856404;
    font-size: 1.2rem;
    font-weight: 600;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
}

.stats-section h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.3);
    background: #f0f0f0;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .content {
        padding: 30px 20px;
    }

    .what-we-do {
        grid-template-columns: 1fr;
    }

    .points-grid {
        grid-template-columns: 1fr;
    }

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

    .btn-group {
        flex-direction: column;
        align-items: center;
    }
}
