/* Custom styles for About page */
.about-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .about-hero {
        height: 400px;
        text-align: center;
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

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

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, #ffd166 100%);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #6f42c1 0%, #9d4edd 100%);
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: white;
}

.team-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.team-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Contact Info */
.contact-info-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e9ecef 100%);
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

/* Social Media */
.social-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.social-link.facebook:hover {
    background: #1877f2;
}
.social-link.twitter:hover {
    background: #1da1f2;
}
.social-link.instagram:hover {
    background: #e4405f;
}
.social-link.whatsapp:hover {
    background: #25d366;
}

/* Office Image */
.office-image {
    margin: 4rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.office-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.office-image:hover img {
    transform: scale(1.05);
}

/* Accreditation */
.accreditation {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
    color: white;
    border-radius: 15px;
    margin: 4rem 0;
}

.accreditation h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .social-grid {
        gap: 1rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
