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

:root {
    --primary-blue: #037ef3;
    --secondary-orange: #f85a40;
    --dark-blue: #025bb5;
    --light-blue: #e6f3ff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./assets/portada.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 20s ease-out;
}

.hero:hover .hero-background {
    transform: scale(1.05);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 126, 243, 0.3) 0%, rgba(0, 86, 179, 0.4) 50%, rgba(255, 152, 0, 0.2) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
    z-index: 3;
    animation: float 20s ease-in-out infinite;
}

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

.hero .container {
    position: relative;
    z-index: 4;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    animation: badgePulse 3s ease-in-out infinite;
}

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

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-text {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 50px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-text h1 {
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.hero-title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 50%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 16px 0;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    animation: statCounter 2s ease-out 0.5s both;
}

@keyframes statCounter {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    margin-top: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary.btn-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
    border: 2px solid transparent;
    color: var(--white);
}

.btn-primary.btn-hero:hover {
    background: linear-gradient(135deg, #0056b3 0%, var(--primary) 100%);
    box-shadow: 0 10px 30px rgba(3, 126, 243, 0.4);
}

.btn-secondary.btn-hero {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-arrow {
    opacity: 1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background: var(--white);
}

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

.program-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

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

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

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.program-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.program-link:hover {
    color: var(--dark-blue);
}

.program-link i {
    transition: var(--transition);
}

.program-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a237e 0%, #283593 25%, #3949ab 50%, #5c6bc0 75%, #7986cb 100%);
    z-index: 1;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="ctaDots" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="60" cy="60" r="0.8" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaDots)"/></svg>') repeat;
    opacity: 0.4;
    z-index: 2;
    animation: ctaParticleFloat 25s ease-in-out infinite;
}

@keyframes ctaParticleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-0.5deg); }
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.1) 0%, rgba(3, 126, 243, 0.2) 50%, rgba(156, 39, 176, 0.1) 100%);
    z-index: 3;
}

.cta-section .container {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
}

.cta-content {
    animation: ctaSlideInLeft 1s ease-out;
}

@keyframes ctaSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 24px;
    animation: ctaBadgePulse 3s ease-in-out infinite;
}

@keyframes ctaBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.badge-icon {
    font-size: 1.2rem;
    animation: ctaIconSpin 4s ease-in-out infinite;
}

@keyframes ctaIconSpin {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cta-question {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 2.8rem;
}

.cta-highlight {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 50%, #e65100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(255, 152, 0, 0.3);
    position: relative;
    display: inline-block;
}

.cta-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #f57c00);
    border-radius: 2px;
    animation: ctaUnderlineGrow 2s ease-out 0.5s both;
}

@keyframes ctaUnderlineGrow {
    0% { width: 0; }
    100% { width: 100%; }
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

.cta-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    animation: ctaFeatureSlideUp 0.8s ease-out;
}

.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.4s; }

@keyframes ctaFeatureSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 1.1rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary.btn-cta {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border: 2px solid transparent;
    color: var(--white);
}

.btn-primary.btn-cta:hover {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.4);
}

.btn-secondary.btn-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-cta:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: rgba(255, 255, 255, 0.5);
 }

 .cta-visual {
     position: relative;
     animation: ctaSlideInRight 1s ease-out;
 }

 @keyframes ctaSlideInRight {
     0% {
         opacity: 0;
         transform: translateX(50px);
     }
     100% {
         opacity: 1;
         transform: translateX(0);
     }
 }

 .cta-image-container {
     position: relative;
     border-radius: 30px;
     overflow: hidden;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
     transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
     transition: all 0.5s ease;
 }

 .cta-image-container:hover {
     transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
 }

 .image-decoration {
     position: absolute;
     top: -20px;
     right: -20px;
     width: 100px;
     height: 100px;
     background: linear-gradient(135deg, #ff9800, #f57c00);
     border-radius: 50%;
     opacity: 0.8;
     z-index: 1;
     animation: ctaDecorationFloat 6s ease-in-out infinite;
 }

 @keyframes ctaDecorationFloat {
     0%, 100% { transform: translateY(0px) scale(1); }
     50% { transform: translateY(-10px) scale(1.1); }
 }

 .cta-main-image {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 30px;
     position: relative;
     z-index: 2;
     transition: all 0.5s ease;
 }

 .cta-image-container:hover .cta-main-image {
     filter: brightness(1.1) contrast(1.05);
 }

 .floating-stats {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 3;
     pointer-events: none;
 }

 .stat-bubble {
     position: absolute;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(20px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 20px;
     padding: 16px 20px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     animation: ctaStatFloat 4s ease-in-out infinite;
     min-width: 80px;
 }

 .stat-bubble.stat-1 {
     top: 20px;
     right: 20px;
     animation-delay: 0s;
 }

 .stat-bubble.stat-2 {
     bottom: 80px;
     left: 20px;
     animation-delay: 1.5s;
 }

 .stat-bubble.stat-3 {
     top: 50%;
     right: -10px;
     transform: translateY(-50%);
     animation-delay: 3s;
 }

 @keyframes ctaStatFloat {
     0%, 100% {
         transform: translateY(0px) scale(1);
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     }
     50% {
         transform: translateY(-8px) scale(1.05);
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
     }
 }

 .stat-bubble .stat-number {
     display: block;
     font-size: 1.8rem;
     font-weight: 800;
     color: #1a237e;
     margin-bottom: 4px;
     line-height: 1;
 }

 .stat-bubble .stat-label {
     display: block;
     font-size: 0.75rem;
     font-weight: 600;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     line-height: 1;
 }

/* AIESEC Way Section */
.aiesec-way {
    padding: 80px 0;
    background: var(--light-gray);
}

.way-visual {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.way-circle {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-center {
    position: absolute;
    background: var(--primary-blue);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.2;
}

.circle-item {
    position: absolute;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    font-size: 0.9rem;
    text-align: center;
    min-width: 140px;
}

.circle-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffeaa7;
}

.circle-2 {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #a8e6cf;
}

.circle-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb3ba;
}

.circle-4 {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #bae1ff;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

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

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

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

/* Global Presence Section */
.global-presence {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.presence-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.presence-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.presence-quote {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-orange);
}

.presence-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-author {
    color: var(--text-light);
    font-weight: 600;
}

.presence-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-image {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
}

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

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-badge {
        margin-bottom: 24px;
    }

    .badge-text {
        font-size: 0.85rem;
    }

    .hero-text {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-title-main {
        font-size: 2.8rem;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .hero-stats {
        gap: 24px;
        margin-bottom: 32px;
        padding: 20px 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
        padding: 3px 6px;
        border-radius: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 2rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 80px 0;
        min-height: auto;
    }

    .cta-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-content {
        order: 2;
    }

    .cta-visual {
        order: 1;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-question {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
        max-width: none;
    }

    .cta-features {
        justify-content: center;
        gap: 16px;
    }

    .feature-item {
        flex: 1;
        min-width: 140px;
        padding: 10px 14px;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .cta-buttons {
        justify-content: center;
        gap: 16px;
    }

    .btn-cta {
        min-width: 160px;
        padding: 14px 28px;
        font-size: 1rem;
    }

    .cta-image-container {
        transform: none;
        border-radius: 20px;
    }

    .cta-image-container:hover {
        transform: scale(1.02);
    }

    .cta-main-image {
        height: 300px;
        border-radius: 20px;
    }

    .stat-bubble {
        padding: 12px 16px;
        min-width: 70px;
    }

    .stat-bubble .stat-number {
        font-size: 1.4rem;
    }

    .stat-bubble .stat-label {
        font-size: 0.7rem;
    }

    .way-circle {
        width: 300px;
        height: 300px;
    }

    .circle-center {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }

    .circle-item {
        font-size: 0.8rem;
        min-width: 120px;
        padding: 12px 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .presence-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
    }

    .hero-text {
        padding: 30px 20px;
    }

    .hero-title-main {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-question {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .feature-item {
        min-width: auto;
        padding: 8px 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .cta-main-image {
        height: 250px;
    }

    .stat-bubble {
        padding: 8px 12px;
        min-width: 60px;
    }

    .stat-bubble .stat-number {
        font-size: 1.2rem;
    }

    .stat-bubble .stat-label {
        font-size: 0.65rem;
    }

    .image-decoration {
        width: 60px;
        height: 60px;
        top: -10px;
        right: -10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .way-circle {
        width: 250px;
        height: 250px;
    }

    .circle-center {
        width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }

    .circle-item {
        font-size: 0.7rem;
        min-width: 100px;
        padding: 10px 12px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.program-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    * {
        box-shadow: none !important;
    }
}