/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.scrolled {
    transform: translateY(-100%);
}

.header.scrolled-bg {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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


.mobile-menu {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    width: 100%;
    height: calc(100vh - 70px);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    padding: 60px 20px 40px;
    gap: 0;
    z-index: 999;
    border-top: 3px solid #ffd700;
    overflow: hidden;
}

.mobile-menu.active {
    left: 0;
    transform: translateX(0);
}

.mobile-menu li {
    list-style: none;
    margin: 8px 0;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.4s ease forwards;
}

.mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 20px 30px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu a:hover::before {
    opacity: 0.1;
}

.mobile-menu a:hover {
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

.mobile-menu a:active {
    transform: translateY(-1px);
}

.mobile-menu::before {
    content: '';
    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 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    gap: 10px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-logo-text {
    display: block;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Desktop menu styles */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.desktop-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-menu a:hover {
    color: #000000;
    transform: translateY(-2px);
}

.desktop-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #333;
    transition: width 0.3s ease;
}

.desktop-menu a:hover::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 5px;
}

.mobile-only {
    display: none;
}

.nav-mobile-controls {
    display: none;
}

.lang-btn {
    background: none;
    border: 2px solid #333;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 40px;
}

.lang-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #333;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: #ffffff;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    width: 50px;
    height: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-toggle:hover {
    background: #f8f9fa;
    border-color: #ffd700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-toggle.active {
    background: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 1px;
    position: relative;
    display: block;
}

.nav-toggle.active span {
    background: #ffffff;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -1px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -1px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 10;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('foto-tenis.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 12;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 13;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 14;
}

/* Ensure hero background stays visible during scroll */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 0;
}


.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.stat-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 0.9rem;
    color: #f0f0f0;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.stat-label.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.btn {
    padding: 14px 28px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    color: #ffffff;
}

.btn-primary {
    background: #ffffff;
    color: #333;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border-color: #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-duration {
    background: #333;
    color: white;
    border: 2px solid #333;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
}

.btn-duration:hover {
    background: #000;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-container {
    width: 400px;
    height: 400px;
    background: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e5e5e5;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    animation: logoFloat 4s ease-in-out infinite;
    border-radius: 17px;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border: 3px solid white;
}

.icon-1 {
    top: 15%;
    right: -25px;
    animation: floatIcon 4s ease-in-out infinite;
}

.icon-2 {
    bottom: 25%;
    left: -25px;
    animation: floatIcon 4s ease-in-out infinite 1s;
}

.icon-3 {
    top: 50%;
    right: -35px;
    animation: floatIcon 4s ease-in-out infinite 2s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

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

/* Program Sections */
.program-section {
    padding: 100px 0;
    position: relative;
}

.argentina-section {
    position: relative;
    overflow: hidden;
}

.usa-section {
    position: relative;
    overflow: hidden;
}

.program-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.program-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('foto-programass.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.usa-section .program-image-bg {
    background-image: url('fondo-programas-usa.jpg');
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.argentina-section .container {
    position: relative;
    z-index: 2;
}

.argentina-section .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.argentina-section .section-header p {
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.usa-section .container {
    position: relative;
    z-index: 2;
}

.usa-section .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.usa-section .section-header p {
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.italia-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.flag {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.argentina-flag {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.usa-flag {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #dc2626 100%);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Duration Cards */
.program-duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.duration-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.duration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #333, #666);
}

.duration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

.duration-card.featured {
    border-color: #333;
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.duration-card.featured::before {
    background: linear-gradient(90deg, #333, #000);
}

.duration-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.duration-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.duration-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.duration-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.duration-subtitle {
    font-size: 0.9rem;
    color: #f0f0f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.duration-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.duration-features li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #f0f0f0;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.duration-features li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.duration-features i {
    color: #ffffff;
    margin-right: 15px;
    font-size: 1rem;
    width: 20px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.duration-features li:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

/* USA Section Specific Styles */
.duration-pricing {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-item {
    color: #f0f0f0;
    font-size: 0.9rem;
    margin: 5px 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.original-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 0.8rem;
}

.discount-price {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
}

.academy-info {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.academy-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.academy-description h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.academy-description p {
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
}

.academy-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.quote-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.academy-quote p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

.usa-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.usa-contact h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.partners-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('socios-estra.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partners-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.partners-section .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.partners-section .section-header p {
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.partners-section .container {
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.partner-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

.partner-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo,
.partner-card:hover .partner-logo-placeholder {
    transform: scale(1.05);
}

.partner-content {
    flex: 1;
}

.partner-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.partner-content p {
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
}

.partner-content p:last-of-type {
    margin-bottom: 25px;
}

.partner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.feature-tag i {
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.services-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('foto-cancha.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.services-section .section-header h2 {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-section .section-header p {
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.services-section .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #333, #666);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #333 0%, #666 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Individual service icon colors - Orange and Black theme */
.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #333 0%, #000 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

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

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-card p {
    color: #f0f0f0;
    line-height: 1.6;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Application Section */
.application-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.application-image-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.application-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(2px);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.application-content {
    position: relative;
    z-index: 2;
}

.application-header {
    text-align: center;
    margin-bottom: 80px;
}

.application-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.application-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.application-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.application-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.application-form-horizontal {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.95) 100%);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.application-form-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.application-form-horizontal::after {
    content: '';
    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 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.form-header-horizontal {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.form-header-horizontal::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.form-header-horizontal h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-header-horizontal p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 0;
}

.horizontal-form {
    position: relative;
    z-index: 2;
}

.form-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-group-horizontal {
    display: flex;
    flex-direction: column;
}

.form-group-horizontal.full-width {
    grid-column: 1 / -1;
}

.form-group-horizontal label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-horizontal input,
.form-group-horizontal select,
.form-group-horizontal textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group-horizontal input:focus,
.form-group-horizontal select:focus,
.form-group-horizontal textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.form-group-horizontal input::placeholder,
.form-group-horizontal textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.form-group-horizontal select {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.form-group-horizontal select option {
    background: #2a2a2a;
    color: #ffffff;
}

.form-group-horizontal textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form-submit-horizontal {
    text-align: center;
    margin-top: 30px;
}

.btn-application-horizontal {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.btn-application-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.contact-info-horizontal {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-section {
    text-align: center;
    min-width: 250px;
}

.contact-section h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-horizontal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-item-horizontal:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.contact-item-horizontal i {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item-horizontal:hover i {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateX(10px);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.application-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin: 0;
}

.application-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.application-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.application-form {
    position: relative;
    z-index: 2;
}

.form-section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group.full-width {
    flex: none;
    width: 100%;
    margin-bottom: 25px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.application-form .form-group {
    position: relative;
}

.application-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fafafa;
    font-size: 0.95rem;
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.application-form input::placeholder,
.application-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

.application-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-application {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-application:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.btn-application:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
}


.footer p {
    color: #ccc;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: #555;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .nav-center {
        display: none !important;
    }

    .desktop-menu {
        display: none !important;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-only {
        display: flex;
        order: 1;
    }

    .nav-logo {
        order: 2;
    }

    .nav-toggle {
        order: 3;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    
    /* Mobile navbar scroll animation */
    .header {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .header.scrolled {
        transform: translateY(-100%);
    }



    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-40%);
    }

    .nav-logo-text {
        display: none;
    }

    .nav-logo-img {
        width: 50px;
        height: 50px;
    }

    .mobile-only .language-selector {
        gap: 3px;
    }

    .mobile-only .lang-btn {
        padding: 6px 8px;
        font-size: 0.8rem;
        min-width: 30px;
    }

    .hero {
        padding-top: 120px;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .hero-image-bg {
        background-attachment: scroll;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px !important;
    }

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

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-duration-grid {
        grid-template-columns: 1fr;
    }

    .duration-card.featured {
        transform: none;
    }

    .duration-card.featured:hover {
        transform: translateY(-8px);
    }

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

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

    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .partner-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .floating-icon {
        display: none;
    }

    .logo-container {
        width: 250px;
        height: 250px;
        margin-bottom: 40px;
    }
    
    /* Application section responsive styles for tablets */
    .application-header h2 {
        font-size: 2.5rem;
    }
    
    .form-grid-horizontal {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .application-form-horizontal {
        padding: 40px 30px;
        background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 25, 0.95) 100%);
    }
    
    .contact-info-horizontal {
        gap: 50px;
    }
    
    .contact-section {
        min-width: 200px;
    }
    
    .academy-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .nav-logo-img {
        width: 45px;
        height: 45px;
    }

    .lang-btn {
        padding: 5px 6px;
        font-size: 0.75rem;
        min-width: 28px;
    }

    .hero {
        padding-top: 120px;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .hero-image-bg {
        background-attachment: scroll;
    }

    .logo-container {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
    }

    .hero-container {
        gap: 60px !important;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .duration-price {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Application section responsive styles for mobile */
    .application-header h2 {
        font-size: 2rem;
    }
    
    .application-header p {
        font-size: 1rem;
    }
    
    .application-icon {
        width: 60px;
        height: 60px;
    }
    
    .application-icon i {
        font-size: 1.5rem;
    }
    
    .form-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .application-form-horizontal {
        padding: 30px 20px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    }
    
    .form-group-horizontal input,
    .form-group-horizontal select,
    .form-group-horizontal textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .btn-application-horizontal {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .contact-info-horizontal {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .contact-section {
        min-width: auto;
    }
    
    .contact-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .academy-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .academy-description,
    .academy-quote {
        padding: 20px;
    }
    
    .academy-description h3 {
        font-size: 1.5rem;
    }
    
    .academy-quote p {
        font-size: 1rem;
    }
    
    /* Mobile navbar scroll animation for small screens */
    .header {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .header.scrolled {
        transform: translateY(-100%);
    }
}

