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

:root {
    --primary-color: #e91e63;
    --secondary-color: #9c27b0;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --card-bg: #1a1a1a;
    --accent-gradient: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    /* Aliases used across component stylesheets */
    --text-primary: #ffffff;
    --input-bg: rgba(255, 255, 255, 0.05);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--gray-text);
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-text);
}

.logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Auth Buttons */
.nav-auth,
.nav-member {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login,
.btn-logout {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover,
.btn-logout:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

.btn-register {
    background: var(--accent-gradient);
    border: none;
    color: var(--light-text);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-dashboard {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-gradient);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.btn-dashboard i {
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 30px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-form .form-group {
    margin-bottom: 25px;
}

.auth-form .btn {
    width: 100%;
    margin-top: 10px;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-text);
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.test-credentials {
    margin-top: 30px;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.test-credentials p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.test-credentials strong {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop') center/cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.7) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--light-text);
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--light-text);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background: var(--light-text);
    color: var(--dark-bg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

/* Schedule Section */
.schedule {
    background: var(--darker-bg);
}

.schedule-wrapper {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
}

.schedule-sticky-header {
    background: var(--darker-bg);
    padding: 20px 0;
    margin-bottom: 20px;
}

.schedule-sticky-header .section-header {
    margin-bottom: 20px;
}

.schedule-nav {
    display: flex;
    justify-content: space-around;
    background: var(--dark-bg);
    padding: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-day {
    background: transparent;
    border: none;
    color: var(--gray-text);
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    flex: 1;
    min-width: 100px;
}

.schedule-day:hover,
.schedule-day.active {
    background: var(--accent-gradient);
    color: var(--light-text);
}

.schedule-content {
    padding: 20px 40px 40px 40px;
}

.schedule-day-content {
    display: none;
}

.schedule-day-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.class-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: var(--dark-bg);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.class-info {
    flex: 1;
}

.class-item:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.class-time {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 150px;
    font-size: 1.1rem;
}

.class-info h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.class-info p {
    color: var(--gray-text);
    margin-bottom: 10px;
}

.coach-name {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-style: italic;
}

/* Coaches Section */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.coach-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.coach-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-image img {
    transform: scale(1.1);
}

.coach-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-card:hover .coach-overlay {
    opacity: 1;
}

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

.coach-social a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.coach-social a:hover {
    transform: scale(1.2);
}

.coach-info {
    padding: 25px;
}

.coach-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.coach-specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.coach-bio {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Our Story & Aim — Timeline */
.our-story {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

/* Central vertical line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-color) 10%,
        var(--primary-color) 90%,
        transparent
    );
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 0;
}

.timeline-item.left {
    padding-right: 50px;
    text-align: right;
}

.timeline-item.right {
    margin-left: 50%;
    padding-left: 50px;
    text-align: left;
}

/* The dot on the timeline */
.timeline-dot {
    position: absolute;
    top: 28px;
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-dot i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.timeline-item.left .timeline-dot {
    right: -24px;
}

.timeline-item.right .timeline-dot {
    left: -24px;
}

.timeline-item:hover .timeline-dot {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
    transform: scale(1.15);
}

.timeline-item:hover .timeline-dot i {
    color: white;
}

/* Timeline content card */
.timeline-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 32px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.timeline-item.left .timeline-content::after {
    right: -20px;
    border-left-color: var(--card-bg);
}

.timeline-item.right .timeline-content::after {
    left: -20px;
    border-right-color: var(--card-bg);
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.timeline-item.left:hover .timeline-content::after {
    border-left-color: var(--primary-color);
}

.timeline-item.right:hover .timeline-content::after {
    border-right-color: var(--primary-color);
}

.timeline-year {
    display: inline-block;
    background: var(--accent-gradient);
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.timeline-content h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 15px !important;
        text-align: left !important;
    }

    .timeline-item.right {
        margin-left: 0;
    }

    .timeline-item.left .timeline-dot,
    .timeline-item.right .timeline-dot {
        left: 0 !important;
        right: auto !important;
    }

    .timeline-item.left .timeline-content::after,
    .timeline-item.right .timeline-content::after {
        left: -20px !important;
        right: auto !important;
        border-left-color: transparent !important;
        border-right-color: var(--card-bg) !important;
    }

    .timeline-item.left:hover .timeline-content::after {
        border-right-color: var(--primary-color) !important;
        border-left-color: transparent !important;
    }

    .timeline-item.right:hover .timeline-content::after {
        border-right-color: var(--primary-color) !important;
    }

    .timeline-dot {
        width: 42px;
        height: 42px;
    }

    .timeline-content {
        padding: 22px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }
}

/* Pricing Section */
.pricing {
    background: var(--darker-bg);
}

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

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 10px;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--gray-text);
    margin-top: 20px;
}

.save-badge {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 10px;
}

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

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-features li.disabled {
    color: var(--gray-text);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--gray-text);
}

.pricing-card .btn {
    width: 100%;
    text-align: center;
}

/* Instagram Section */
.instagram {
    background: var(--dark-bg);
}

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

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 3rem;
    color: var(--light-text);
}

.instagram-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Location Section */
.location {
    background: var(--darker-bg);
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    min-width: 30px;
}

.info-item h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--gray-text);
    line-height: 1.8;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-tabs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-tab {
    background: var(--card-bg);
    border: 2px solid transparent;
    color: var(--gray-text);
    padding: 18px 35px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.contact-tab i {
    font-size: 1.3rem;
}

.contact-tab:hover {
    border-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.contact-tab.active {
    background: var(--accent-gradient);
    color: var(--light-text);
    border-color: transparent;
}

.contact-content {
    position: relative;
    min-height: 400px;
}

.contact-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.contact-tab-content.active {
    display: block;
}

.contact-option-card {
    background: var(--card-bg);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

.contact-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-icon.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-option-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-option-card p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.whatsapp-number,
.instagram-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: 15px;
}

.whatsapp-number i {
    color: #25D366;
    font-size: 1.6rem;
}

.instagram-handle i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
}

.instagram-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.instagram-preview-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-preview-item:hover {
    transform: scale(1.05);
}

.instagram-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-btn,
.instagram-btn-large {
    font-size: 1.1rem;
    padding: 18px 45px;
    margin-bottom: 20px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--gray-text);
    font-style: italic;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.contact-form {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
}

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

.form-group {
    position: relative;
}

/* Global dark select styling — applies to every select on the site.
   Overrides browser/OS default white dropdowns to match the dark theme.
   Works on Chrome/Edge/Firefox; Safari uses native styling for the open panel. */
select {
    background-color: var(--card-bg, #1a1a1a);
    color: var(--light-text, #ffffff);
    border: 1px solid rgba(255,255,255,0.1);
}
select option {
    background-color: var(--card-bg, #1a1a1a);
    color: var(--light-text, #ffffff);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    display: block;
    color: var(--gray-text);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Floating labels only for auth modals and contact form (input before label in HTML) */
.auth-form .form-group label,
.contact-form .form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    margin-bottom: 0;
    font-weight: normal;
    color: var(--gray-text);
    transition: all 0.3s ease;
    pointer-events: none;
}

.auth-form .form-group input:focus + label,
.auth-form .form-group textarea:focus + label,
.auth-form .form-group input:not(:placeholder-shown) + label,
.auth-form .form-group textarea:not(:placeholder-shown) + label,
.contact-form .form-group input:focus + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group input:not(:placeholder-shown) + label,
.contact-form .form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    background: var(--card-bg);
    padding: 0 5px;
    color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
    color: var(--gray-text);
}

.form-group select:focus,
.form-group select:valid {
    color: var(--light-text);
}

.contact-success {
    display: none;
    text-align: center;
    padding: 60px;
    background: var(--card-bg);
    border-radius: 20px;
}

.contact-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

.contact-success i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-success h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-success p {
    color: var(--gray-text);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gradient);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-bg);
    color: var(--gray-text);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: var(--darker-bg);
        flex-direction: column;
        padding: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

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

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-option-card {
        padding: 40px 25px;
    }

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

    .contact-tab span {
        display: none;
    }

    .contact-tab {
        padding: 15px 20px;
    }

    .schedule-nav {
        justify-content: flex-start;
    }

    .schedule-content {
        padding: 20px;
    }

    .class-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .class-item .btn-book {
        width: 100%;
        justify-content: center;
    }

    .class-time {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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