/* Perfect Body Brand Colors */
:root {
    --primary-color: #00CED1; /* Turquoise */
    --secondary-color: #228B22; /* Green */
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --error: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
    display: flex;
    align-items: center;
}

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

/* Desktop Logo and Phone Button Positioning */
.nav-logo.desktop-only {
    margin-right: auto;
    padding-right: 2rem;
}

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 206, 209, 0.3);
}

.nav-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.nav-phone-btn i {
    font-size: 1rem;
}

.nav-logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    display: block;
}

.logo-img {
    height: 45px;
    max-height: 45px;
    width: auto;
    vertical-align: middle;
}

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 120px);
    padding: 0;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.card-header {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.card-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Modern Glass Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

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

.btn-primary:hover {
    background-color: #00a0a5;
}

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

.btn-secondary:hover {
    background-color: #1e7e1e;
}

.btn-success {
    background-color: var(--success);
    color: var(--white);
}

.btn-danger {
    background-color: var(--error);
    color: var(--white);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

.table tr:hover {
    background-color: rgba(0, 206, 209, 0.1);
}

/* Status badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.badge-success {
    background-color: var(--success);
    color: var(--white);
}

.badge-danger {
    background-color: var(--error);
    color: var(--white);
}

.badge-warning {
    background-color: var(--warning);
    color: var(--text-dark);
}

.badge-secondary {
    background-color: #6c757d;
    color: var(--white);
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Schedule */
.schedule-day {
    margin-bottom: 2rem;
}

.schedule-day h3 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.class-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--white);
}

.class-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.class-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.class-time {
    color: var(--text-light);
    font-weight: bold;
}

.class-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.class-actions {
    text-align: right;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer a {
    color: #ffffff !important;
}

.footer p {
    color: #ffffff !important;
}

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

/* Schedule Table Styles */
.schedule-table-desktop {
    display: block;
    overflow-x: auto;
    margin-bottom: 2rem;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.schedule-table th {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: bold;
    border: 1px solid var(--primary-color);
}

.schedule-table td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    vertical-align: top;
    min-height: 60px;
}

.time-cell {
    background-color: var(--light-bg);
    text-align: center;
    width: 80px;
    font-weight: bold;
    color: var(--primary-color);
}

.class-cell {
    width: 18%;
    position: relative;
}

.class-item {
    padding: 0.5rem;
    background-color: rgba(0, 206, 209, 0.1);
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.class-name {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

/* Mobile Schedule Styles */
.schedule-mobile {
    display: block;
}

@media (min-width: 769px) {
    .schedule-mobile {
        display: none !important;
    }
}

.day-card {
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.day-title {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    margin: 0;
    text-align: center;
}

.mobile-class-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
}

.mobile-class-item:last-child {
    border-bottom: none;
}

.mobile-time {
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 5px;
    min-width: 60px;
    text-align: center;
    margin-right: 1rem;
}

.mobile-class {
    flex: 1;
}

.mobile-class-name {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

.no-classes {
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.program-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(34, 139, 34, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.program-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.program-info ul {
    margin-left: 1.5rem;
}

.program-info li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .class-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .class-actions {
        text-align: left;
    }
    
    /* Hide desktop table on mobile */
    .schedule-table-desktop {
        display: none;
    }
    
    /* Show mobile view on mobile */
    .schedule-mobile {
        display: block;
    }
}

/* Admin specific styles */
.admin-nav {
    background: rgba(34, 139, 34, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-nav .nav-menu {
    justify-content: center;
}

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

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Admin Dashboard Stats - FORCED WHITE TEXT */
.admin-dashboard .stat-number {
    color: white !important;
}

.admin-dashboard .stat-label {
    color: white !important;
}

/* Alternative approach - directly override stat-card text colors */
.stat-card .stat-number {
    color: white !important;
}

.stat-card .stat-label {
    color: white !important;
}

/* Aggressive white text forcing - OVERRIDES GRADIENT TEXT */
.admin-white-text,
.admin-white-text *,
.admin-white-number,
.admin-white-label {
    color: #ffffff !important;
    text-shadow: none !important;
}

.admin-white-text .stat-number,
.admin-white-text .stat-label {
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Override gradient text fill for admin stats */
.admin-white-text .stat-number {
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    color: #ffffff !important;
}

.quick-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Mobile Navigation */
.mobile-nav-container {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0.5rem;
}

.mobile-logo {
    flex: 0 0 auto;
    margin-left: 0;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.mobile-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 206, 209, 0.3);
}

.mobile-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.4);
}

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

.mobile-center {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0;
}

.mobile-phone, .mobile-booking {
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 0.5rem;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(0, 206, 209, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.mobile-menu-content {
    position: relative;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(0, 206, 209, 0.2);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-menu-nav {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 206, 209, 0.1);
    transform: translateX(5px);
}

/* Mobile Booking Cards */
.desktop-view {
    display: block;
}

.mobile-view {
    display: none;
}

.booking-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.booking-card-header {
    background: var(--light-bg);
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-card-header h4 {
    margin: 0;
    color: var(--primary-color);
}

.booking-card-body {
    padding: 1rem;
}

.booking-detail {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.btn-disabled {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    cursor: not-allowed;
    opacity: 0.6;
}

.booking-status-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-align: center;
}

.booking-cta {
    margin-top: 1rem;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

/* Update existing mobile responsive */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-header {
        display: flex !important;
    }
    
    .desktop-view {
        display: none;
    }
    
    .mobile-view {
        display: block;
    }
    
    .booking-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .booking-action {
        margin-left: 0;
        width: 100%;
    }
    
    .booking-btn {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

/* ===== MODERN GLASSMORPHISM STYLES ===== */

/* Sales-Style Hero Section */
.sales-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.95), rgba(34, 139, 34, 0.95));
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/css/Fitness_hero_background_studio_image_df49b1ac.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #FFD700;
}

.hero-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-line-1, .hero-line-2 {
    display: block;
}

@media (min-width: 769px) {
    .hero-line-1, .hero-line-2 {
    display: block;
}

.hero-line-1 {
        white-space: nowrap;
    }
    .hero-line-2 {
        white-space: nowrap;
    }
}

.title-highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-benefits {
    margin-bottom: 3rem;
}

.hero-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-benefits .benefit-item i {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--secondary-color), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* Hero Benefits Stacked - One per line */
.hero-benefits-stacked {
    margin-bottom: 3rem;
}

.hero-benefits-stacked .benefit-item-full {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-benefits-stacked .benefit-item-full i {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, var(--secondary-color), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-address i {
    color: #FFD700;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-guarantee i {
    color: #FFD700;
}

/* Quick Signup Form */
.hero-form-container {
    position: relative;
}

.quick-signup-card {
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.quick-signup-form .form-group {
    margin-bottom: 1.25rem;
}

.quick-signup-form .form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 206, 209, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.quick-signup-form .form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 206, 209, 0.1);
}

.btn-form-submit {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.4);
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
}

.form-guarantee i {
    color: var(--secondary-color);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Trust Elements Section */
.trust-section {
    padding: 4rem 0;
    background: rgba(0, 206, 209, 0.05);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 206, 209, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05), rgba(0, 206, 209, 0.05));
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.author-detail {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

@media (min-width: 769px) {
    .benefits-grid, .hero-benefits, .benefits-grid-3x2 {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .desktop-single-line {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Subfooter Base Styles */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
}
.footer-legal-single-line {
    text-align: center;
    margin-bottom: 10px;
}
.footer-legal-single-line p {
    margin: 0;
    font-size: 14px;
    color: #ffffff !important;
    display: inline;
    flex-wrap: wrap;
}
/* Global subfooter colors - ALL WHITE */
.footer-bottom,
.footer-legal-single-line,
.footer-legal-single-line a,
.footer-credit,
.footer-credit a,
.footer-credit p,
.footer-mobile-layout,
.footer-mobile-layout a,
.footer-desktop-layout,
.footer-desktop-layout a {
    color: #ffffff !important;
}
/* Global subfooter hover */
.footer-bottom a:hover {
    color: #cbd5e1 !important;
}
.footer-legal-single-line a {
    color: #ffffff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
}
.footer-legal-single-line a:hover {
    color: #cbd5e1 !important;
}
.footer-credit {
    text-align: center;
}
.footer-credit p {
    margin: 0;
    font-size: 14px;
    color: #ffffff !important;
}
.footer-credit a {
    color: #ffffff !important;
}
/* Desktop Layout (explicit defaults) */
.footer-mobile-layout {
    display: none !important;
}
.footer-desktop-layout {
    display: block !important;
    color: #9ca3af;
}
.footer-desktop-layout a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 8px;
}
.footer-desktop-layout a:hover {
    color: #cbd5e1;
}
/* Mobile Layout (768px și mai mic) */
@media (max-width: 768px) {
    .footer-mobile-layout {
        display: block !important;
        text-align: center;
    }
   
    .footer-desktop-layout {
        display: none !important;
    }
   
    .footer-line-1 {
        margin-bottom: 5px;
    }
   
    .footer-line-2 {
        margin-bottom: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
   
    .footer-line-3 {
        margin-bottom: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
   
    .footer-line-4 {
        margin-bottom: 10px;
    }
   
    .footer-legal-single-line {
        text-align: center;
    }
   
    .footer-legal-single-line p {
        line-height: 1.8;
    }
   
    .footer-credit {
        text-align: center;
        margin-top: 10px;
    }
}
/* Iconițe pentru SAL/SOL */
.consumer-icon-inline {
    height: 16px !important;
    width: auto;
    vertical-align: middle;
    margin: 0 6px;
}

/* Responsive Tables for Admin - Mobile Card Format */
@media (max-width: 768px) {
    /* Hide table headers on mobile */
    .admin-table-responsive thead {
        display: none;
    }
    
    /* Make each row a card */
    .admin-table-responsive tbody tr {
        display: block;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        padding: 15px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* Make each cell a row in the card */
    .admin-table-responsive tbody td {
        display: block;
        border: none;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }
    
    /* Remove border from last cell */
    .admin-table-responsive tbody td:last-child {
        border-bottom: none;
    }
    
    /* Add labels before each cell using data attributes */
    .admin-table-responsive tbody td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        color: #333;
    }
    
    /* Specific styling for different data types */
    .admin-table-responsive .badge {
        display: inline-block;
        margin-left: 0;
    }
    
    .admin-table-responsive .btn {
        margin: 5px 0;
        width: 100%;
    }
    
    /* Style for action columns */
    .admin-table-responsive tbody td.actions-column {
        padding-left: 0;
        text-align: left;
    }
    
    .admin-table-responsive tbody td.actions-column:before {
        content: "Acțiuni";
        display: block;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    /* Bookings table mobile button optimizations */
    .admin-table-responsive [data-label="Cursanti"] .btn {
        font-size: 0.85rem;
        padding: 6px 12px;
        width: auto;
        margin-right: 5px;
    }
    
    /* Mobile layout for bookings with user details */
    .admin-table-responsive [data-label="Cursanti"] > div[id*="bookings-"] > div {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }
    
    .admin-table-responsive [data-label="Cursanti"] > div[id*="bookings-"] > div > div {
        width: 100%;
    }
    
    .admin-table-responsive [data-label="Cursanti"] .btn-danger {
        font-size: 0.75rem;
        padding: 4px 8px;
        margin-top: 5px;
        width: auto;
    }
}

/* Mobile Header - 8 PARTS GRID CSS */
.mobile-header {
    display: none;
    width: 100%;
    height: 60px;
    padding: 0 10px;
}

/* Show mobile header only on mobile */
@media (max-width: 768px) {
    .mobile-header {
        display: grid !important;
        grid-template-columns: 3fr 1fr 2fr 1fr 1fr; /* 3+1+2+1+1 = 8 parts */
        align-items: center;
        gap: 0;
    }
}

.mobile-logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mobile-space-left {
    /* Empty space - 1/8 */
}

.mobile-buttons-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.mobile-space-right {
    /* Empty space - 1/8 */
}

.mobile-hamburger-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mobile-logo-img {
    height: 48px; /* 20% larger than previous 40px */
    width: auto;
}

.mobile-call-btn, .mobile-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 206, 209, 0.3);
}

.mobile-call-btn:hover, .mobile-action-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.4);
}

.mobile-register-btn {
    background: linear-gradient(45deg, #00CED1, #228B22);
    color: white;
    padding: 8px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 206, 209, 0.3);
    width: 40px;
    height: 40px;
}

.mobile-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.4);
}

.mobile-hamburger {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 206, 209, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 206, 209, 0.2);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

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

.benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* About Page Specific Styles */
.about-hero-title {
    color: white !important;
}

.btn-cta-equal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 2px solid transparent;
    min-width: 200px;
    height: 50px;
}

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

.btn-cta-equal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.4);
}

.btn-cta-equal.outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Mobile About Page Optimizations */
@media (max-width: 768px) {
    .mission-values .value-item {
        text-align: center;
    }
    
    .value-item h4,
    .value-item p {
        text-align: center;
    }
    
    /* About page mobile optimizations */
    .about-hero-title {
        font-size: 1.8rem !important;
        line-height: 1.1 !important;
        word-spacing: -2px;
    }
    
    /* Center mission content on mobile */
    .mission-content {
        text-align: center;
    }
    
    .mission-content .section-title,
    .mission-content .mission-text {
        text-align: center;
    }
    
    /* Center instructor descriptions on mobile */
    .instructor-description {
        text-align: center !important;
    }
    
    .instructor-name {
        font-size: 1.3rem !important;
    }
    
    .instructor-role {
        font-size: 1rem !important;
    }
    
    .instructor-specialties {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .specialty-tag {
        font-size: 0.9rem !important;
        padding: 0.4rem 0.8rem !important;
        flex: 1 1 calc(33.33% - 0.5rem);
        min-width: fit-content;
        max-width: 120px;
        text-align: center;
    }
}

/* Thank You Page Styles */
.thank-you-hero {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.thank-you-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.step-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.registration-info {
    padding: 4rem 0;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    text-align: center;
    padding: 2rem;
}

/* Desktop contact info alignment */
@media (min-width: 769px) {
    .contact-info .info-card {
        text-align: left;
    }
    
    .contact-info .info-title {
        text-align: left;
    }
    
    .contact-details h4 {
        text-align: left;
    }
    
    .contact-details p {
        text-align: left;
    }
    
    .phone-list {
        text-align: left;
    }
    
    .email-link {
        text-align: left;
    }
}

.info-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.info-card p {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Mobile Thank You Styles */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .thank-you-actions .btn {
        margin: 0.5rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Only Classes */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}
    
    /* Trust Elements Mobile */
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 50%, 
        #1a237e 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="25" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.6;
    z-index: -1;
}

.hero-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
    transform: translateY(0);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glass, .btn-glass-outline, .btn-glass-large {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-glass-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-glass-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-glass-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    margin-top: 2rem;
}

.btn-glass-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.4);
}

/* Classes Section */
.classes-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

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

.class-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.class-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.3);
    background: rgba(255, 255, 255, 0.35);
}

.class-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.class-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 206, 209, 0.3) 0%, 
        rgba(34, 139, 34, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.class-content {
    padding: 1.5rem;
}

.class-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

.class-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
}

.class-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.section-cta {
    text-align: center;
}

/* AOS Animation Styles */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* About Page Styles */
.about-hero, .contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    z-index: 0;
}

.about-hero-content, .contact-hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero .section-title {
    color: white !important;
}

.mission-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Mobile mission section padding */
@media (max-width: 768px) {
    .mission-section {
        padding: 20px 0 0 0;
    }
}

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

.mission-values {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 206, 209, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.15);
}

.value-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.value-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.value-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.image-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.image-glass-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.instructor-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    transition: all 0.4s ease;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.3);
}

.instructor-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.instructor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.3), rgba(34, 139, 34, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.instructor-content {
    padding: 1.5rem;
}

.instructor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.instructor-role {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.instructor-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
}

.instructor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-glass-card h2 {
    color: white;
    font-size: 2.2rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.cta-glass-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

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

/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-card, .form-card, .schedule-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    margin-bottom: 2rem;
}

.info-title, .form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.contact-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-link, .email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover, .email-link:hover {
    color: var(--secondary-color);
}

.schedule-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.schedule-grid {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(0, 206, 209, 0.1);
}

.schedule-days {
    font-weight: 600;
    color: var(--text-dark);
}

.schedule-hours {
    color: var(--primary-color);
    font-weight: 500;
}

.form-subtitle {
    color: var(--text-light);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.modern-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

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

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    padding: 1.2rem;
    border: 2px solid rgba(0, 206, 209, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 206, 209, 0.15);
    transform: translateY(-2px);
}

.form-input:hover {
    border-color: rgba(0, 206, 209, 0.4);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.form-input:focus::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
    transform: translateX(3px);
}

.quick-actions {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.action-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    display: block;
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.3);
    text-decoration: none;
    color: inherit;
}

.action-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.action-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.action-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Font Optimization and Responsive */
@media (max-width: 768px) {
    /* Base mobile font optimization for accessibility */
    body {
        font-size: 18px;
        line-height: 1.6;
    }
    
    /* H1 mobile optimization - minimum 4px larger than body text */
    h1 {
        font-size: 22px; /* 18px + 4px = 22px minimum */
    }
    
    .hero-title {
        font-size: 2.2rem; /* Scaled down but still impactful */
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Improve readability for all text elements */
    p, .class-description, .mission-text, .form-subtitle {
        font-size: 18px;
        line-height: 1.7;
    }
    
    /* Larger text for better accessibility */
    .form-label, .contact-details h4, .instructor-name {
        font-size: 19px;
    }
    
    /* Button text optimization */
    .btn, .btn-glass, .btn-glass-outline, .btn-glass-large {
        font-size: 19px;
        padding: 1rem 2rem;
    }
    
    /* Hero glass card responsive */
    .hero-glass-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    /* Hero buttons responsive */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-glass, .btn-glass-outline {
        width: 100%;
        max-width: 280px;
    }
    
    /* Classes grid responsive */
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Glass card responsive adjustments */
    .class-title, .instructor-name {
        font-size: 1.3rem;
    }
    
    .class-description, .instructor-description {
        font-size: 18px;
    }
    
    /* Mission and contact grids */
    .mission-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons, .actions-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    /* Form responsive optimization */
    .form-input {
        font-size: 18px;
        padding: 1.2rem;
    }
    
    /* Mobile menu improvements */
    .mobile-nav-link {
        font-size: 19px;
        padding: 1.5rem 1rem;
    }
}

/* Auth Pages Styles */
.auth-hero {
    padding: 8rem 0 2rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    z-index: 0;
}

.auth-hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 2.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.auth-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 60vh;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.auth-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.25);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.3);
}

.auth-icon i {
    font-size: 2rem;
    color: white;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.auth-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.5;
}

.auth-form {
    display: grid;
    gap: 1.5rem;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-actions {
    margin-top: 1rem;
    text-align: center;
}

.auth-links {
    margin-top: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(0, 206, 209, 0.1);
    padding-top: 1.5rem;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.auth-link:hover {
    background-color: rgba(0, 206, 209, 0.1);
    color: var(--secondary-color);
    transform: translateX(5px);
}

.auth-link i {
    font-size: 0.9rem;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 206, 209, 0.1);
}

.auth-footer p {
    margin: 0 0 1rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.glass-alert {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: rgba(220, 53, 69, 0.3);
    color: #721c24;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    border-color: rgba(25, 135, 84, 0.3);
    color: #0f5132;
}

/* Auth Mobile Responsive */
@media (max-width: 768px) {
    .auth-hero {
        padding: 4rem 0 2rem 0;
        margin-top: 1rem;
    }
    
    .auth-hero-content {
        padding: 2rem;
        margin: 0 1rem;
        animation: slideInFromTop 0.6s ease-out;
    }
    
    .auth-section {
        padding: 3rem 0 4rem 0;
    }
    
    .auth-card {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
        animation: slideInFromBottom 0.8s ease-out;
    }
    
    .auth-icon {
        width: 70px;
        height: 70px;
        animation: bounceIn 1s ease-out 0.3s both;
    }
    
    .auth-icon i {
        font-size: 1.8rem;
    }
    
    .auth-title {
        font-size: 1.8rem;
        animation: fadeInUp 0.6s ease-out 0.5s both;
    }
    
    .auth-subtitle {
        animation: fadeInUp 0.6s ease-out 0.7s both;
    }
    
    .form-row-half {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 2rem;
        animation: fadeInUp 0.5s ease-out calc(0.9s + var(--animation-delay, 0s)) both;
    }
    
    .form-group:nth-child(1) { --animation-delay: 0.1s; }
    .form-group:nth-child(2) { --animation-delay: 0.2s; }
    .form-group:nth-child(3) { --animation-delay: 0.3s; }
    .form-group:nth-child(4) { --animation-delay: 0.4s; }
    .form-group:nth-child(5) { --animation-delay: 0.5s; }
    .form-group:nth-child(6) { --animation-delay: 0.6s; }
    
    .auth-actions {
        margin-top: 2rem;
        animation: fadeInUp 0.6s ease-out 1.2s both;
    }
    
    .auth-footer {
        margin-top: 2.5rem;
        animation: fadeInUp 0.6s ease-out 1.4s both;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 206, 209, 0.3);
    }
    
    /* Spacing improvements for mobile register */
    .pricing-section {
        padding: 3rem 0;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
        animation: slideInFromLeft 0.6s ease-out calc(0.8s + var(--card-delay, 0s)) both;
    }
    
    .pricing-card:nth-child(1) { --card-delay: 0.1s; }
    .pricing-card:nth-child(2) { --card-delay: 0.3s; }
    
    .form-toggle, .form-checkbox {
        margin: 1.5rem 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .company-fields {
        margin-top: 2rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Auth Animation Keyframes */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Program Page Styles */
.program-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.program-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    z-index: 0;
}

.program-hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-cta {
    margin-top: 2rem;
}

.schedule-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.schedule-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2rem;
    overflow: hidden;
}

.schedule-header {
    text-align: center;
    margin-bottom: 2rem;
}

.schedule-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.schedule-title i {
    color: var(--primary-color);
}

.schedule-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.schedule-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.2rem 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.time-header {
    min-width: 100px;
}

.day-header {
    min-width: 150px;
}

.schedule-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
    vertical-align: top;
}

.time-cell {
    background: rgba(0, 206, 209, 0.05);
    font-size: 1rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
}

.class-cell {
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    min-height: 80px;
}

.class-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(0, 206, 209, 0.2);
    padding: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.class-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.class-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.instructor-name {
    color: var(--text-light);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glass-mini {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile Schedule */
.schedule-mobile {
    display: grid;
    gap: 1.5rem;
}

.day-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

.day-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.day-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.day-classes {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.mobile-class-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(0, 206, 209, 0.2);
    padding: 1rem;
    transition: all 0.3s ease;
}

.mobile-class-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.2);
}

.mobile-time {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.mobile-class-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-instructor {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-classes {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-style: italic;
}

/* Program Info Section */
.program-info-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.info-card, .cta-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover, .cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.25);
}

.info-icon, .cta-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.3);
}

.info-icon i, .cta-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h3, .cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--primary-color);
    min-width: 20px;
}

.cta-card p {
    color: var(--text-light);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

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

/* Program Mobile Responsive */
@media (max-width: 768px) {
    .program-hero {
        padding: 2rem 0;
    }
    
    .program-hero-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .schedule-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Booking Page Styles */
.booking-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.booking-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    z-index: 0;
}

.booking-hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.user-credits-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.credits-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.credits-icon i {
    font-size: 1.5rem;
    color: #8b7000;
}

.credits-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.credits-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.credits-count {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.booking-classes-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.no-classes-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.no-classes-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.3);
}

.no-classes-icon i {
    font-size: 2rem;
    color: white;
}

.booking-list {
    display: grid;
    gap: 2rem;
}

.booking-item-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.booking-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.25);
}

.booking-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.class-date {
    font-size: 1.1rem;
    font-weight: 600;
}

.availability-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.booking-card-body {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.class-info {
    flex: 1;
}

.class-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.class-title i {
    color: var(--primary-color);
}

.class-details {
    display: flex;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.detail-item i {
    color: var(--primary-color);
    min-width: 16px;
}

.booking-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.booking-btn {
    min-width: 200px;
    text-align: center;
}

.mobile-booking-card {
    padding: 1.5rem;
}

.mobile-booking-card .booking-card-header {
    background: none;
    color: var(--text-dark);
    padding: 0 0 1rem 0;
    border-bottom: 1px solid rgba(0, 206, 209, 0.1);
    margin-bottom: 1rem;
}

.mobile-booking-card .booking-card-body {
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

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

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    margin: 5% auto;
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(0, 206, 209, 0.2);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 24px 24px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.booking-confirmation-details {
    text-align: center;
}

.confirmation-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.3);
}

.confirmation-icon i {
    font-size: 1.8rem;
    color: white;
}

.cost-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 206, 209, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 206, 209, 0.1);
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-light);
}

.cost-value {
    font-weight: 600;
    color: var(--primary-color);
}

.modal-footer {
    padding: 0 2rem 2rem 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Error Pages Styles */
.error-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.error-icon.forbidden {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.error-icon.not-found {
    background: linear-gradient(135deg, #6c757d, #5a6268);
}

.error-icon i {
    font-size: 2.5rem;
    color: white;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
}

.error-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 3rem 0;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for Booking and Error Pages */
@media (max-width: 768px) {
    .booking-hero, .error-section {
        padding: 2rem 0;
    }
    
    .booking-hero-content, .error-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .user-credits-display {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .credits-info {
        text-align: center;
    }
    
    .booking-card-body {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .class-details {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .booking-action {
        align-items: stretch;
    }
    
    .booking-btn {
        min-width: auto;
        width: 100%;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.95), rgba(34, 139, 34, 0.95));
    backdrop-filter: blur(20px);
    margin-top: 4rem;
    padding: 3rem 0 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact p,
.footer-schedule p,
.footer-nav p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact i {
    width: 20px;
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}


/* Cookie Consent Bar */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px 20px;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color);
}

.cookie-consent-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-accept-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Contact Page Desktop Button Alignment */
.quick-actions .actions-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-actions .action-card {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

/* Mobile Navigation Adjustments (inside media query) */
@media (max-width: 768px) {
    .mobile-nav-container {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 1rem;
    }

    .mobile-logo {
        margin-left: 0;
    }

    .mobile-actions {
        gap: 1rem;
    }
    
    /* Mobile menu compact spacing */
    .mobile-nav-link {
        font-size: 18px;
        padding: 1rem 1rem;
        margin: 0.2rem 0;
    }
    
    /* Cookie Consent Mobile */
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-consent-bar {
        padding: 20px 15px;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 206, 209, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.pricing-content {
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: white;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-currency {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 0.5rem;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-benefits {
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Form Toggle and Checkbox Styles */
.form-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.toggle-input {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.toggle-label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toggle-label:hover {
    color: white;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-checkbox:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.checkbox-input {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-color);
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: white;
}

.terms-link, .privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover, .privacy-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.company-fields {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    overflow: hidden;
}

.company-fields.show {
    opacity: 1;
    transform: translateY(0);
    animation: slideInDown 0.5s ease-out;
}

.company-fields::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px 2px 0 0;
}

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

/* Google Maps Integration */
.google-maps-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}

/* Mobile Hero Layout - Complete Override */
@media (max-width: 768px) {
    .sales-hero {
        min-height: auto;
        padding: 0;
        background: none;
    }
    
    .hero-background-image {
        display: none;
    }
    
    .sales-hero .container {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-content-grid {
        display: block;
        gap: 0;
    }
    
    /* Mobile Hero Image with Slogan */
    .hero-content {
        position: relative;
        order: 1;
        margin-bottom: 2rem;
    }
    
    .mobile-hero-section {
        position: relative;
        width: 100%;
        height: 100vw;
        max-height: 400px;
        min-height: 300px;
        background: url('/css/Mobile_hero_fitness_image_7191dc0f.jpg') center/cover no-repeat;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin: 0;
        aspect-ratio: 1;
        padding-bottom: 20px;
    }
    
    .mobile-hero-slogan {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0.7rem 1.5rem;
        border-radius: 12px;
        text-align: center;
        color: var(--text-dark);
        font-weight: 700;
        font-size: 1.1rem;
        max-width: 70%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    
    /* Mobile Content Section */
    .hero-content {
        background: linear-gradient(135deg, rgba(0, 206, 209, 0.95), rgba(34, 139, 34, 0.95));
        padding: 2rem 1rem;
        color: white;
        order: 2;
    }
    
    .hero-badge {
        margin-bottom: 1.5rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-address {
        margin-bottom: 1.5rem;
    }
    
    .btn-hero-primary {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-guarantee {
        text-align: center;
        margin: 0 auto;
        max-width: 280px;
    }
    
    /* Mobile Form */
    .hero-form-container {
        order: 3;
        margin: 2rem 1rem 0;
    }
    
    .quick-signup-card {
        padding: 2rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
        line-height: 1.4;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-description,
    .footer-contact p,
    .footer-schedule p,
    .footer-nav p {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    /* Footer desktop text alignment */
    .footer-section {
        text-align: left;
    }
}

/* Footer desktop specific styles */
@media (min-width: 769px) {
    .footer-content {
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    /* Contact Actions Desktop and Mobile */
    .quick-actions .actions-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }
    
    @media (max-width: 768px) {
        .quick-actions .actions-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
    }
    
    .quick-actions .action-card {
        max-width: none;
        min-width: auto;
    }
    
    /* WhatsApp Mobile */
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}