﻿:root {
    --zoogaboog-blue: #01aade;
    --zoogaboog-dark-blue: #0085ae;
    --purple: #8B5CF6;
    --green: #10B981;
    --orange: #F59E0B;
    --red: #EF4444;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.about-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, var(--zoogaboog-dark-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero .tagline {
    font-size: 2rem;
    opacity: 0.95;
    font-weight: 700;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.about-hero .subtext {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* The Problem Section */
.problem-section {
    padding: 6rem 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.4rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: #fef2f2;
    border: 3px solid var(--red);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.problem-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

/* The Solution Section */
.solution-section {
    padding: 6rem 0;
    background: #f0fdf4;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.solution-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.solution-text p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.solution-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.solution-list i {
    color: var(--green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.solution-image-placeholder {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    color: #94a3b8;
    border: 3px dashed rgba(0, 0, 0, 0.1);
}

.solution-image-placeholder i {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
}

/* Our Mission Section */
.mission-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
}

.mission-section .section-title {
    color: white;
}

.mission-quote {
    font-size: 2.2rem;
    font-weight: 800;
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto 2rem;
    line-height: 1.4;
    color: var(--zoogaboog-blue);
}

.mission-description {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

/* Our Values Section */
.values-section {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--zoogaboog-blue);
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.value-card:nth-child(1) .value-icon { background: var(--zoogaboog-blue); }
.value-card:nth-child(2) .value-icon { background: var(--green); }
.value-card:nth-child(3) .value-icon { background: var(--purple); }
.value-card:nth-child(4) .value-icon { background: var(--orange); }

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #f9fafb;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-intro h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.team-intro p {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--zoogaboog-blue);
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #e2e8f0;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #94a3b8;
    border: 4px solid var(--zoogaboog-blue);
}

.team-member h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1.1rem;
    color: var(--zoogaboog-blue);
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* By The Numbers Section */
.numbers-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--orange) 0%, #D97706 100%);
    color: white;
}

.numbers-section .section-title {
    color: white;
}

.numbers-section .section-subtitle {
    color: white;
    opacity: 0.95;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.number-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.big-number {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.number-label {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.95;
}

/* What Makes Us Different Section */
.different-section {
    padding: 6rem 0;
    background: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.different-card {
    background: white;
    border: 3px solid #e2e8f0;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    gap: 2rem;
    align-items: start;
    transition: all 0.3s ease;
}

.different-card:hover {
    border-color: var(--zoogaboog-blue);
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.different-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--zoogaboog-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.different-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.different-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.final-cta .tagline {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 700;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(1, 170, 222, 0.3);
}

.final-cta-btn:hover {
    background: white;
    color: var(--zoogaboog-blue);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .problem-grid, .values-grid, .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .different-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }
    
    .problem-grid, .values-grid, .team-grid, .numbers-grid, .different-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
}

/* Baby Rocket styles have been moved to public/css/baby-rocket.css for global use */
