/*
Theme Name: Centrum Sportów Rakietowych
Description: Nowoczesny motyw WordPress dla centrum sportów rakietowych z systemem rezerwacji w stylu kina - wzorowany na sotorc.com
Version: 2.0
Author: CSR Team
*/

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

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Top Info Bar - Thin strip */
.top-info-bar {
    background: #40E0D0 !important;
    color: white !important;
    padding: 8px 0 !important;
    font-size: 0.8rem !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    box-shadow: 0 1px 5px rgba(64, 224, 208, 0.2) !important;
    z-index: 2000 !important;
    display: block !important;
    visibility: visible !important;
}

/* Scrolling text animation */
.scrolling-text-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.scrolling-text {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.text-item {
    color: white;
    margin-right: 2rem;
}

.text-separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1rem;
    font-weight: 400;
}

/* Main content adjustment */
.main-content {
    margin-top: 112px;
}

/* Background container starts after hero */
.background-container {
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02)), url('./images/padel-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Header - Exact sotorc.com style */
.header {
    background: #1e88e5;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 32px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 102, 204, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0,102,204,0.4);
}

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

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #40E0D0;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: transparent !important;
    border: none !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1e88e5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 1) !important;
}

/* Navigation Override - Force sotorc.com style */
.header .nav-menu a,
.navigation .nav-menu a,
nav .nav-menu a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: transparent !important;
    border: none !important;
    display: inline-block !important;
}

.header .nav-menu a:hover,
.navigation .nav-menu a:hover,
nav .nav-menu a:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1e88e5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.8) 0%, rgba(30, 136, 229, 0.9) 100%), url('./images/hero-pickleball.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: logoFloat 3s ease-in-out infinite;
    background: white;
    padding: 5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.hero-description {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.cta-button.secondary:hover {
    background: white;
    color: #1e3c72;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0,102,204,0.2) 0%, transparent 50%);
    animation: heroPattern 20s ease-in-out infinite;
}

@keyframes heroPattern {
    0%, 100% { 
        background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 30%, rgba(0,102,204,0.2) 0%, transparent 50%);
    }
    50% { 
        background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 60%),
                    radial-gradient(circle at 30% 70%, rgba(0,102,204,0.25) 0%, transparent 40%);
    }
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0077dd 0%, #0055aa 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

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

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* About Section - balanced layout */
.about-balanced {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

/* About Section (original - keeping for compatibility) */
.about {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    position: relative;
    margin: 2rem 0;
    border-radius: 0;
}

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

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about .about-photo {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.about-photo:hover {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9), rgba(42, 82, 152, 0.9));
    color: white;
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.image-caption p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* League Section - sotorc.com exact style */
.league-sotorc {
    padding: 60px 0;
    background: #f8f9fa;
}

.league-sotorc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.league-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.league-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.league-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.league-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e88e5;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
}

.league-right {
    background: #1e88e5;
    border-radius: 15px;
    padding: 40px;
    color: white;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.3);
}

.league-content-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
    color: white;
}

.league-content-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.category-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.category-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

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

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

.category-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.league-motto {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Services Grid Section - sotorc.com exact style */
.services-grid-section {
    padding: 60px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout for 5 cards: 3 in first row, 2 centered in second row */
.service-card:nth-child(4) {
    grid-column: 1 / 3;
    max-width: 400px;
    margin: 0 auto;
}

.service-card:nth-child(5) {
    grid-column: 3 / 4;
    max-width: 400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    background: transparent;
    color: #40E0D0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-btn:hover {
    border-bottom-color: #40E0D0;
    color: #2db5a5;
}

/* Responsive for services grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* Quote Section - Inspirational */
.quote-section {
    background: #40E0D0;
    padding: 80px 0;
    color: white;
}

.quote-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-avatar {
    flex-shrink: 0;
}

.quote-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.quote-text {
    flex: 1;
}

.quote-text blockquote {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-style: italic;
    color: #2c5530;
}

.quote-text cite {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

/* Responsive for quote section */
@media (max-width: 768px) {
    .quote-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .quote-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .quote-text blockquote {
        font-size: 1.3rem;
    }
    
    .quote-section {
        padding: 60px 0;
    }
}

/* Padel Section - Modern Style */
.padel-modern {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.padel-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.padel-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.padel-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.padel-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.padel-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.padel-features .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.padel-features .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.padel-features .feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.padel-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.padel-image {
    position: relative;
}

.padel-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.padel-photo:hover {
    transform: scale(1.02);
}

/* Responsive for padel section */
@media (max-width: 768px) {
    .padel-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .padel-image {
        order: -1;
    }
    
    .padel-cta {
        justify-content: center;
    }
    
    .padel-features .feature-item {
        padding: 1.2rem;
    }
}

/* Tennis Section - Modern Style */
.tennis-modern {
    padding: 80px 0;
    background: white;
}

.tennis-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.tennis-image {
    position: relative;
}

.tennis-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.tennis-photo:hover {
    transform: scale(1.02);
}

.tennis-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.tennis-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.tennis-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tennis-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tennis-features .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.tennis-features .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.tennis-features .feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tennis-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive for tennis section */
@media (max-width: 768px) {
    .tennis-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .tennis-image {
        order: -1;
    }
    
    .tennis-cta {
        justify-content: center;
    }
    
    .tennis-features .feature-item {
        padding: 1.2rem;
    }
}

/* Pickleball Section - Modern Style */
.pickleball-modern {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.pickleball-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.pickleball-image {
    position: relative;
}

.pickleball-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.pickleball-photo:hover {
    transform: scale(1.02);
}

.pickleball-highlight {
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

.highlight-badge {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pickleball-highlight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.pickleball-highlight p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.pickleball-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.pickleball-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pickleball-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pickleball-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.pickleball-features .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.pickleball-features .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.pickleball-features .feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.pickleball-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive for pickleball section */
@media (max-width: 768px) {
    .pickleball-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pickleball-image {
        order: -1;
    }
    
    .pickleball-cta {
        justify-content: center;
    }
    
    .pickleball-features .feature-item {
        padding: 1.2rem;
    }
    
    .pickleball-highlight {
        padding: 1.2rem;
    }
}

/* Health Benefits Section - Modern Style */
.health-benefits-modern {
    padding: 80px 0;
    background: white;
}

.health-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.health-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.health-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.health-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.health-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.health-features .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.health-features .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.health-features .feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.calorie-highlight {
    background: linear-gradient(135deg, #40E0D0 0%, #2db5a5 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(64, 224, 208, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 300px;
    margin: 0 auto;
}

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

.calorie-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    animation: fireFlicker 2s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1) rotate(2deg);
        filter: brightness(1.2);
    }
}

.calorie-highlight h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c5530;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calorie-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.calorie-number {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: #2c5530;
}

.calorie-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.8rem;
}

.calorie-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #2c5530;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.health-image {
    position: relative;
}

.health-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.health-photo:hover {
    transform: scale(1.02);
}

/* Responsive for health benefits section */
@media (max-width: 768px) {
    .health-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .health-image {
        order: -1;
    }
    
    .health-features .feature-item {
        padding: 1.2rem;
    }
    
    .calorie-highlight {
        padding: 1.5rem;
    }
    
    .calorie-number {
        font-size: 2.5rem;
    }
}

/* Equipment Section - Modern Style */
.equipment-modern {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.equipment-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.equipment-image {
    position: relative;
}

.equipment-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.equipment-photo:hover {
    transform: scale(1.02);
}

.equipment-content .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.equipment-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.equipment-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.equipment-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.equipment-features .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.equipment-features .feature-content {
    flex: 1;
}

.equipment-features .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.equipment-features .feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.equipment-features .price {
    background: linear-gradient(135deg, #40E0D0 0%, #2db5a5 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.equipment-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.tip-content p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.9;
}

/* Responsive for equipment section */
@media (max-width: 768px) {
    .equipment-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .equipment-image {
        order: -1;
    }
    
    .equipment-features .feature-item {
        padding: 1.2rem;
    }
    
    .equipment-tip {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
}

/* Reservation Section - Ultra Modern Sports Style */
.reservation-sports {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 50%, #1e88e5 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.sports-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(64, 224, 208, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(30, 136, 229, 0.1) 50%, transparent 70%);
    animation: sportsBgMove 20s ease-in-out infinite;
}

@keyframes sportsBgMove {
    0%, 100% { 
        transform: translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(20px) rotate(1deg);
        opacity: 0.6;
    }
}

/* Sports Header */
.reservation-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.sports-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-highlight {
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.title-main {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.sports-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

/* Sports Stats */
.sports-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.sports-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sports-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(30, 136, 229, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sports-stats .stat-item:hover::before {
    opacity: 1;
}

.sports-stats .stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sports-stats .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.sports-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #40E0D0;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.sports-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* Main Reservation Area */
.reservation-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 2;
}

/* Sports Selection */
.selection-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #40E0D0;
    text-align: center;
}

.sports-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sport-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sport-card:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: #40E0D0;
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.2);
}

.sport-visual {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #40E0D0 0%, #1e88e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sport-icon {
    font-size: 2.5rem;
    z-index: 2;
    position: relative;
}

.sport-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    border-radius: 50%;
}

.tennis-pattern {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 20%, transparent 50%);
}

.pickleball-pattern {
    background: radial-gradient(circle at 70% 70%, rgba(255,255,255,0.3) 20%, transparent 50%);
}

.padel-pattern {
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 20%, transparent 50%);
}

.sport-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.sport-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #40E0D0;
    margin-bottom: 0.3rem;
}

.sport-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Reservation System New */
.system-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.system-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #40E0D0 0%, #1e88e5 50%, #40E0D0 100%);
    animation: gradientShift 3s ease-in-out infinite;
}

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

.system-header-new {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.system-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.system-header-new h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.enhanced-form-container {
    margin: 2rem 0;
}

.system-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.benefit-tag {
    background: linear-gradient(135deg, #40E0D0 0%, #1e88e5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(64, 224, 208, 0.3);
}

/* Mega CTA */
.reservation-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.mega-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #40E0D0 0%, #00CED1 100%);
    color: #0a1628;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.mega-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(64, 224, 208, 0.5);
}

.cta-icon {
    font-size: 1.5rem;
    animation: rocket 2s ease-in-out infinite;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.reservation-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #1e88e5;
}

.reservation-info .lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.reservation-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reservation-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.reservation-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.reservation-features .feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.reservation-features .feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

.reservation-features .feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.reservation-highlight {
    background: linear-gradient(135deg, #1e88e5 0%, #0066cc 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

.reservation-highlight h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
}

.reservation-highlight p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.reservation-system {
    position: relative;
}

.system-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.system-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 100%);
}

.system-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.system-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.5rem;
}

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

/* Enhanced cinema reservation system styling */
.reservation-system .cinema-reservation-system {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    margin: 0;
}

.reservation-system .cinema-reservation-system::before {
    display: none;
}

/* Responsive for sports reservation section */
@media (max-width: 1024px) {
    .sports-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reservation-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .sports-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .sports-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .sports-stats .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .reservation-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .sport-card {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .sport-visual {
        width: 60px;
        height: 60px;
    }
    
    .sport-icon {
        font-size: 2rem;
    }
    
    .system-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
    
    .mega-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .system-benefits {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .sports-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sports-title {
        font-size: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

/* Equipment Section - Ultra Modern Sports Style */
.equipment-sports {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.equipment-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 20%, rgba(64, 224, 208, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(30, 136, 229, 0.06) 0%, transparent 50%),
        linear-gradient(-45deg, transparent 30%, rgba(64, 224, 208, 0.05) 50%, transparent 70%);
    animation: equipmentBgMove 25s ease-in-out infinite;
}

@keyframes equipmentBgMove {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-20px) rotate(-1deg);
        opacity: 0.7;
    }
}

/* Equipment Header */
.equipment-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Equipment Stats */
.equipment-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.equipment-stats .stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.equipment-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.1) 0%, rgba(30, 136, 229, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equipment-stats .stat-item:hover::before {
    opacity: 1;
}

.equipment-stats .stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Equipment Main Area */
.equipment-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Equipment Cards */
.equipment-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.equipment-card-new {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.equipment-card-new:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: #40E0D0;
    box-shadow: 0 15px 35px rgba(64, 224, 208, 0.2);
}

.equipment-visual {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, #40E0D0 0%, #1e88e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 25px rgba(64, 224, 208, 0.3);
}

.equipment-icon {
    font-size: 3rem;
    z-index: 2;
    position: relative;
}

.equipment-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    border-radius: 20px;
}

.tennis-equipment {
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.4) 15%, transparent 40%);
}

.padel-equipment {
    background: radial-gradient(circle at 75% 75%, rgba(255,255,255,0.4) 15%, transparent 40%);
}

.pickleball-equipment {
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.4) 15%, transparent 40%);
}

.equipment-info {
    text-align: center;
}

.equipment-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.equipment-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #40E0D0;
    margin-bottom: 0.5rem;
}

.equipment-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.equipment-features-mini {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-feature {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Equipment Info Panel */
.info-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    color: #333;
}

.info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 50%, #1e88e5 100%);
    animation: gradientShift 3s ease-in-out infinite reverse;
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e88e5;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.equipment-services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.equipment-services .service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.equipment-services .service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #40E0D0;
}

.equipment-services .service-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.equipment-services .service-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 0.3rem;
}

.equipment-services .service-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.equipment-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
    width: 100%;
    justify-content: center;
}

.equipment-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.4);
}

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

/* Responsive for equipment section */
@media (max-width: 1024px) {
    .equipment-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .equipment-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .equipment-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .equipment-main {
        gap: 2.5rem;
    }
    
    .equipment-card-new {
        padding: 1.5rem;
    }
    
    .equipment-visual {
        width: 80px;
        height: 80px;
    }
    
    .equipment-icon {
        font-size: 2.5rem;
    }
    
    .info-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .equipment-services .service-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .equipment-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.league {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    position: relative;
    margin: 2rem 0;
}

.league-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.league-text {
    order: 2; /* Tekst po prawej */
}

.league-image {
    order: 1; /* Zdjęcie po lewej */
}

.league-highlight {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.league-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Badge styles removed - cleaner text layout */

.league-features {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.league-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.league-feature .feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.league-feature .feature-content h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.league-feature .feature-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.league-motto {
    font-size: 1.2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.league-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.cta-button.primary {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #0077dd 0%, #0055aa 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

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

.cta-button.secondary:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-3px);
}

/* League Image */
.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.league-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.league .league-photo {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.image-container:hover .league-photo {
    transform: scale(1.05);
}

/* Overlay styles removed - cleaner image display */

/* League Stats */
.league-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3c72;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Padel Section */
.padel {
    background: rgba(30, 60, 114, 0.7);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    color: white;
    position: relative;
    margin: 2rem 0;
}

.padel .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.padel-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
}

.padel .lead-text {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.feature-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #1e3c72;
}

.padel .feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-card h3 {
    color: #1e3c72;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.padel-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.padel-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Tennis Section */
.tennis {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    position: relative;
    margin: 2rem 0;
}

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

.tennis-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.tennis-text p {
    margin-bottom: 1.5rem;
    color: #333;
}

.tennis-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    font-size: 1.5rem;
}

.tennis-image {
    text-align: center;
}

.tennis-photo {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.tennis .tennis-photo {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.tennis-photo:hover {
    transform: scale(1.05);
}

/* Pickleball Detail Section */
.pickleball-detail {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    position: relative;
    margin: 2rem 0;
}

.pickleball-intro {
    text-align: center;
    margin-bottom: 4rem;
}

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

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid #ffd700;
}

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

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

.benefit-card h3 {
    color: #1e3c72;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.pickleball-highlight {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1e3c72;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.pickleball-highlight h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Health Benefits Section */
.health-benefits {
    background: rgba(30, 60, 114, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    padding: 100px 0;
    position: relative;
    margin: 2rem 0;
}

.health-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.health-benefits .lead-text {
    color: white;
    opacity: 0.9;
}

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

.health-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.health-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.health-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.health-card h3 {
    color: #ffd700;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.health-card p {
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

.calorie-info {
    text-align: center;
    margin-top: 4rem;
}

.calorie-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.calorie-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.calorie-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ffd700;
}

.calorie-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Equipment Section */
.equipment {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 100px 0;
    position: relative;
    margin: 2rem 0;
}

.equipment-intro {
    text-align: center;
    margin-bottom: 4rem;
}

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

.equipment-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #1e3c72;
}

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

.equipment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.equipment-card h3 {
    color: #1e3c72;
    margin: 1rem 0;
    font-size: 1.3rem;
}

.equipment-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
}

.price-desc {
    font-size: 0.9rem;
    color: #666;
}

.equipment-tip {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-left: 4px solid #ffd700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.equipment-tip h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.equipment-tip p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.padel-icon {
    text-align: center;
    margin: 2rem 0;
}

.padel-icon::before {
    content: "🎾";
    font-size: 4rem;
}

/* Reservation Section */
.reservation {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 80px 0;
    position: relative;
    margin: 2rem 0;
}

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

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

/* Cinema-Style Reservation System - Modern sotorc.com inspired */
.cinema-reservation-system {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.1);
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.cinema-reservation-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.step-indicators {
    display: flex;
    gap: 1rem;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e5e9;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-indicator.active {
    background: #1e3c72;
    color: white;
}

.step-indicator.completed {
    background: #28a745;
    color: white;
}

.nav-button {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.nav-button:hover {
    background: linear-gradient(135deg, #0077dd 0%, #0055aa 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.nav-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Step 1: Court Type Selection */
.court-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.court-type-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.08);
}

.court-type-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.3);
}

.court-type-card.selected {
    border-color: #0066cc;
    background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.25);
}

.court-type-card.selected::before {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% { 
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(360deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.court-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.court-type-card h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.court-type-card .price {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.court-type-card .description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Step 2: Date and Time Selection */
.date-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.date-nav-btn {
    background: #1e3c72;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.date-nav-btn:hover {
    background: #2a5298;
}

.date-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#current-week-display {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1e3c72;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 0;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.time-slots {
    background: #f8f9fa;
    display: grid;
    grid-template-rows: 50px repeat(14, 40px);
}

.time-header {
    background: #1e3c72;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e1e5e9;
    font-size: 0.9rem;
    color: #666;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 50px repeat(14, 40px);
}

.day-header {
    background: #1e3c72;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    border-right: 1px solid #e1e5e9;
}

.day-name {
    font-size: 0.7rem;
}

.day-number {
    font-size: 1rem;
}

.schedule-slot {
    border-right: 1px solid #e1e5e9;
    border-bottom: 1px solid #e1e5e9;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-slot.available {
    background: #d4edda;
    color: #155724;
}

.schedule-slot.available:hover {
    background: #c3e6cb;
    transform: scale(1.05);
}

.schedule-slot.occupied {
    background: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
}

.schedule-slot.selected {
    background: #1e3c72;
    color: white;
    font-weight: bold;
}

.schedule-slot.selected-duration {
    background: #ffd700;
    color: #1e3c72;
    font-weight: bold;
}

/* Duration Selector */
.duration-selector {
    margin: 2rem 0;
    text-align: center;
}

.duration-selector h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

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

.duration-btn {
    background: white;
    color: #1e3c72;
    border: 2px solid #1e3c72;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.duration-btn:hover,
.duration-btn.selected {
    background: #1e3c72;
    color: white;
}

/* Selected Slot Info */
.selected-slot-info {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f8ff 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #1e3c72;
    margin-top: 2rem;
}

.selected-slot-info h4 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.slot-details {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.total-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.proceed-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    width: 100%;
}

.proceed-button:hover {
    background: #218838;
}

/* Step 3: Checkout */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.customer-details,
.order-summary {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.customer-details h4,
.order-summary h4 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Payment Methods */
.payment-methods {
    margin: 2rem 0;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #1e3c72;
}

.payment-option input[type="radio"] {
    margin: 0;
}

.payment-option input[type="radio"]:checked + .payment-icon {
    transform: scale(1.2);
}

.payment-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Pay Button - Modern sotorc.com style */
.pay-button {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border: none;
    padding: 1.8rem 2.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.pay-button::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;
}

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

.pay-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0077dd 0%, #0055aa 100%);
}

.pay-amount {
    font-size: 1.4rem;
}

/* Success Modal */
.reservation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 2rem;
    animation: modalSlideIn 0.5s ease;
}

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

.success-animation {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    animation: successPulse 1s ease;
}

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

.modal-content h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.reservation-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.modal-button {
    background: #1e3c72;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.modal-button:hover {
    background: #2a5298;
}

/* Reservation Form (keeping for backward compatibility) */
.reservation-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #1e3c72;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

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

.submit-button {
    background: #1e3c72;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #2a5298;
    transform: translateY(-2px);
}

/* Admin Panel */
.admin-panel {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.reservations-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.reservations-table th,
.reservations-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e1e5e9;
}

.reservations-table th {
    background: #f8f9fa;
    font-weight: bold;
    color: #1e3c72;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer {
    background: #1e3c72;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Responsive Design - Modern mobile-first approach */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
        backdrop-filter: blur(10px);
        border-radius: 0 0 15px 15px;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        margin: 5px 0;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.9);
        color: #1e88e5;
        transform: scale(1.05);
    }
    
    /* Top info bar responsive */
    .scrolling-text {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        animation-duration: 25s;
    }
    
    .text-item {
        margin-right: 1.5rem;
    }
    
    .text-separator {
        margin: 0 0.8rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .reservation-form,
    .admin-panel,
    .cinema-reservation-system {
        margin: 1.5rem 0;
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
    }
    
    .cinema-reservation-system::before {
        height: 3px;
    }
    
    .court-types {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .court-type-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .court-type-card:hover,
    .court-type-card.selected {
        transform: translateY(-4px) scale(1.01);
    }
    
    .court-type-card.selected::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: 15px;
        right: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-photo {
        height: 300px;
    }
    
    /* Responsive for balanced about section */
    .about-balanced {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .features-grid {
        margin-top: 1.5rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .hero {
        padding: 80px 0;
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .league-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .league-text {
        order: 2; /* Na mobile tekst pod zdjęciem */
    }
    
    .league-image {
        order: 1; /* Na mobile zdjęcie nad tekstem */
    }
    
    /* Responsive for new sotorc-style league */
    .league-sotorc-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .league-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .league-right {
        padding: 30px 20px;
    }
    
    .league-content-card h2 {
        font-size: 1.2rem;
    }
    
    .category-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .league-highlight {
        padding: 2rem;
    }
    
    .league-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .league-actions .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .league-photo {
        height: 300px;
    }
    
    .league-stats {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.5rem;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .sports-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .tennis-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tennis-image {
        order: -1;
    }
    
    .tennis-photo {
        height: 300px;
        max-width: 100%;
    }
    
    .pickleball-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .health-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .health-card {
        padding: 2rem;
    }
    
    .calorie-range {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .calorie-number {
        font-size: 2.5rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-card {
        padding: 2rem;
    }
    
    .schedule-grid {
        grid-template-columns: 80px 1fr;
    }
    
    .time-slots {
        grid-template-rows: 40px repeat(14, 30px);
    }
    
    .days-grid {
        grid-template-rows: 40px repeat(14, 30px);
    }
    
    .time-slot {
        font-size: 0.8rem;
    }
    
    .day-header {
        font-size: 0.75rem;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .duration-buttons {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .duration-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .pay-button {
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        border-radius: 20px;
    }
    
    .pay-button:hover {
        transform: translateY(-2px) scale(1.01);
    }
    
    .reservations-table {
        font-size: 0.85rem;
    }
    
    .reservations-table th,
    .reservations-table td {
        padding: 8px 4px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .reservation-form,
    .admin-panel {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling & Animations */
html {
    scroll-behavior: smooth;
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.from-left {
    transform: translateX(-50px);
}

.scroll-reveal.from-right {
    transform: translateX(50px);
}

.scroll-reveal.from-left.revealed,
.scroll-reveal.from-right.revealed {
    transform: translateX(0);
}

/* Staggered animation delays */
.scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }

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

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

/* Tennis Section - Clean Modern Style */
.tennis-clean {
    padding: 80px 0;
    background: white;
}

.tennis-clean-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.tennis-image-clean {
    position: relative;
}

.tennis-photo-clean {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tennis-photo-clean:hover {
    transform: scale(1.02);
}

.tennis-features-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card-clean {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card-clean:hover::before {
    transform: scaleX(1);
}

.feature-card-clean:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.15);
    border-color: rgba(30, 136, 229, 0.2);
}

.feature-icon-clean {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e88e5 0%, #40E0D0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card-clean h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e88e5;
    margin-bottom: 1rem;
}

.feature-card-clean p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tennis-cta-clean {
    text-align: center;
}

.tennis-cta-clean .cta-button {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.3);
}

/* Responsive for clean tennis section */
@media (max-width: 768px) {
    .tennis-clean-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .tennis-image-clean {
        order: -1;
    }
    
    .tennis-features-clean {
        gap: 1.2rem;
    }
    
    .feature-card-clean {
        padding: 1.5rem;
    }
    
    .feature-icon-clean {
        font-size: 2.5rem;
    }
    
    .feature-card-clean h4 {
        font-size: 1.2rem;
    }
}
