/* ============================================
   GENERAL STYLES & ROOT VARIABLES
   ============================================ */

:root {
    /* Colors */
    --accent-color: #CBE612;
    --accent-dark: #A8C00F;
    --accent-light: #E5F530;
    --accent-lighter: #F0FA6B;
    
    --primary-dark: #1a1a1a;
    --primary-text: #2d2d2d;
    --secondary-text: #555555;
    --light-text: #777777;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Exo2', 'Montserrat', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-sm: 60px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--white);
    overflow-x: hidden;
}

main {
    min-height: calc(100vh - 200px);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(203, 230, 18, 0.3);
}

.btn:hover::before {
    left: 0;
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: var(--section-padding);
}

.section-sm {
    padding: var(--section-padding-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@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);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ============================================
   HEADER
   ============================================ */

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.main-header:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--accent-color));
}

.footer-links h4,
.footer-contact h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact .icon {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--light-text);
}

.footer-bottom p {
    margin: 0;
    color: var(--light-text);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   HOME PAGE
   ============================================ */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--white);
    text-align: center;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    margin-top: 30px;
    font-size: 18px;
    padding: 16px 40px;
}

/* Why Choose Section */
.why-choose-section {
    background-color: var(--light-bg);
}

.section-title {
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.video-section {
    padding: 0;
    background-color: var(--primary-dark);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    max-width: 800px;
    margin: 0 auto;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(203, 230, 18, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-title {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.service-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.service-btn {
    margin-top: 20px;
}

/* Court Rental Section */
.court-rental-section {
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
}

/* Coaching Section */
.coaching-section {
    background-color: var(--white);
}

.coaching-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coaching-text h2 {
    margin-bottom: 20px;
}

.coaching-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.coaching-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.coaching-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(203, 230, 18, 0.3);
}

.coaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Equipment Section */
.equipment-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    color: var(--white);
}

.equipment-section .section-title,
.equipment-section .section-text {
    color: var(--white);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Support Section */
.contact-support-section {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .coaching-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.page-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-title {
    color: var(--white);
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    line-height: 1.3;
}

.content-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-dark);
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    margin-top: 30px;
}

/* Offer Section */
.offer-section {
    background-color: var(--light-bg);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.offer-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(203, 230, 18, 0.2);
}

.offer-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.offer-item h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.offer-item p {
    color: var(--secondary-text);
    margin: 0;
}

/* Coaches Section */
.coaches-section {
    background-color: var(--white);
}

.coaches-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coaches-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.coaches-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(203, 230, 18, 0.3);
}

.coaches-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coaches-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
}

.why-section .section-title {
    color: var(--primary-dark);
}

.why-section .section-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .coaches-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   PRICE PAGE
   ============================================ */

.price-page {
    background-color: var(--light-bg);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--accent-dark);
    transition: var(--transition-slow);
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(203, 230, 18, 0.2);
}

.service-item:hover::before {
    height: 100%;
}

.service-item.featured {
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
    border-left-color: var(--accent-dark);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.8rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-item.featured .service-price {
    background-color: var(--primary-dark);
    color: var(--accent-color);
}

.service-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--secondary-text);
}

.service-note {
    font-style: italic;
    color: var(--light-text);
    font-size: 0.95rem;
}

.membership-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.membership-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--secondary-text);
}

.membership-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-dark);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 640px) {
    .service-item {
        padding: 30px 20px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .service-price {
        font-size: 1.3rem;
        padding: 8px 16px;
    }
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-page {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(203, 230, 18, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background-color: var(--white);
}

.faq-question:hover {
    background-color: var(--light-bg);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary-dark);
    flex: 1;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-color);
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--accent-lighter);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--secondary-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 640px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
    background-color: var(--light-bg);
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-item {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.contact-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(203, 230, 18, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.contact-info-item h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-info-item a {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.contact-info-item p {
    color: var(--secondary-text);
    margin: 0;
    font-size: 1.05rem;
}

.opening-hours {
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.opening-hours h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.opening-hours p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 10px 0;
}

.opening-hours .note {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-text);
    font-style: italic;
}

.support-section {
    background-color: var(--white);
}

.support-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 500px;
}

.support-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.support-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.form-section {
    background-color: var(--light-bg);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--primary-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(203, 230, 18, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-lighter) 0%, var(--accent-light) 100%);
    border-radius: 8px;
    text-align: center;
}

.form-message p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.collaboration-section {
    background-color: var(--white);
}

.collaboration-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a2a2a 100%);
    padding: 50px 40px;
    border-radius: 12px;
    color: var(--white);
}

.collaboration-card .section-title,
.collaboration-card .section-text {
    color: var(--white);
}

@media (max-width: 968px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    .support-card,
    .collaboration-card {
        padding: 30px 20px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
}

/* ============================================
   LEGAL PAGES (TERMS & PRIVACY)
   ============================================ */

.terms-page,
.privacy-page {
    background-color: var(--light-bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.last-updated {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary-text);
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--secondary-text);
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.legal-content a {
    color: var(--accent-dark);
    font-weight: 600;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--primary-dark);
    font-weight: 700;
}

@media (max-width: 640px) {
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-content h2 {
        font-size: 1.8rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   DECORATIVE ELEMENTS - PADEL THEME
   ============================================ */

/* Padel court pattern decoration */
.padel-pattern {
    position: relative;
    overflow: hidden;
}

.padel-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(203, 230, 18, 0.03) 2px,
            rgba(203, 230, 18, 0.03) 4px
        );
    pointer-events: none;
    z-index: 0;
}

/* Racket icon decoration */
.racket-decoration {
    position: absolute;
    opacity: 0.05;
    font-size: 20rem;
    pointer-events: none;
    z-index: 0;
}

/* Ball bounce animation */
@keyframes ballBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.ball-icon {
    display: inline-block;
    animation: ballBounce 2s ease-in-out infinite;
}

/* Court lines effect */
.court-lines {
    position: relative;
}

.court-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-color),
        transparent
    );
    opacity: 0.2;
    transform: translateY(-50%);
}

/* Hover effects for interactive elements */
.interactive-hover {
    transition: var(--transition);
    position: relative;
}

.interactive-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.interactive-hover:hover::after {
    width: 100%;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    opacity: 0.7;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Responsive improvements */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-sm {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

