/* Mission Page Specific Styles */

/* Hero Section */
.mission-hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #1f2937 100%);
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
}

.hero-gradient-mission {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: pulse-slow 10s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.text-gradient-light {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-light {
    background: white;
    color: #1f2937;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    top: 10%;
    right: 10%;
    animation: float-1 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    bottom: 20%;
    left: 15%;
    animation: float-2 15s ease-in-out infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    top: 60%;
    right: 20%;
    animation: float-3 18s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 30px) rotate(-120deg);
    }
    66% {
        transform: translate(30px, -20px) rotate(-240deg);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.2);
    }
}

/* Belief Card */
.belief-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
    border: 1px solid #eceff3;
    transition: all 0.4s ease;
}

.belief-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
    border-color: #d7dce3;
}

.belief-card-header {
    margin-bottom: 1.5rem;
}

/* Belief Stats */
.belief-stat {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(220, 38, 38, 0.05));
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.belief-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.belief-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ef4444;
    letter-spacing: -0.012em;
}

.belief-label {
    font-size: 0.92rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.45;
}

/* Process Visual */
.process-visual {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.process-content {
    flex: 1;
}

.process-title {
    font-size: clamp(1.2rem, 1.5vw, 1.45rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    line-height: 1.25;
    letter-spacing: -0.012em;
}

.process-description {
    color: #6b7280;
    font-size: 0.99rem;
    line-height: 1.65;
}

.process-connector {
    width: 3px;
    height: 3rem;
    background: linear-gradient(180deg, #ef4444, #dc2626);
    margin-left: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid #f3f4f6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #ef4444;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon-wrapper {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.85rem;
    line-height: 1.26;
    letter-spacing: -0.012em;
}

.value-description {
    color: #6b7280;
    line-height: 1.72;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.value-footer {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Impact Stats */
.impact-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fecaca, #fca5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.impact-label {
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.testimonial-card .fas.fa-star {
    margin-right: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mission-hero {
        min-height: auto;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-connector {
        margin-left: 2rem;
        height: 2rem;
    }

    .value-icon-wrapper {
        width: 4rem;
        height: 4rem;
    }
}

/* Animation Delays */
.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }
