/* ===== MISSION PAGE CSS ===== */

:root {
    --deep-blue: #3338A0;
    --gold: #FCC61D;
    --cream: #FFFBEB;
    --dark-blue: #2a2f85;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
    --glow-gold: 0 0 30px rgba(252, 198, 29, 0.4);
    --glow-blue: 0 0 30px rgba(51, 56, 160, 0.3);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 70px;
}

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

/* ===== HERO SECTION ===== */
.mission-hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-steam {
    position: absolute;
    width: 100px;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: steamRise 8s ease-in-out infinite;
    opacity: 0.3;
}

.steam-1 {
    left: 20%;
    bottom: -50px;
    animation-delay: 0s;
}

.steam-2 {
    left: 50%;
    bottom: -50px;
    animation-delay: 2s;
}

.steam-3 {
    left: 75%;
    bottom: -50px;
    animation-delay: 4s;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-600px) scale(1.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 198, 29, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(252, 198, 29, 0.3);
    animation: fadeIn 1s ease;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideUp 1s ease;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    animation: slideUp 1s ease 0.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* ===== MISSION STATEMENT SECTION ===== */
.mission-statement {
    padding: 5rem 0;
    position: relative;
}

.statement-card {
    position: relative;
    background: var(--text-light);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 198, 29, 0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.card-icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--deep-blue), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-gold);
}

.card-icon i {
    font-size: 3rem;
    color: var(--text-light);
}

.statement-title {
    position: relative;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.statement-text {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.statement-values {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.value-tag i {
    color: var(--gold);
}

/* ===== VISION SECTION ===== */
.vision-section {
    position: relative;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    padding: 6rem 0;
}

.vision-wave-top,
.vision-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.vision-wave-top {
    top: 0;
}

.vision-wave-top svg {
    display: block;
    width: 100%;
    height: 100px;
}

.vision-wave-bottom {
    bottom: 0;
}

.vision-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 198, 29, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(252, 198, 29, 0.3);
}

.vision-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight-gold {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(252, 198, 29, 0.5);
}

.vision-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.vision-goals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.goal-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: rgba(252, 198, 29, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(252, 198, 29, 0.3);
}

.goal-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.goal-text h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.goal-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.vision-image {
    position: relative;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(252, 198, 29, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.steam-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

/* ===== CORE VALUES SECTION ===== */
.values-section {
    padding: 6rem 0;
}

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

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.value-card {
    background: var(--text-light);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon-wrapper {
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--deep-blue), var(--gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-blue);
    transition: var(--transition);
}

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

.value-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.value-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.value-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== STORY SECTION ===== */
.story-section {
    position: relative;
    background: linear-gradient(135deg, var(--gold), #f0b800);
    padding: 6rem 0;
}

.story-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.story-wave-top svg {
    display: block;
    width: 100%;
    height: 100px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.image-glow-gold {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(51, 56, 160, 0.3) 0%, transparent 70%);
    filter: blur(40px);
}

.story-card {
    position: relative;
    background: var(--text-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.story-quote {
    text-align: center;
}

.story-quote i {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
}

.story-quote p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--deep-blue);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.story-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.story-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.story-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(51, 56, 160, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--deep-blue);
}

.story-tagline i {
    font-size: 1.5rem;
    color: var(--deep-blue);
}

.story-tagline span {
    font-size: 1.2rem;
    color: var(--deep-blue);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    padding: 5rem 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(252, 198, 29, 0.2) 0%, transparent 70%);
}

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

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #f0b800);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(252, 198, 29, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(252, 198, 29, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .vision-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .statement-card {
        padding: 2.5rem 2rem;
    }
    
    .statement-title {
        font-size: 2rem;
    }
    
    .statement-text {
        font-size: 1rem;
    }
    
    .vision-title,
    .story-title,
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .value-icon i {
        font-size: 1.75rem;
    }
    
    .value-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .value-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .values-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
        border-radius: 15px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .value-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .statement-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 80px;
        height: 80px;
    }
    
    .card-icon i {
        font-size: 2rem;
    }
    
    .statement-values {
        flex-direction: column;
    }
    
    .value-tag {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .values-grid {
        gap: 0.75rem;
    }
    
    .value-card {
        padding: 1.25rem 0.75rem;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
    }
    
    .value-icon i {
        font-size: 1.3rem;
    }
    
    .value-title {
        font-size: 0.9rem;
    }
    
    .value-description {
        font-size: 0.75rem;
    }
}
