/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1920&h=1080&fit=crop') center/cover;
    background-blend-mode: overlay;
    margin-top: 70px;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(30,144,255,0.4) 100%);
}

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

.page-subtitle {
    display: block;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--primary-yellow);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.page-description {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Our Story */
.our-story {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.story-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #F9FAFB;
    border-left: 4px solid var(--primary-blue);
    border-radius: 5px;
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: #252525;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(30,144,255,0.3);
}

.mv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-tropical));
    border-radius: 50%;
    font-size: 3rem;
    color: var(--text-light);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.mv-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.mv-description strong {
    color: var(--text-light);
}

/* Core Values */
.core-values {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.value-card {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Team */
.team {
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
}

.team .section-title,
.team .section-subtitle,
.team .section-description {
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-card {
    background: #252525;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30,144,255,0.3);
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--primary-yellow);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.95rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(30,144,255,0.1);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Certifications */
.certifications {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.cert-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.cert-logo-item:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cert-logo-item i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cert-logo-item p {
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-title {
        font-size: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}
