/* About Us - Modern Interactive Design */

/* Importar fuentes */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700;800&family=Fredoka+One&display=swap');

/* Variables CSS - SOGED Brand Colors */
:root {
    /* Usar paleta global de variables.css (verde principal) */
    --primary-color: #28A745;
    --secondary-color: #FFB300;
    --accent-color: #FF6B35;
    --success-color: #2ECC71;
    --bg-primary: #F8FAFC;
    --bg-secondary: #ffffff;
    --bg-tertiary: #F1F5F9;
    --card-bg: #fff;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --shadow-color: rgba(40, 167, 69, 0.08);
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
    --gradient-primary: linear-gradient(135deg, #28A745 0%, #20C997 100%);
    --gradient-secondary: linear-gradient(135deg, #FFB300 0%, #FFA726 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8A65 100%);
    --gradient-success: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section - Interactivo */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: var(--gradient-secondary);
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    background: var(--gradient-accent);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 163, 224, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Fredoka', sans-serif;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-color);
    border: 2px solid transparent;
    transition: var(--transition);
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Section - Glassmorphism */
.mission-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 163, 224, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 163, 224, 0.3);
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(360deg);
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section - Modern Card Design */
.values-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.value-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-color);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.15);
}

.value-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
}



.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--primary-color);
}

.value-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.value-card:hover .value-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}



/* Overlay variation */
.value-card--overlay {
    position: relative;
    border: none;
}

.value-card--overlay .value-media {
    aspect-ratio: 4 / 3;
}

.value-card--overlay .value-body {
    position: absolute;
    inset: 0;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.15), rgba(0,0,0,0));
    color: #fff;
    opacity: 0.0;
    transition: var(--transition);
}

.value-card--overlay:hover .value-body {
    opacity: 1.0;
}

.value-card--overlay .value-title,
.value-card--overlay .value-description {
    color: #fff;
}

.value-card--overlay .value-title {
    margin-bottom: 0.4rem;
}

/* Team Section - Auto Carousel */
.team-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-carousel {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: slideTeam 30s linear infinite;
    width: max-content;
}

.team-carousel:hover {
    animation-play-state: paused;
}

@keyframes slideTeam {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.team-slide {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 250px;
    flex-shrink: 0;
}

.team-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-slide:hover::before {
    transform: scaleX(1);
}

.team-slide:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(255, 210, 63, 0.2);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gradient-accent);
    box-shadow: 0 8px 25px rgba(255, 210, 63, 0.3);
    transition: var(--transition);
}

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

.team-photo--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.team-photo--initials span {
    line-height: 1;
}

.team-slide:hover .team-photo {
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.team-slide:hover .team-photo img {
    transform: scale(1.1);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
    color: var(--primary-color);
}

.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 3rem 2rem;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .values-timeline::before {
        left: 2rem;
        transform: none;
    }
    
    .value-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .value-item:nth-child(odd) .value-content,
    .value-item:nth-child(even) .value-content {
        margin: 1rem 0 0 0;
        max-width: 100%;
    }
    
    .team-carousel {
        animation-duration: 20s;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-timeline::before {
        display: none;
    }
    
    .value-item {
        margin-bottom: 2rem;
    }
    
    .value-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .team-carousel {
        animation-duration: 15s;
    }
    
    .team-slide {
        min-width: 200px;
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .mission-title {
        font-size: 1.5rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .value-content {
        padding: 1.5rem;
    }
    
    .team-slide {
        min-width: 180px;
        padding: 1rem;
    }
    
    .team-photo {
        width: 80px;
        height: 80px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* Team Hero Image Section */
.team-hero-section {
    padding: 120px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.team-hero-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) saturate(1.1);
    transition: all 0.5s ease;
}

.team-hero-image:hover {
    transform: scale(1.05);
    filter: brightness(0.8) saturate(1.2);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(40, 167, 69, 0.85) 0%,
        rgba(32, 201, 151, 0.75) 50%,
        rgba(255, 179, 0, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
}

.team-overlay-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.team-overlay-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: 'Fredoka One', cursive;
    line-height: 1.2;
}

.team-overlay-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    opacity: 0.95;
    font-weight: 500;
}

.team-stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.mini-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.mini-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mini-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mini-stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

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

/* Responsive Design */
/* Tablet responsive */
@media (max-width: 991px) and (min-width: 769px) {
    .about-title {
        font-size: 3.2rem !important;
        line-height: 1.2;
    }
    
    .about-subtitle {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 2.5rem !important;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.3rem !important;
        line-height: 1.5;
    }
    
    .team-overlay-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }
    
    .about-subtitle {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.5;
    }
    
    .team-hero-section {
        padding: 100px 0;
        margin: 50px 0;
    }
    
    .team-hero-container {
        height: 70vh;
        min-height: 550px;
        max-height: 650px;
    }
    
    .team-overlay-title {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    
    .team-overlay-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .team-stats-mini {
        gap: 1.5rem;
    }
    
    .mini-stat {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }
    
    .mini-stat-number {
        font-size: 2rem;
    }
    
    .mini-stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 2.4rem !important;
        line-height: 1.2;
    }
    
    .about-subtitle {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 2rem !important;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.1rem !important;
        line-height: 1.5;
    }
    
    .team-hero-section {
        padding: 80px 0;
        margin: 40px 0;
    }
    
    .team-hero-container {
        height: 60vh;
        min-height: 500px;
        max-height: 600px;
    }
    
    .team-overlay-content {
        padding: 1rem;
    }
    
    .team-overlay-title {
        font-size: 2rem;
    }
    
    .team-overlay-text {
        font-size: 1rem;
    }
    
    .team-stats-mini {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .mini-stat {
        width: 100%;
        max-width: 200px;
    }
}

.about-hero-section {
    text-align: center;
    padding: 140px 0 60px 0;
    background: #f8fbfd;
    position: relative;
}

.about-hero-group {
    max-width: 1100px;
    position: relative;
}

.about-photo-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 16 / 9;
    background: #0f172a;
}

.about-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    margin: 0;
}

.about-carousel-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-carousel-btn:hover {
    transform: translateY(-50%) scale(1.06);
    background: #fff;
}

.about-carousel-btn--prev { left: 14px; }
.about-carousel-btn--next { right: 14px; }

.about-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.about-carousel-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-carousel-dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

.about-group-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.responsive-hero {
    aspect-ratio: auto;
    overflow: visible;
}

.responsive-hero .about-group-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    background: linear-gradient(to top, rgba(0,0,0,0.45), rgba(0,0,0,0.05), rgba(0,0,0,0));
    color: #fff;
}

.overlay-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.overlay-subtitle {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.about-hero-overlay .cta-btn {
    margin-top: 8px;
    border-color: rgba(255,255,255,0.9);
    color: #fff;
}

.about-hero-overlay .cta-btn:hover {
    background: #fff;
    color: var(--primary-color);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.7rem 2.2rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,163,224,0.10);
    justify-content: center;
}

.about-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
}

.about-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6b7a90;
    margin-bottom: 2.2rem;
    text-align: center;
}

.about-description {
    font-size: 1.3rem;
    color: #7a8ca3;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.7;
    text-align: center;
}

.about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.about-stat-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,163,224,0.08);
    padding: 2.2rem 2.8rem;
    min-width: 220px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.about-stat-card.is-active,
.about-stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(40, 167, 69, 0.18);
}

.about-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 0.85rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.25rem;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-transform: none;
}

@media (max-width: 991px) {
    .about-title { font-size: 2.5rem; }
    .about-subtitle { font-size: 1.3rem; }
    .about-description { font-size: 1rem; }
    .about-stat-card { padding: 1.5rem 1.2rem; min-width: 150px; }
    .about-stat-number { font-size: 1.5rem; }
}
@media (max-width: 576px) {
    .about-title { font-size: 1.7rem; }
    .about-subtitle { font-size: 1rem; }
    .about-description { font-size: 0.95rem; }
    .about-stats { gap: 1rem; }
    .about-stat-card { padding: 1rem 0.5rem; min-width: 110px; }
    .about-stat-number { font-size: 1.1rem; }
} 