/* about.css - About Page Specific Styles */

/* Page Header */
.page-header {
    padding: 150px 0 100px;
    background: var(--gradient-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
}

.header-content p {
    font-size: 1.2rem;
    color: var(--off-white);
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story */
.our-story {
    padding: 100px 0;
    background: var(--dark-gray);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
}

.story-text p {
    color: var(--light-purple);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--gradient-card);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--neon-purple);
    box-shadow: var(--shadow);
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--neon-purple);
    margin-bottom: 20px;
}

.image-placeholder p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--black);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: var(--gradient-card);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(142, 68, 173, 0.2);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: var(--shadow-hover);
}

.mv-card.mission {
    border-top: 5px solid var(--neon-purple);
}

.mv-card.vision {
    border-top: 5px solid #ff6b6b;
}

.mv-card.values {
    border-top: 5px solid #4cd964;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--neon-purple);
    font-size: 2rem;
}

.mv-card.vision .mv-icon {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.mv-card.values .mv-icon {
    background: rgba(76, 217, 100, 0.1);
    color: #4cd964;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.mv-card p {
    color: var(--light-purple);
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(142, 68, 173, 0.2);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--neon-purple);
    font-size: 1.8rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature p {
    color: var(--light-purple);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(142, 68, 173, 0.2);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
}

.member-image {
    width: 120px;
    height: 120px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--neon-purple);
    font-size: 3rem;
    border: 3px solid var(--neon-purple);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.member-role {
    color: var(--neon-purple);
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
}

.member-desc {
    color: var(--light-purple);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--gradient-bg);
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.location-info p {
    color: var(--off-white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info i {
    color: var(--neon-purple);
    width: 20px;
}

.contact-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient-card);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--neon-purple);
    box-shadow: var(--shadow);
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--neon-purple);
    margin-bottom: 20px;
}

.map-placeholder p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .story-content,
    .location-details {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .location-content h2 {
        font-size: 2rem;
    }
    
    .mv-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
}