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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(45deg, #FFE5B4, #FFB347, #FF8C69);
    min-height: 100vh;
}

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

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53, #FF6B35);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFE5B4;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.tennis-ball-1, .tennis-ball-2, .tennis-racket {
    position: absolute;
    font-size: 4rem;
    animation: bounce 3s ease-in-out infinite;
}

.tennis-ball-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.tennis-ball-2 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
}

.tennis-racket {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

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

/* Buttons */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

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

.btn-secondary {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #FF6B35;
    color: #FF6B35;
}

.btn-outline:hover {
    background: #FF6B35;
    color: white;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Sections */
.about, .pricing, .reviews, .contact {
    padding: 100px 0;
    position: relative;
}

.about {
    background: linear-gradient(135deg, #96CEB4, #FFECD2);
}

.pricing {
    background: linear-gradient(135deg, #FFE5B4, #FFCC70, #FF8A80);
}

.reviews {
    background: linear-gradient(135deg, #A8EDEA, #FED6E3);
}

.contact {
    background: linear-gradient(135deg, #D299C2, #FED6E3);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.about-text h3 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495E;
    line-height: 1.7;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #2C3E50;
    font-weight: 600;
}

.court-illustration {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
}

.court {
    width: 100%;
    height: 100%;
    background: #52C234;
    border: 4px solid white;
    border-radius: 10px;
    position: relative;
}

.net {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: white;
    transform: translateY(-50%);
}

.player {
    position: absolute;
    font-size: 2rem;
    background: #FF6B35;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.player-1 {
    bottom: 20px;
    left: 30px;
}

.player-2 {
    top: 20px;
    right: 30px;
}

/* Pricing Section */
.pricing-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #34495E;
    margin-bottom: 3rem;
    font-weight: 500;
}

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

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card:nth-child(1) {
    border-color: #4ECDC4;
}

.pricing-card:nth-child(2) {
    border-color: #FF6B35;
}

.pricing-card:nth-child(3) {
    border-color: #96CEB4;
}

.pricing-card:nth-child(4) {
    border-color: #FECA57;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #FF6B35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    font-weight: 800;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    color: #FF6B35;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: #2C3E50;
    font-weight: 900;
}

.period {
    font-size: 1rem;
    color: #7F8C8D;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #34495E;
    border-bottom: 1px solid #F8F9FA;
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.btn-pricing.featured:hover {
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

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

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFE5B4;
}

.info-box h4 {
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.info-box p {
    color: #34495E;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
}

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

.review-card:nth-child(odd) {
    border-color: #FF6B35;
}

.review-card:nth-child(even) {
    border-color: #4ECDC4;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495E;
    font-style: italic;
    line-height: 1.6;
}

.reviewer .name {
    font-weight: 700;
    color: #2C3E50;
    display: block;
}

.reviewer .role {
    color: #7F8C8D;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location h2, .contact-form h2 {
    font-size: 2.2rem;
    color: #2C3E50;
    margin-bottom: 2rem;
    font-weight: 800;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item .icon {
    font-size: 2rem;
    min-width: 40px;
}

.info-item h4 {
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #34495E;
    line-height: 1.5;
}

/* Forms */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #F8F9FA;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    background: white;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C3E50, #3498DB);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo p {
    margin-top: 0.5rem;
    color: #BDC3C7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFE5B4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #BDC3C7;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border: none;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #FF6B35;
}

.modal h2 {
    color: #2C3E50;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.modal-text {
    color: #34495E;
    line-height: 1.6;
}

.modal-text h3 {
    color: #2C3E50;
    margin: 1.5rem 0 1rem;
    font-weight: 700;
}

.modal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    max-width: 350px;
    z-index: 1500;
    border: 3px solid #FF6B35;
}

.cookie-content h4 {
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookie-content p {
    color: #34495E;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
        margin: 1rem 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }
}
