/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(40, 170, 225, 0.1), rgba(40, 170, 225, 0.05));
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../photos/pattern-dots.svg');
    background-size: 20px;
    opacity: 0.15;
    pointer-events: none;
}

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

.about-hero h1 {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 2.8rem;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-hero .hero-description {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 2.2rem;
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(40, 170, 225, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(40, 170, 225, 0.15);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.value-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background-color: var(--light-background);
}

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

.mission-text h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.mission-text p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.mission-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(40, 170, 225, 0.15);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(40, 170, 225, 0.8);
    color: white;
    padding: 0.75rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 2.2rem;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.leadership-profiles {
    margin-top: 3rem;
}

.leadership-profiles h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-size: 1.6rem;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 2px 8px rgba(40,170,225,0.10);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(40, 170, 225, 0.15);
}

.profile-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.profile-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Locations Section */
.locations-section {
    padding: 4rem 0;
    background-color: var(--light-background);
}

.locations-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 2.2rem;
}

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

.location-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(40, 170, 225, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(40, 170, 225, 0.15);
}

.location-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.location-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Governance Section */
.governance-section {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.governance-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 2.2rem;
}

.quality-features {
    margin-top: 3rem;
}

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

.quality-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(40, 170, 225, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(40, 170, 225, 0.15);
}

.quality-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.quality-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.quality-features .cta-button {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
}

/* Testimonial Highlight Section */
.testimonial-highlight {
    background-color: var(--primary-color);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content blockquote {
    margin: 0 0 2rem;
}

.testimonial-content blockquote p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-size: 1.1rem;
    font-style: normal;
    opacity: 0.9;
}

.testimonial-content .secondary-cta {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonial-content .secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card,
.profile-card,
.location-card,
.quality-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.value-card:nth-child(2),
.profile-card:nth-child(2),
.location-card:nth-child(2),
.quality-card:nth-child(2) {
    animation-delay: 0.2s;
}

.value-card:nth-child(3),
.profile-card:nth-child(3),
.location-card:nth-child(3),
.quality-card:nth-child(3) {
    animation-delay: 0.4s;
}

.value-card:nth-child(4) {
    animation-delay: 0.6s;
}

.value-card:nth-child(5) {
    animation-delay: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
    }
    
    .mission-image {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

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

    .about-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .value-card,
    .profile-card,
    .location-card,
    .quality-card {
        padding: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .testimonial-content blockquote p {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .value-icon svg,
    .profile-icon svg,
    .location-icon svg,
    .quality-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .value-card h3,
    .profile-card h4,
    .location-card h3,
    .quality-card h4 {
        font-size: 1.2rem;
    }
}

/* Accessibility - Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .value-card,
    .profile-card,
    .location-card,
    .quality-card {
        animation: none !important;
    }
    
    .mission-content:hover .mission-image img,
    .value-card:hover,
    .profile-card:hover,
    .location-card:hover,
    .quality-card:hover,
    .testimonial-content .secondary-cta:hover {
        transform: none;
    }
}

/* --- HERO SECTION: ensure matches home page --- */
.hero.about-hero {
    background: linear-gradient(rgba(40, 170, 225, 0.1), rgba(40, 170, 225, 0.05));
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../photos/pattern-dots.svg');
    background-size: 20px;
    opacity: 0.15;
    pointer-events: none;
}
.hero-content { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.hero.about-hero h1 { margin-bottom: 1.5rem; color: var(--text-color); font-size: 2.8rem; line-height: 1.2; }
.hero.about-hero .hero-subtitle { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 1.5rem; font-weight: 600; }
.hero.about-hero .hero-description { font-size: 1.25rem; color: var(--light-text); margin-bottom: 1.5rem; line-height: 1.6; }
.hero-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; background-color: rgba(255,255,255,0.8); padding: 0.5rem 1rem; border-radius: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); animation: fadeInUp 0.6s ease-out forwards; opacity: 0; }
.hero-badge:nth-child(1) { animation-delay: 0.2s; }
.hero-badge:nth-child(2) { animation-delay: 0.4s; }
.hero-badge:nth-child(3) { animation-delay: 0.6s; }
.badge-icon { color: var(--primary-color); font-size: 1.2rem; font-weight: bold; }
.badge-text { color: var(--text-color); font-weight: 600; font-size: 0.9rem; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }

/* --- CARD LAYOUTS: match home page --- */
.service-card {
    text-align: center;
    background-color: white;
    box-shadow: 0 4px 6px rgba(40, 170, 225, 0.1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: var(--border-radius);
    padding: 2rem;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(40, 170, 225, 0.15);
}
.service-icon {
    margin: 0 auto 1rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-background);
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}
.service-card h3, .service-card h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}
.service-features, .profile-features, .location-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: center;
}
.service-features li, .profile-features li, .location-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-features li::before, .profile-features li::before, .location-features li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* --- CAROUSEL --- */
.quality-carousel, .leadership-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
}
.quality-carousel .service-card, .leadership-carousel .service-card {
    min-width: 320px;
    scroll-snap-align: center;
}
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.carousel-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}
.carousel-btn:disabled {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    display: inline-block;
    transition: background 0.2s;
}
.carousel-dot.active {
    background: var(--primary-color);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-content { max-width: 95vw; }
    .service-card, .leadership-carousel .service-card { min-width: 260px; }
}
@media (max-width: 768px) {
    .hero.about-hero { padding: 3rem 0.5rem; }
    .service-card, .leadership-carousel .service-card { min-width: 220px; }
    .hero-badges { gap: 1rem; }
}
@media (max-width: 480px) {
    .hero-content { padding: 0 0.5rem; }
    .service-card, .leadership-carousel .service-card { min-width: 180px; padding: 1rem; }
} 