/* Enhanced Typography and Global Improvements */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: fadeInUp 1s ease-out;
    padding-top: 70px; /* Kompenzace pro fixed navbar */
}

/* Smooth animations for all elements */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
}

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

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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
    }
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

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

/* Enhanced Section Headings */
section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #dc2626 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(220,38,38,0.3);
}

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

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

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(220,38,38,0.4);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid #dc2626;
    box-shadow: 0 8px 25px rgba(220,38,38,0.2);
}

.btn-outline:hover {
    background: #dc2626;
    box-shadow: 0 15px 35px rgba(220,38,38,0.4);
}

/* Legacy Button Styles */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

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

.btn-secondary {
    background: transparent;
    color: #ff4444;
    border: 2px solid #ff4444;
}

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

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}

.nav-logo:focus,
.nav-logo:active,
.nav-logo:visited,
.nav-logo:focus-visible,
.nav-logo:focus-within {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.nav-logo *,
.nav-logo *:focus,
.nav-logo *:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

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

.nav-logo h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-logo span {
    color: #dc2626;
    transition: color 0.3s ease;
}

.nav-logo:hover span {
    color: #dc2626;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #dc2626;
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 10px 20px;
    border-radius: 25px;
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.cta-button::after {
    display: none;
}

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

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

/* Hero Section - Enhanced with Red Theme */
.hero {
    background:
        linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,10,10,0.9) 100%),
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(220,38,38,0.1) 49px, rgba(220,38,38,0.1) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(220,38,38,0.1) 49px, rgba(220,38,38,0.1) 50px);
    background-size: cover, 50px 50px, 50px 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(220,38,38,0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(220,38,38,0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(220,38,38,0.1) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(220,38,38,0.03) 60deg, transparent 120deg);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0% { opacity: 0.4; }
    100% { opacity: 0.8; }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
    box-shadow: 0 0 15px #dc2626, 0 0 30px #dc2626, 0 0 45px rgba(220, 38, 38, 0.5);
    animation: floatParticle linear infinite;
    opacity: 0.8;
}

.particle:nth-child(odd) {
    background: #fff;
    box-shadow: 0 0 15px #fff, 0 0 30px rgba(255, 255, 255, 0.5);
    opacity: 0.6;
}

.particle:nth-child(3n) {
    width: 3px;
    height: 3px;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    95% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateX(-20px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #dc2626 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(220,38,38,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(220,38,38,0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(220,38,38,0.6)); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(220,38,38,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220,38,38,0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(220,38,38,0.2);
    box-shadow: 0 10px 30px rgba(220,38,38,0.3);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    color: #cccccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #111111;
}

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

.about-text h3 {
    color: #ff4444;
    margin-bottom: 1rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 68, 68, 0.2);
    position: relative;
    overflow: hidden;
}

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

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 68, 68, 0.1);
    border-color: #ff4444;
    box-shadow: 0 15px 40px rgba(255, 68, 68, 0.3);
}

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

.feature:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #ff6666;
}

.feature i {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.feature h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Trainers Section */
.trainers {
    background: #0a0a0a;
}

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

.trainer-card {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.trainer-card:hover {
    transform: translateY(-10px);
    border-color: #ff4444;
}

.trainer-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.trainer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.photo-placeholder i {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #dc2626;
}

.photo-placeholder p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.2;
}

.trainer-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.specialty {
    color: #ff4444;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Mobile Schedule */
.mobile-schedule {
    display: none;
    gap: 20px;
    margin-top: 40px;
}

.day-schedule {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
}

.day-schedule h3 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    padding-bottom: 8px;
}

.mobile-time-slot {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-time-slot:hover {
    background: rgba(220, 38, 38, 0.15);
    transform: translateX(5px);
}

.mobile-time-slot:last-child {
    margin-bottom: 0;
}

.mobile-time-slot span {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-top: 4px;
    font-size: 0.85rem;
}

/* Desktop Schedule Table */
.schedule-table {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    overflow-x: auto;
}

.schedule-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    min-height: 60px;
    min-width: 800px;
}

.schedule-header {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.schedule-header .schedule-cell {
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.schedule-cell {
    padding: 20px 15px;
    border-right: 1px solid rgba(220, 38, 38, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    min-width: 110px;
}

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

.schedule-cell:hover {
    background: rgba(220, 38, 38, 0.1);
}

.time-slot {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: #dc2626;
    font-weight: 600;
}

.time-slot:hover {
    background: rgba(220, 38, 38, 0.15);
    transform: scale(1.02);
}

.time-slot span {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-top: 4px;
    font-size: 0.8rem;
}

.small-text {
    font-size: 0.75rem !important;
    color: #999 !important;
    font-weight: 400 !important;
    background: none !important;
    border: none !important;
    padding: 4px 8px !important;
}

/* Mobile Schedule Responsive */
@media (max-width: 768px) {
    .mobile-schedule {
        display: block;
    }
    
    .schedule-table {
        display: none;
    }
    
    .schedule {
        padding: 60px 0;
    }
    
    .day-schedule {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .day-schedule h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .mobile-time-slot {
        padding: 10px 12px;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .mobile-time-slot span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .schedule {
        padding: 50px 0;
    }
    
    .day-schedule {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .day-schedule h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .mobile-time-slot {
        padding: 8px 10px;
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .mobile-time-slot span {
        font-size: 0.75rem;
    }
    
    .small-text {
        font-size: 0.65rem !important;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.simple-pricing-table {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.pricing-table th {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    vertical-align: middle;
}

.pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

.pricing-table td:first-child {
    text-align: left;
}

.pricing-table tr:hover td {
    background: rgba(220, 38, 38, 0.1);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.permit-row {
    background: rgba(220, 38, 38, 0.15);
    border-left: 4px solid #dc2626;
}

.permit-row td {
    color: #dc2626;
    font-weight: 600;
}

.price-cell {
    background: rgba(220, 38, 38, 0.2);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Price cell center for permits */
.price-cell-center {
    text-align: center !important;
    background: rgba(220, 38, 38, 0.2) !important;
    color: #dc2626 !important;
    font-weight: 700 !important;
    font-size: 1.1em;
}

.unavailable {
    color: #888;
    font-style: italic;
    font-size: 0.9rem;
}

.special-row {
    background: rgba(255, 255, 255, 0.02);
}

.special-row td {
    color: #ccc;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .pricing-table th {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 50px 0;
    }
    
    .simple-pricing-table {
        margin: 0 -15px;
    }
    
    .pricing-table {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .pricing-table th {
        font-size: 0.9rem;
    }
}

.badge {
    background: #ff6b35;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 5px;
}

.membership-info {
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 25px;
    border-radius: 15px;
}

.membership-price .price {
    font-size: 2rem;
    color: #ff6b35;
    display: block;
}

.membership-price .period {
    color: #ccc;
    font-size: 1rem;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.package-card.featured {
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-header {
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.package-price .price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ff6b35;
    display: block;
}

.package-price .period {
    color: #ccc;
    font-size: 1rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.package-features i {
    color: #ff6b35;
    width: 16px;
}

/* Special Offers */
.special-offers {
    margin-top: 60px;
}

.special-offers h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ff6b35;
}

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

.special-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.special-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.special-header {
    margin-bottom: 25px;
}

.special-header i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.special-header h4 {
    font-size: 1.3rem;
    margin: 0;
    color: white;
}

.special-prices {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.special-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.special-price:last-child {
    border-bottom: none;
}

.special-price .label {
    color: #ccc;
}

.special-price .price {
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin-bottom: 10px;
        padding: 15px;
    }
    
    .service-name {
        justify-content: center;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .special-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-display .price {
        font-size: 2rem;
    }
    
    .package-price .price {
        font-size: 1.8rem;
    }
}

/* Global Mobile Improvements */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header improvements */
    .header {
        padding: 10px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #ff6b35;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero section improvements */
    .hero {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 20px 0;
    }
    
    .hero-image {
        max-width: 100%;
        margin-top: 20px;
    }
    
    .hero-image img {
        max-width: 300px;
        height: auto;
    }
    
    /* Services improvements */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    /* About section improvements */
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-text {
        max-width: 100%;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-image img {
        max-width: 300px;
        height: auto;
    }
    
    /* Trainers improvements */
    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trainer-card {
        padding: 25px 20px;
    }
    
    /* Fighters improvements */
    .fighters-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fighter-card {
        padding: 25px 20px;
    }
    
    /* Gallery improvements */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .tab-button {
        width: 100%;
        max-width: 200px;
    }
    
    /* Contact improvements */
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        max-width: 100%;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* Footer improvements */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-section {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .service-card,
    .trainer-card,
    .fighter-card {
        padding: 20px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Pricing specific mobile improvements */
    .pricing {
        padding: 40px 0;
    }
    
    .price-card,
    .package-card,
    .special-card {
        padding: 20px;
    }
    
    .card-header i,
    .special-header i {
        font-size: 2rem;
    }
    
    .price-display .price {
        font-size: 1.8rem;
    }
    
    .package-price .price {
        font-size: 1.6rem;
    }
    
    .membership-info {
        padding: 20px;
    }
    
    .membership-price .price {
        font-size: 1.6rem;
    }
}

/* Fighters Section */
.fighters {
    background: #111111;
}

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

.fighter-card {
    background: #0a0a0a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.fighter-card:hover {
    transform: translateY(-10px);
    border-color: #ff4444;
}

.fighter-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.fighter-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fighter-image i {
    font-size: 4rem;
    color: #666666;
}

.fighter-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.category, .record {
    color: #ff4444;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Success Section */
.success {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.success-content {
    margin-top: 50px;
}

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

.success-stat {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.success-stat:hover {
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.achievement-item:hover {
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.achievement-icon i {
    font-size: 1.5rem;
    color: white;
}

.achievement-content h3 {
    margin: 0 0 12px 0;
    color: #dc2626;
    font-size: 1.3rem;
    font-weight: 600;
}

.achievement-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .success-stat {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-item {
        padding: 25px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
    }
    
    .achievement-icon i {
        font-size: 1.3rem;
    }
}
.gallery {
    background: #0a0a0a;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #111111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666666;
    border: 2px dashed #333333;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

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

.faq-question:hover {
    background: rgba(220, 38, 38, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #dc2626;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #dc2626;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 20px 0 0 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* Blog Section */
.blog {
    background: #0a0a0a;
}

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

.blog-post {
    background: #111111;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    background: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
}

.post-image i {
    font-size: 3rem;
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.post-date {
    color: #ff4444;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #ff4444;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Gallery Slider with Stacked Cards */
.gallery-slider {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    height: 500px;
    perspective: 1000px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(0) scale(0.8);
    width: 80%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.6;
    z-index: 1;
}

.gallery-card.active {
    transform: translateX(-50%) translateZ(0) scale(1);
    opacity: 1;
    z-index: 3;
    width: 100%;
}

.gallery-card:nth-child(2) {
    transform: translateX(-45%) translateZ(-50px) scale(0.85);
    z-index: 2;
}

.gallery-card:nth-child(3) {
    transform: translateX(-55%) translateZ(-100px) scale(0.8);
    z-index: 1;
}

.gallery-card.active:nth-child(2) {
    transform: translateX(-50%) translateZ(0) scale(1);
    z-index: 3;
}

.gallery-card.active:nth-child(3) {
    transform: translateX(-50%) translateZ(0) scale(1);
    z-index: 3;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 30px 30px;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-align: left;
}

.card-overlay.mma-training-overlay {
    text-align: right;
}

.gallery-card.active .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #dc2626;
}

.card-overlay p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 38, 38, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #dc2626;
    transform: scale(1.2);
}

/* Responsive design for gallery slider */
@media (max-width: 768px) {
    .gallery-slider {
        height: 400px;
        margin: 30px auto 0;
    }
    
    .gallery-card {
        width: 90%;
    }
    
    .gallery-card.active {
        width: 100%;
    }
    
    .card-overlay {
        padding: 20px 20px 60px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
    
    .card-overlay h3 {
        font-size: 1.4rem;
        margin: 0 0 8px 0;
    }
    
    .card-overlay p {
        font-size: 0.95rem;
    }
    
    .card-overlay h3 {
        font-size: 1.5rem;
    }
    
    .card-overlay p {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    border-color: rgba(220, 38, 38, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

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

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h3 {
    margin: 0 0 8px 0;
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ef4444;
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    margin: 0 0 30px 0;
    color: #dc2626;
    font-size: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    grid-column: 1 / -1;
    margin-top: 50px;
}

.google-map {
    position: relative;
    width: 100%;
    height: 400px;
}

.google-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.google-map:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    max-width: 250px;
}

.map-info h4 {
    margin: 0 0 8px 0;
    color: #dc2626;
    font-size: 1.1rem;
    font-weight: 600;
}

.map-info p {
    margin: 0 0 15px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dc2626;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    color: #ef4444;
    transform: translateX(3px);
}

.map-link i {
    font-size: 0.8rem;
}

.map-placeholder {
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #dc2626;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .map-overlay {
        position: static;
        margin-top: 15px;
        max-width: none;
    }
}

/* Join Section */
.join {
    background: linear-gradient(135deg, #ff4444, #ff6600);
    text-align: center;
}

.join-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.join-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.join .btn-primary {
    background: #ffffff;
    color: #ff4444;
}

.join .btn-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.join .btn-secondary:hover {
    background: #ffffff;
    color: #ff4444;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 1rem 0;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section h3 span {
    color: #ff4444;
}

.footer-section h4 {
    color: #ff4444;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff4444;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid #333;
    margin-top: 1rem;
    color: #666666;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.created-by-text {
    color: #ccc;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.expand-matrix-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.expand-matrix-link:hover {
    opacity: 0.8;
}

.expand-matrix-logo {
    height: 60px;
    width: auto;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left {
        text-align: center;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333333;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff4444;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 1rem;
        display: block;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .level-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

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

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

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}