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

:root {
    --primary-color: #101722;
    --secondary-color: #E1CB6E;
    --accent-color: #32AEA0;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: #32AEA0;
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.3rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #E1CB6E;
}

.nav-menu a:hover {
    color: #E1CB6E;
}

.nav-cta {
    background: #ffffff;
    color: #32AEA0;
    padding: 0.875rem 2rem;
    border: 2px solid #ffffff;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.logout-btn {
    background: #4caf50;
    white-space: nowrap;
}

.logout-btn:hover {
    background: #388e3c;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
    color: #2a8f84;
    border-color: #f0f0f0;
}

/* User Profile Menu */
.user-profile-menu {
    position: relative;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.profile-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.profile-avatar {
    font-size: 1.5rem;
}

.profile-name {
    color: var(--primary-color);
}

.profile-arrow {
    color: var(--gray);
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.profile-btn.active .profile-arrow {
    transform: rotate(180deg);
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    min-width: 280px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-avatar-large {
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-info strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.profile-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.profile-dropdown-menu {
    padding: 0.5rem 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s;
    font-weight: 500;
}

.profile-menu-item:hover {
    background: var(--light-bg);
}

.menu-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.profile-menu-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.logout-item {
    color: #f44336;
}

.logout-item:hover {
    background: rgba(244, 67, 54, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%),
                url('https://assets.clevelandclinic.org/transform/LargeFeatureImage/cfc23652-10dc-4110-b66b-1e2e6f494407/Pickle-Ball-1412985102-770x533-1_jpg') center/cover no-repeat;
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

/* Buttons */
.btn-primary {
    background: #32AEA0;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.btn-primary:hover {
    background: #2a8f84;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-link {
    background: transparent;
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-link:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Download App Section */
.download-app {
    background: var(--light-bg);
    padding: 4rem 0;
    text-align: center;
}

.download-app h3 {
    text-transform: lowercase;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.download-app h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: lowercase;
}

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

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.app-btn:hover {
    transform: translateY(-3px);
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    text-align: center;
}

.section-label {
    text-transform: lowercase;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.features-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.court-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
    text-align: left;
}

.placeholder-image {
    font-size: 10rem;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ways to Play Section */
.ways-to-play {
    background: var(--light-bg);
    padding: 3rem 0;
}

.ways-to-play h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.ways-to-play .btn-secondary {
    display: block;
    margin: 0 auto 3rem;
}

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

.play-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.play-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.play-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.play-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    flex-grow: 1;
}

.play-card .btn-link {
    align-self: flex-start;
}

/* Booking Process Section */
.booking-process {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.booking-process h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-process h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

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

.step {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

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

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

.author {
    color: var(--gray);
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

.pricing-table {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,102,255,0.2);
}

.pricing-table h3 {
    background: var(--light-bg);
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.pricing-table.featured h3 {
    background: var(--accent-color);
    color: var(--white);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-row.header {
    font-weight: bold;
    background: var(--light-bg);
}

.price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hours-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.hours-box h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.programs-title {
    text-align: center;
    font-size: 2rem;
    margin: 3rem 0 2rem;
}

/* Membership Section */
.membership {
    background: var(--light-bg);
    padding: 5rem 0;
}

.membership h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.membership-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.membership-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.membership-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.membership-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.membership-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.membership-price span {
    font-size: 1.5rem;
    color: var(--gray);
}

.membership-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.membership-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.membership-card li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Coaches Section */
.coaches-hero {
    padding: 5rem 0 4rem;
}

.coaches-main {
    padding: 5rem 0;
}

.coaches-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gray);
    font-size: 1.1rem;
}

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

.coach-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.coach-image {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.coach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coach-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.coach-availability {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.coach-availability.hidden {
    display: none;
}

.coach-availability h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.availability-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.availability-day {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-day strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.time-slot {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot.available {
    border-color: #4caf50;
    background: #e8f5e9;
}

.time-slot.available:hover {
    background: #c8e6c9;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
}

.time-slot.selected {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--white);
    font-weight: bold;
}

.coach-availability .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

/* Cart Styles */
.cart-icon {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #32AEA0;
    color: var(--white);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(50, 174, 160, 0.4);
    z-index: 1500;
    transition: transform 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
    background: #2a8f84;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f44336;
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

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

.cart-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cart-modal-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.cart-modal-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cart-section {
    margin-bottom: 2rem;
}

.cart-section h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.cart-section .cart-item {
    margin-bottom: 0.75rem;
}

.cart-item {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.cart-item-info span {
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.remove-item {
    background: #f44336;
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

.cart-item-remove {
    background: #f44336;
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cart-item-remove:hover {
    background: #d32f2f;
}

.cart-empty {
    text-align: center;
    padding: 2rem;
    color: var(--gray);
}

.cart-total {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cart-total h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cart-total p {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.cart-actions {
    display: flex;
    gap: 1rem;
}

.cart-actions button {
    flex: 1;
}

/* Coaching Pricing Section */
.coaching-pricing {
    background: var(--light-bg);
    padding: 5rem 0;
}

.coaching-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coaching-note {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
}

.cta-section .container h2,
.cta-section .container p,
.cta-section h2,
.cta-section p,
.cta-section * {
    color: #ffffff !important;
}

.cta-section .btn-primary {
    color: #ffffff !important;
    background: #32AEA0;
}

/* Contact Section */
.contact {
    background: var(--light-bg);
    padding: 5rem 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
}

.info-item.map-item {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.map-container-small {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-container-small iframe {
    display: block;
    width: 100%;
}

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

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Calendar Section Styles */
.calendar-section {
    padding: 5rem 0;
    background: var(--white);
}

.calendar-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.calendar-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

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

.calendar-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.calendar-nav {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.calendar-nav:hover {
    transform: scale(1.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: bold;
    padding: 0.5rem;
    color: var(--gray);
    font-size: 0.8rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    position: relative;
}

.calendar-day:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.calendar-day.other-month {
    opacity: 0.3;
    pointer-events: none;
}

.calendar-day.today {
    border-color: var(--accent-color);
    border-width: 3px;
}

.calendar-day.available {
    background: #e8f5e9;
    border-color: #4caf50;
}

.calendar-day.limited {
    background: #fff3e0;
    border-color: #ff9800;
}

.calendar-day.event {
    background: #e3f2fd;
    border-color: var(--accent-color);
}

.calendar-day.full {
    background: #ffebee;
    border-color: #f44336;
    cursor: not-allowed;
}

.calendar-day.full:hover {
    transform: none;
}

.calendar-day-number {
    font-weight: bold;
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.calendar-day-label {
    font-size: 0.6rem;
    color: var(--gray);
    text-align: center;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.legend-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid;
}

.legend-dot.available {
    background: #e8f5e9;
    border-color: #4caf50;
}

.legend-dot.limited {
    background: #fff3e0;
    border-color: #ff9800;
}

.legend-dot.event {
    background: #e3f2fd;
    border-color: var(--accent-color);
}

.legend-dot.full {
    background: #ffebee;
    border-color: #f44336;
}

/* Auth Modal Styles */
.auth-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.auth-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-modal-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.auth-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.auth-form {
    display: block;
}

.auth-form.hidden {
    display: none;
}

.auth-form h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.auth-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--gray);
}

.auth-link a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    text-decoration: underline;
}

.auth-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.close-auth-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.close-auth-modal:hover {
    color: var(--primary-color);
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.booking-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.booking-modal-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.clinic-modal-large {
    max-width: 1200px;
    padding: 2.5rem;
}

.clinic-modal-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.clinic-modal-left {
    display: flex;
    flex-direction: column;
}

.coach-modal-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.coach-modal-image .coach-image-large {
    font-size: 5rem;
    margin: 0 auto;
}

.clinic-modal-left h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.coach-modal-bio {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.coach-modal-certifications {
    margin-bottom: 2rem;
}

.coach-modal-rates {
    margin-top: auto;
}

.coach-modal-rates h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

#modalRatesList .coach-rate-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

#modalRatesList .coach-rate-item:last-child {
    border-bottom: none;
}

.clinic-modal-right {
    display: flex;
    flex-direction: column;
}

.clinic-calendar-section {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.clinic-calendar-section .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.clinic-calendar-section .calendar-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.calendar-nav {
    background: #32AEA0;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background: #2a8f84;
    transform: scale(1.1);
}

#clinicCalendarGrid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gray);
    padding: 0.5rem 0;
}

.clinic-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.clinic-calendar-day:hover:not(.disabled):not(.past) {
    background: #32AEA0;
    color: #ffffff;
    border-color: #32AEA0;
    transform: translateY(-2px);
}

.clinic-calendar-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--light-bg);
}

.clinic-calendar-day.past {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--light-bg);
}

.clinic-calendar-day.selected {
    background: #32AEA0;
    color: #ffffff;
    border-color: #32AEA0;
}

.clinic-calendar-day.today {
    border-color: #32AEA0;
    border-width: 3px;
}

.time-selection {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid #32AEA0;
}

.time-selection h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.time-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.time-select:focus {
    outline: none;
    border-color: #32AEA0;
}

.clinic-booking-form-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.clinic-booking-form-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

@media (max-width: 968px) {
    .clinic-modal-layout {
        grid-template-columns: 1fr;
    }
    
    .clinic-modal-large {
        max-width: 600px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .coaches-page-header h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card-icon {
        font-size: 3rem;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .coaches-page-header h1 {
        font-size: 1.3rem;
    }
    
    .joe-coach-card {
        padding: 2rem 1.5rem;
    }
    
    .other-coaches-grid {
        grid-template-columns: 1fr;
    }
}

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

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

/* Close button positioning for clinic modal */
.clinic-modal-large .close-modal {
    top: 0.75rem;
    right: 1rem;
    z-index: 10;
}

/* Profile Modal Styles */
.profile-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.profile-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.profile-modal-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.profile-modal-content h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    padding-right: 2rem;
}

.profile-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-avatar-display {
    font-size: 4rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 3px solid var(--accent-color);
}

/* Payment Cards */
.payment-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s;
}

.payment-card:hover {
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 2rem;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-info strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.card-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.card-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-text {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-weight: 600;
    padding: 0.5rem;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Order History */
.order-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

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

.order-header strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.order-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.order-details {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.order-details p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.order-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.order-status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.order-status.completed {
    background: #e8f5e9;
    color: #4caf50;
}

.order-status.pending {
    background: #fff3e0;
    color: #ff9800;
}

.order-status.cancelled {
    background: #ffebee;
    color: #f44336;
}

/* Waivers */
.waiver-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waiver-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.waiver-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #4caf50;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.waiver-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.waiver-info strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.waiver-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Family Members */
.family-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.family-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
}

.member-avatar {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-color);
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.member-info strong {
    color: var(--primary-color);
}

.member-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.member-relation {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    width: fit-content;
}

.booking-modal-content h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Add-Ons Styles */
.addon-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.addon-item {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s;
}

.addon-item:hover {
    border-color: var(--accent-color);
    background: rgba(0, 102, 255, 0.02);
}

.addon-item input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.addon-item > label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.addon-name {
    color: var(--primary-color);
}

.addon-price {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.addon-description {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
    margin-left: 2rem;
    line-height: 1.4;
}

.addon-total {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: right;
}

.addon-total strong {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.addon-total #addonTotalAmount {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.booking-summary {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.booking-summary h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.booking-summary p {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

/* Events Page Styles */
.upcoming-events {
    padding: 5rem 0;
    background: var(--light-bg);
}

.upcoming-events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Event Tabs */
.event-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.event-tab {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-color);
}

.event-tab:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.event-tab.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.events-tab-content {
    display: none;
}

.events-tab-content.active {
    display: block;
}

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

.event-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.event-card.past {
    opacity: 0.9;
}

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

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
}

.event-card p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.event-card .event-meta {
    margin-top: auto;
    margin-bottom: 1.5rem;
}

.event-card button {
    width: 100%;
    margin-top: auto;
}

.event-date {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.event-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status.upcoming {
    background: #e3f2fd;
    color: #32AEA0;
}

.event-status.completed {
    background: #e8f5e9;
    color: #4caf50;
}

.event-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-meta span {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Event Details Modal */
.event-details-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    overflow-y: auto;
}

.event-details-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
}

.event-details-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
    margin-top: 2rem;
}

.event-details-content h2 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    padding-right: 3rem;
}

.event-details-content .event-date-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.event-details-content .event-description {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.photo-gallery-item {
    aspect-ratio: 1;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 2px solid var(--border-color);
}

.event-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.highlight-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.feedback-quotes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.feedback-quotes blockquote {
    background: var(--light-bg);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #4caf50;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

.schedule-section {
    padding: 5rem 0;
}

.schedule-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.schedule-day {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.schedule-day h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.schedule-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.schedule-item .time {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.schedule-item .activity {
    font-weight: 600;
}

/* Map and Directions Styles */
.map-section {
    padding: 5rem 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-fallback {
    background: var(--light-bg);
    padding: 1.5rem;
    text-align: center;
}

.map-fallback p {
    margin-bottom: 1rem;
}

.map-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.directions-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.directions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.direction-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.direction-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    gap: 3rem;
}

.faq-category {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
}

.faq-category h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #32AEA0;
    color: #ffffff;
    padding: 2rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
}

/* Events Banner Styles */
.events-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.events-banner h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.events-banner-scroll {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scroll-behavior: smooth;
}

.events-banner-scroll::-webkit-scrollbar {
    height: 8px;
}

.events-banner-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
}

.events-banner-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 10px;
}

.events-banner-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.6);
}

.banner-event {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(15px);
    padding: 1.5rem 1.5rem;
    border-radius: 12px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-event:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.banner-date {
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff9e6;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
    min-height: 50px;
}

.banner-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    padding: 0.85rem 1.75rem;
    background: rgba(255,255,255,0.25);
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.banner-link:hover {
    background: var(--white);
    color: #ff6b35;
    border-color: var(--white);
    transform: translateX(5px);
}

/* Featured Spotlight Section */
.featured-spotlight {
    background: var(--light-bg);
    padding: 4rem 0;
}

.featured-spotlight h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.spotlight-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.spotlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotlight-badge.member-badge-highlight {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.spotlight-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent-color);
}

.spotlight-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.spotlight-title {
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.spotlight-stats {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem 0;
    border-top: 2px solid var(--light-bg);
    border-bottom: 2px solid var(--light-bg);
    margin-bottom: 1.5rem;
}

.spotlight-stats .stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spotlight-stats .stat strong {
    font-size: 1.75rem;
    color: var(--accent-color);
    font-weight: 800;
}

.spotlight-stats .stat span {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Events Header */
.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Waiver Section Styles */
.waiver-section {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.waiver-section h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.waiver-text {
    background: var(--white);
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 1rem;
    max-height: 150px;
    overflow-y: auto;
}

.waiver-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* reCAPTCHA Container */
.recaptcha-container {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.g-recaptcha {
    display: none; /* Hidden until actual reCAPTCHA is integrated */
}

/* Member Section Styles */
.member-section {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.member-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-search-results {
    position: relative;
    max-height: 200px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-top: 0.5rem;
    display: none;
}

.member-search-results.active {
    display: block;
}

.member-result-item {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

.member-result-item:last-child {
    border-bottom: none;
}

.member-result-item:hover {
    background: var(--light-bg);
}

.member-result-item strong {
    display: block;
    color: var(--primary-color);
}

.member-result-item span {
    font-size: 0.9rem;
    color: var(--gray);
}

.member-info {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 5px;
    border-left: 4px solid #4caf50;
    display: none;
}

.member-info.active {
    display: block;
}

.member-info .member-badge {
    display: inline-block;
    background: #4caf50;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Modal Subtitle */
.modal-subtitle {
    color: var(--gray);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Approval Notice */
.approval-notice {
    background: #e3f2fd;
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.approval-notice strong {
    color: var(--accent-color);
}

/* Auth Modal Scrollable */
.auth-modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

/* Membership Tiers Section */
.membership-tiers {
    padding: 5rem 0;
    background: var(--light-bg);
}

.membership-tiers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

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

.tier-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.tier-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.02);
}

.tier-card.premium {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.tier-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tier-badge.daily {
    background: #2196F3;
}

.tier-badge.weekly {
    background: #9C27B0;
}

.tier-badge.monthly {
    background: var(--accent-color);
}

.tier-badge.annual {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.tier-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tier-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-bg);
}

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

.price-period {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 0.5rem;
}

.savings-badge {
    background: #4caf50;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tier-benefits {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.tier-benefits li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.tier-card button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: auto;
}

.membership-note {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.membership-note p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .membership-tier-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: scale(1);
    }
    
    .tier-card:hover {
        transform: translateY(-5px);
    }
}

/* Shop/Product Cards */
.merchandise-section, .services-section, .paddle-shop {
    padding: 4rem 0;
}

.merchandise-section {
    background: var(--white);
}

.services-section {
    background: var(--light-bg);
}

.paddle-shop {
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

.product-card.featured {
    border: 2px solid var(--accent-color);
}

.product-card.service {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-card.info-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border: 2px solid #64b5f6;
}

.product-image {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 1rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--light-bg);
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-align: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

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

.qty-display {
    min-width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-add-cart {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Sponsorships Modern Design */
.current-sponsors {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.sponsor-card-modern {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sponsor-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.sponsor-card-modern.court::before {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.sponsor-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.sponsor-court-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sponsor-logo {
    font-size: 4rem;
    margin: 1rem 0;
}

.sponsor-card-modern h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.sponsor-tagline {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sponsor-tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sponsorship Tiers */
.sponsorship-tiers {
    padding: 5rem 0;
    background: var(--white);
}

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

.sponsor-tier-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid #e0e0e0;
}

.sponsor-tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    border-color: var(--accent-color);
}

.sponsor-tier-card.premium {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    transform: scale(1.03);
}

.tier-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.sponsor-tier-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tier-pricing {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-term {
    font-size: 1rem;
    color: #666;
    margin-left: 0.3rem;
}

.tier-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
    border-bottom: 1px solid #f0f0f0;
}

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

.btn-sponsor {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.why-sponsor {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #ffffff !important;
}

.cta-section .container h2,
.cta-section .container p,
.cta-section h2,
.cta-section p,
.cta-section * {
    color: #ffffff !important;
}

.cta-section .btn-primary {
    background: #32AEA0;
    color: #ffffff !important;
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background: #2a8f84;
    transform: translateY(-3px);
}

/* Info Tabs Section */
.info-tabs {
    padding: 5rem 0;
    background: var(--white);
}

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

.info-tab {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-color);
}

.info-tab:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.info-tab.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.info-tabs-body {
    min-height: 400px;
}

.info-tab-panel {
    display: none;
}

.info-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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

.about-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.about-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.about-card h3 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.about-card h3.inline-subheading {
    display: inline;
    font-size: 1.5rem;
    margin: 0;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
}

.value-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--gray);
}

.investment-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.investment-list li {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid var(--accent-color);
}

.investment-list li strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.investment-list li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .info-tabs-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .info-tab {
        width: 100%;
        text-align: center;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-showcase {
        grid-template-columns: 1fr;
    }
    
    .sponsor-tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-tier-card.premium {
        transform: scale(1);
    }
}

/* Coaches Page Header */
.coaches-page-header {
    padding: 4rem 0 3rem;
    background: var(--light-bg);
    text-align: center;
}

.coaches-page-header h1 {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* General Pricing Slider Section */
.general-pricing-section {
    padding: 4rem 0;
    background: var(--white);
}

.general-pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.pricing-grid-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
}

.pricing-card {
    background: linear-gradient(135deg, #f5fbfa 0%, #ffffff 100%);
    border: 2px solid #32AEA0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(50, 174, 160, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(50, 174, 160, 0.25);
}

.pricing-card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    padding: 0 0.5rem;
}

.pricing-duration {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    padding: 0 0.5rem;
}

.pricing-amounts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    height: 80px;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.pricing-label {
    font-weight: 600;
    color: var(--text-color);
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #32AEA0;
    white-space: nowrap;
}

.pricing-email {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.pricing-email a {
    color: #32AEA0;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.pricing-email a:hover {
    color: #2a8f84;
    text-decoration: underline;
}

.pricing-description {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    text-align: left;
    flex-grow: 1;
}

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

.pricing-email {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    flex-grow: 1;
}

.pricing-email p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #32AEA0;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: #2a8f84;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: -70px;
}

.slider-next {
    right: -70px;
}

/* Joe's Coaching Section */
.joe-coaching-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.joe-coaching-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.joe-coach-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* All Other Coaches Section */
.all-other-coaches-section {
    padding: 4rem 0;
    background: var(--white);
}

.all-other-coaches-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.other-coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Coaches Page - Head Coaches Section */
.head-coaches-section {
    padding: 5rem 0;
    background: var(--white);
}

.head-coaches-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

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

.head-coach-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 3px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.head-coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

.coach-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coach-image-large {
    font-size: 6rem;
    margin-bottom: 1.5rem;
}

.head-coach-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coach-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.coach-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.coach-specialties,
.coach-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.coach-certifications-section {
    margin-bottom: 2rem;
}

.certifications-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.certifications-label-small {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specialty-tag,
.certification-tag {
    background: var(--light-bg);
    color: #32AEA0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
}

.guest-coach-certifications-section {
    margin: 1rem 0;
}

.guest-coach-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.guest-coach-certifications .certification-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
}

.head-coach-card .coach-request-btn,
.guest-coach-card .coach-request-btn,
.coach-request-btn {
    margin-top: 1rem;
    color: #ffffff !important;
}

.head-coach-card .coach-request-btn.btn-primary,
.guest-coach-card .coach-request-btn.btn-primary,
.coach-request-btn.btn-primary {
    color: #ffffff !important;
}

.head-coach-card .coach-request-btn.btn-secondary,
.guest-coach-card .coach-request-btn.btn-secondary,
.coach-request-btn.btn-secondary {
    background: #32AEA0 !important;
    color: #ffffff !important;
    border: none !important;
}

.head-coach-card .coach-request-btn.btn-secondary:hover,
.guest-coach-card .coach-request-btn.btn-secondary:hover,
.coach-request-btn.btn-secondary:hover {
    background: #2a8f84 !important;
    color: #ffffff !important;
}

.coach-rates {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0 0 0;
    border: 2px solid #e0e0e0;
    margin-top: auto;
}

.coach-rates h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.coach-rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #d0d0d0;
}

.coach-rate-item:last-child {
    border-bottom: none;
}

.coach-rate-item span:first-child {
    font-size: 0.9rem;
    color: #666;
}

.coach-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.guest-coach-rates {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0 0 0;
    border: 1px solid #e0e0e0;
    margin-top: auto;
}

.guest-rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.guest-rate-item:not(:last-child) {
    border-bottom: 1px solid #d0d0d0;
}

.guest-rate-item span:first-child {
    color: #666;
}

.guest-price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.95rem;
}

/* Guest Coaches Section */
.guest-coaches-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.guest-coaches-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.guest-coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.guest-coach-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.guest-coach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.guest-coach-card .coach-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guest-coach-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guest-coach-specialty {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.guest-coach-card button {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .head-coaches-grid {
        grid-template-columns: 1fr;
    }
    
    .guest-coaches-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Testimonials Carousel Section */
.testimonials-carousel-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonials-carousel-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    min-height: 80px;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.95rem;
    font-style: normal;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.indicator:hover {
    background: #bbb;
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    width: 40px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .testimonials-carousel-section h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 1.1rem;
        min-height: 120px;
    }
}

/* Weekly Schedule Section (Homepage) */
.weekly-schedule-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.weekly-schedule-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Shop Section */
.shop-section {
    padding: 5rem 0;
}

.shop-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.weekly-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-day-column {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.schedule-day-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.schedule-day-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    color: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.schedule-day-header.today {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2a8f84 100%);
}

.day-name {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.day-date {
    font-size: 1.75rem;
    font-weight: bold;
    margin-top: 0.75rem;
}

.schedule-program {
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    transition: all 0.3s;
    flex-shrink: 0;
}

.schedule-program:last-child {
    border-bottom: none;
}

.schedule-program:hover {
    background: var(--light-bg);
    transform: translateX(5px);
}

.schedule-program.open-play {
    border-left: 6px solid #4caf50;
}

.schedule-program.clinic {
    border-left: 6px solid var(--accent-color);
}

.schedule-program.league {
    border-left: 6px solid #ff9800;
}

.schedule-program.social {
    border-left: 6px solid #9c27b0;
}

.program-time {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.program-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    color: var(--primary-color);
}

.program-register-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-register-btn:hover {
    background: #32AEA0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,102,255,0.4);
}

.schedule-empty {
    padding: 4rem 2rem;
    text-align: center;
    color: var(--gray);
    font-style: italic;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Calendar View Controls */
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.view-selector {
    display: flex;
    gap: 0.5rem;
    background: var(--light-bg);
    padding: 0.25rem;
    border-radius: 8px;
}

.view-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-color);
}

.view-btn:hover {
    background: var(--white);
}

.view-btn.active {
    background: var(--accent-color);
    color: var(--white);
}

/* Week View Styles */
.calendar-week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.week-day-column {
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

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

.week-day-header.today {
    background: var(--accent-color);
}

.week-time-slot {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--white);
}

.week-time-slot.available:hover {
    background: #e8f5e9;
    transform: scale(1.02);
}

.week-time-slot.limited {
    background: #fff3e0;
}

/* Day View Styles */
.calendar-day-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.day-time-slot {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s;
}

.day-time-slot:hover {
    border-color: var(--accent-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.day-time-slot.peak-hours {
    background: #fff9e6;
}

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

.slot-courts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.court-availability {
    padding: 0.5rem;
    text-align: center;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.court-availability.available {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #4caf50;
}

.court-availability.limited {
    background: #fff3e0;
    color: #e65100;
    border: 2px solid #ff9800;
}

.court-availability.booked {
    background: #ffebee;
    color: #c62828;
    border: 2px solid #f44336;
}

.slot-book-btn {
    padding: 0.75rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.slot-book-btn:hover {
    background: #32AEA0;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .calendar-grid {
        gap: 0.25rem;
    }
    
    .calendar-day {
        padding: 0.25rem;
    }
    
    .calendar-day-number {
        font-size: 0.9rem;
    }
    
    .calendar-day-label {
        font-size: 0.6rem;
    }
    
    .calendar-legend {
        gap: 1rem;
    }
    
    .booking-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #32AEA0;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        color: #ffffff;
        padding: 0.75rem 1.5rem;
    }
    
    .nav-cta {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .logo-image {
        height: 70px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .court-feature {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .membership-card.featured {
        transform: scale(1);
    }
    
    .weekly-schedule-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .weekly-calendar-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .schedule-day-column {
        min-height: auto;
    }
    
    .schedule-day-column:hover {
        transform: none;
    }
    
    .day-name {
        font-size: 0.95rem;
    }
    
    .day-date {
        font-size: 1.5rem;
    }
    
    .calendar-week-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .view-selector {
        width: 100%;
        justify-content: center;
    }
    
    .day-time-slot {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slot-courts {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Past Events & Results Styles */
.past-events-section {
    padding: 5rem 0;
    background: var(--white);
}

.past-events-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.event-result-card {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.event-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-result-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.event-date-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.event-description {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.division-standings {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.division-standings.full-width {
    grid-column: 1 / -1;
}

.division-standings h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.standings-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.standing-row {
    display: grid;
    grid-template-columns: 100px 1fr 80px;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 5px;
    align-items: center;
}

.standing-row.header {
    font-weight: bold;
    background: var(--light-bg);
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.standing-row:not(.header) {
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: transform 0.2s;
}

.standing-row:not(.header):hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.standing-row.winner {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-color: #ffd700;
    font-weight: 600;
}

.standing-row .place {
    font-weight: bold;
}

.standing-row .team {
    color: var(--text-color);
}

.standing-row .record,
.standing-row .points {
    text-align: center;
    font-weight: 600;
    color: var(--accent-color);
}

/* 4-column layout for league standings */
.standing-row.header span:nth-child(4),
.standing-row span:nth-child(4) {
    grid-column: 4;
}

.standing-row:has(span:nth-child(4)) {
    grid-template-columns: 80px 1fr 80px 80px;
}

/* Event Photos Section */
.event-photos {
    padding: 5rem 0;
    background: var(--light-bg);
}

.event-photos h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.photo-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.placeholder-photo {
    background: var(--light-bg);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.photo-card p {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .event-result-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-result-header h3 {
        font-size: 1.5rem;
    }
    
    .standing-row {
        grid-template-columns: 70px 1fr 60px;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .standing-row:has(span:nth-child(4)) {
        grid-template-columns: 50px 1fr 50px 50px;
    }
}

/* Coach Dashboard Styles */
.coach-dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.coach-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.coach-tab.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.coach-tab:hover {
    color: var(--primary-color);
}

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

.availability-list {
    margin-top: 30px;
}

.availability-item {
    background: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.availability-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 3px 10px rgba(0,102,255,0.1);
}

.availability-date {
    background: var(--accent-color);
    color: white;
    border-radius: 8px;
    padding: 10px 15px;
    text-align: center;
    min-width: 70px;
    box-shadow: 0 2px 8px rgba(0,102,255,0.2);
}

.date-month {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.availability-info {
    flex: 1;
}

.availability-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.availability-time {
    color: var(--gray);
    font-size: 0.95rem;
}

.past-slot {
    opacity: 0.6;
}

.past-slot .availability-date {
    background: var(--gray);
}

.past-badge {
    display: inline-block;
    background: #ffc107;
    color: var(--primary-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-remove:hover {
    background: #c82333;
}

.session-history-list {
    margin-top: 20px;
}

.session-item {
    background: white;
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.session-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.session-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.session-date {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.session-type {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.session-client {
    margin: 8px 0;
    color: var(--text-color);
}

.session-client strong {
    color: var(--primary-color);
}

.session-notes {
    color: var(--gray);
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.session-notes-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.notes-header strong {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.btn-edit-notes {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-edit-notes:hover {
    background: #2a8f84;
}

.notes-display p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.notes-edit {
    margin-top: 10px;
}

.notes-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: border-color 0.3s;
}

.notes-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.notes-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-save-notes {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-save-notes:hover {
    background: #00e67a;
}

.btn-cancel-notes {
    background: transparent;
    color: var(--gray);
    border: 2px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cancel-notes:hover {
    border-color: var(--gray);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .coach-dashboard-tabs {
        flex-direction: column;
    }
    
    .session-header {
        flex-direction: column;
        gap: 10px;
    }
}

