/* ===================================
   About Page Styles
   =================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0A4F63 0%, #14B8A6 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-hero .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.2) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Our Story Section */
.our-story-section {
    background: #ffffff;
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.story-block {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    background: #f8fafb;
    transition: all 0.3s ease;
}

.story-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 79, 99, 0.1);
    background: #ffffff;
}

.story-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A4F63 0%, #14B8A6 100%);
    color: #ffffff;
}

.story-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.story-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    padding: 100px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    padding: 50px;
    border-radius: 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0A4F63 0%, #14B8A6 100%);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 79, 99, 0.15);
    border-color: #14B8A6;
}

.mission-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(10, 79, 99, 0.1);
    color: #0A4F63;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 20px;
}

.mission-badge.vision {
    background: rgba(20, 184, 166, 0.1);
    color: #14B8A6;
}

.mission-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
}

.mission-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
}

/* Team Section */
.team-section {
    background: #ffffff;
    padding: 100px 0;
}

.team-message {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(10, 79, 99, 0.03) 0%, rgba(20, 184, 166, 0.03) 100%);
    border-radius: 24px;
    border: 2px solid rgba(20, 184, 166, 0.1);
}

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A4F63 0%, #14B8A6 100%);
    color: #ffffff;
}

.team-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin: 30px 0;
}

.hiring-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #0A4F63 0%, #14B8A6 100%);
    color: #ffffff;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    }
}

.badge-icon {
    font-size: 1.25rem;
}

.team-cta {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-top: 30px;
    font-style: italic;
}

/* Approach Section */
.approach-section {
    background: #f8fafb;
    padding: 100px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.approach-card {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 79, 99, 0.03) 0%, rgba(20, 184, 166, 0.03) 100%);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.approach-card:hover::before {
    width: 100%;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 79, 99, 0.1);
    border-color: #14B8A6;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0A4F63 0%, #14B8A6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
}

.approach-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
    position: relative;
}

.approach-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    position: relative;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0A4F63 0%, #14B8A6 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-slow 25s linear infinite reverse;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 500px;
        padding: 60px 0;
    }

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

    .about-hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

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

    .mission-card {
        padding: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

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

    .mission-card h3 {
        font-size: 1.5rem;
    }

    .approach-number {
        font-size: 2rem;
    }
}
