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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(44, 62, 80, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
}

.logo-inner {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-dot {
    width: 14px;
    height: 14px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border-radius: 50%;
    animation: logoPulse 2s ease-in-out infinite;
}

.logo-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.logo-text span {
    font-size: 0.8rem;
    color: #bdc3c7;
    font-weight: 400;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #e91e63;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signup-btn {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.signup-btn::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;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #e91e63, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.1;
}

.subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ecf0f1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.3rem;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-badge {
    background: rgba(44, 62, 80, 0.8);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(44, 62, 80, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 30, 99, 0.3);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #bdc3c7;
    font-weight: 500;
}

/* Page Hero (for other pages) */
.page-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #bdc3c7;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #bdc3c7;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #e91e63;
}

.cta-button.yellow {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.cta-button.pink {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

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

.cta-button.secondary:hover {
    background: #e91e63;
    border-color: #e91e63;
}

.cta-button::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.6s;
}

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

/* Services Section */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border: 2px solid #e91e63;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 30, 99, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #bdc3c7;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
}

.facilities-showcase {
    margin-top: 40px;
}

.facility-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.facility-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(44, 62, 80, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(10px);
}

.image-placeholder.main-facility {
    height: 500px;
}

.placeholder-content {
    text-align: center;
    color: #bdc3c7;
}

.placeholder-content h3 {
    font-size: 1.8rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.placeholder-content p {
    font-size: 1.1rem;
}

.facility-details h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(44, 62, 80, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateX(10px);
    border-color: rgba(233, 30, 99, 0.3);
}

.facility-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facility-item h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.facility-item p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin: 0;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
}

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

.story-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 30, 99, 0.3);
}

.story-image {
    margin-bottom: 25px;
}

.story-image .image-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.member-initial {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

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

.story-role {
    font-size: 1rem;
    color: #e91e63;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-rating {
    font-size: 1.2rem;
}

/* Schedule Section */
.schedule-section {
    padding: 80px 0;
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.schedule-tab {
    background: rgba(44, 62, 80, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.schedule-tab.active,
.schedule-tab:hover {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
    border-color: transparent;
}

.schedule-content {
    position: relative;
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block;
}

.class-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: rgba(44, 62, 80, 0.9);
    border-radius: 15px;
    margin-bottom: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.class-item:hover {
    transform: translateX(10px);
    border-color: rgba(233, 30, 99, 0.3);
}

.class-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e91e63;
    min-width: 80px;
}

.class-info {
    flex: 1;
}

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

.class-info p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.class-level {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.class-level.beginner {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.class-level.intermediate {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.class-level.advanced {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Membership Section */
.membership-section {
    padding: 80px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.membership-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 25px;
    padding: 35px;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: cardFadeIn 0.8s ease forwards;
}

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

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(233, 30, 99, 0.05), rgba(156, 39, 176, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.membership-card:hover::before {
    opacity: 1;
}

.membership-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 30, 99, 0.3);
}

.membership-card.featured {
    border: 2px solid #e91e63;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 30px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.plan-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 15px;
}

.multi-price .price-main {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.multi-price .price-alt {
    font-size: 1.6rem;
    color: #9c27b0;
}

.plan-subtitle {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.5;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
}

.check, .cross {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature.included .check {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.feature.excluded {
    color: #7f8c8d;
}

.feature.excluded .cross {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.flags-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.flag {
    width: 35px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flag:hover {
    transform: scale(1.1);
}

.flag.colombia {
    background: linear-gradient(to bottom, 
        #ffcd00 0%, #ffcd00 50%, 
        #0033a0 50%, #0033a0 75%, 
        #ce1126 75%, #ce1126 100%);
}

.flag.mexico {
    background: linear-gradient(to right, 
        #006847 0%, #006847 33%, 
        white 33%, white 66%, 
        #ce1126 66%, #ce1126 100%);
}

.flag.canada {
    background: linear-gradient(to right, 
        #ff0000 0%, #ff0000 25%, 
        white 25%, white 75%, 
        #ff0000 75%, #ff0000 100%);
    font-size: 14px;
}

/* Membership Comparison Table */
.membership-comparison {
    padding: 80px 0;
}

.comparison-table {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: rgba(233, 30, 99, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-column,
.plan-column {
    padding: 25px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-column:last-child,
.plan-column:last-child {
    border-right: none;
}

.plan-column.featured {
    background: rgba(233, 30, 99, 0.1);
    position: relative;
}

.plan-column h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.plan-price {
    font-size: 1.5rem;
    color: #e91e63;
    font-weight: 800;
}

.comparison-body {
    display: grid;
    grid-template-columns: 1fr;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-cell,
.plan-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-cell {
    justify-content: flex-start;
    font-weight: 500;
    color: #ffffff;
}

.plan-cell:last-child {
    border-right: none;
}

.plan-cell {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

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

.benefit-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 30, 99, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: rgba(44, 62, 80, 0.8);
    border-radius: 30px;
    margin: 40px 0;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #bdc3c7;
}

.feature-icon {
    color: #27ae60;
    font-size: 1.2rem;
}

.cta-guarantee {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(39, 174, 96, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text strong {
    color: #27ae60;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.guarantee-text p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
}

/* About Page Styles */
.about-story {
    padding: 60px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content {
    padding-right: 20px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 25px;
}

.story-text strong {
    color: #e91e63;
    font-weight: 600;
}

.story-text em {
    color: #9c27b0;
    font-style: italic;
}

.achievements {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.achievement-item {
    text-align: center;
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #e91e63;
    margin-bottom: 5px;
}

.achievement-label {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-weight: 500;
}

/* Mission & Vision */
.mission-vision {
    padding: 60px 0;
}

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

.mv-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 30, 99, 0.3);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
}

/* Team Section */
.team-section {
    padding: 60px 0;
}

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

.team-member {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-image {
    margin-bottom: 20px;
}

.member-image .image-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

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

.member-role {
    font-size: 1rem;
    color: #e91e63;
    margin-bottom: 15px;
    font-weight: 500;
}

.member-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact Form */
.contact-form-container {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7f8c8d;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.submit-btn {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border: none;
    padding: 18px;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline;
}

.submit-btn.loading span {
    display: none;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #bdc3c7;
}

/* Quick Actions */
.quick-actions {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-actions h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.action-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.action-btn.call {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
}

.action-btn.schedule {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

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

.location-card {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.location-header h4 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
}

.location-badge {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.location-badge.main {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    color: white;
}

.location-badge:not(.main) {
    background: rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-address,
.location-phone {
    font-size: 0.95rem;
    color: #bdc3c7;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.feature-tag {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.map-container {
    margin-top: 40px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(44, 62, 80, 0.8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(10px);
}

.map-content {
    text-align: center;
    color: #bdc3c7;
}

.map-content h3 {
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 10px;
}

.map-btn {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

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

.faq-item {
    background: rgba(44, 62, 80, 0.9);
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(233, 30, 99, 0.1);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #e91e63;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin: 0;
}

/* Footer */
.footer {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-section h4,
.footer-section h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h5 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-top: 15px;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(233, 30, 99, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e91e63;
}

.contact-info,
.schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info p,
.schedule p {
    font-size: 0.95rem;
    color: #bdc3c7;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin: 0;
}

/* Notification */
#notification-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
}

.notification {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    font-weight: 500;
    margin-bottom: 10px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    animation: slideIn 0.3s ease forwards;
}

/* Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

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

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

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

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .nav-actions {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .facility-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-tabs {
        gap: 5px;
    }
    
    .schedule-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .class-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .achievements {
        justify-content: center;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 200px 100px 100px 100px 100px;
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .membership-card,
    .contact-form-container,
    .service-card,
    .benefit-card,
    .mv-card,
    .team-member {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .achievements {
        flex-direction: column;
        gap: 20px;
    }
    
    .achievement-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}