/* ============================================
   THE PICKLEBALL ARENA — PREMIUM STYLESHEET
   ============================================ */

:root {
    --summer-blue: #2f78bd;
    --sandy-yellow: #f4eb2e;
    --hot-pink: #f4eb2e;
    --deep-blue: #0f3f77;
    --ziggy-blue: #1f66ab;
    --ziggy-blue-dark: #154f8b;
    --ink-blue: #123e71;
    --line-yellow: #dfe033;
    --soft-white: #f5f7fb;
    --accent-coral: #ff6b6b;
    --accent-mint: #00c97b;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --font-ui: 'Inter', 'Outfit', sans-serif;
    --font-logo: 'Playfair Display', serif;
    --font-hero: 'Playfair Display', serif;
    --font-script: 'Cormorant Garamond', serif;
    --font-display: 'Bungee', cursive;
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.22);
    --radius-lg: 1.6rem;
    --radius-xl: 2.4rem;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Watermark removed per request */
.site-watermark { display: none !important; }
/* Force-hide any legacy mobile quick links bar */
.mobile-quick-links { display: none !important; }

/* Mobile-first nav cleanup */
@media (max-width: 1200px) {
    .nav-left {
        display: flex !important;
        gap: 1.2rem;
    }
    .social-icons { display: none !important; }
    .inner-topbar { display: none !important; }
    nav {
        background: transparent;
        padding: 0.8rem 1.2rem 0.6rem;
    }
    nav.scrolled { background: rgba(0, 18, 45, 0.8); }
    .hero-section {
        padding-top: clamp(4rem, 8vh, 5.5rem);
    }
}
/* ============================================
   PAGE TRANSITIONS
   ============================================ */
.page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
    transform: translateY(30px) scale(0.98);
}

.page.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}

.page.exit {
    opacity: 0;
    transform: translateY(-30px) scale(1.02);
    pointer-events: none;
}

/* ============================================
   HERO PAGE BACKGROUND
   ============================================ */
#hero-page {
    background: linear-gradient(135deg, #0a2a5e 0%, #1a5faa 50%, #2d8fd5 100%);
    perspective: 1400px;
    position: relative;
}

#hero-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.25) 0 90px, transparent 150px),
        radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.18) 0 120px, transparent 190px),
        radial-gradient(circle at 38% 75%, rgba(255, 255, 255, 0.14) 0 140px, transparent 210px),
        url('sky_background_1772862165221.png') center/cover no-repeat;
    z-index: 0;
    animation: skyDrift 26s ease-in-out infinite alternate;
}

#hero-page::after {
    content: '';
    position: fixed;
    inset: -20% -10%;
    background:
        radial-gradient(circle at 25% 35%, rgba(140, 200, 255, 0.2), transparent 45%),
        radial-gradient(circle at 70% 60%, rgba(200, 230, 255, 0.15), transparent 48%);
    z-index: 1;
    pointer-events: none;
    animation: liveGlow 12s ease-in-out infinite alternate;
}

@keyframes skyDrift {
    0% { transform: scale(1.02) translate3d(-1.2%, 0, 0); }
    100% { transform: scale(1.08) translate3d(1.6%, -1.2%, 0); }
}

@keyframes liveGlow {
    0% { transform: translate3d(-1.5%, 0, 0) rotate(0deg); opacity: 0.8; }
    100% { transform: translate3d(1.5%, -1%, 0) rotate(2deg); opacity: 1; }
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: url('https://static.wixstatic.com/media/0da768_361994b0f154464682a0aaf9724471cc.png') repeat;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* ============================================
   NAVBAR
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 120;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 2.2rem 0.8rem;
    transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
    position: relative;
    z-index: 130;
}

.nav-right-group {
    display: none !important;
}

nav.scrolled {
    background: rgba(15, 30, 60, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-left {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #00c8ff;
    text-decoration: none;
    font-size: 1.5rem;
    display: inline-block;
    transform: translateZ(14px);
    transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
    position: relative;
}

.blue-outline {
    text-shadow:
        -2px -2px 0 #041428,
        2px -2px 0 #041428,
        -2px 2px 0 #041428,
        2px 2px 0 #041428,
        4px 6px 0 rgba(8, 24, 46, 0.35);
}

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

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

.nav-link:hover {
    color: #87e8ff;
    text-shadow:
        -2px -2px 0 #041428,
        2px -2px 0 #041428,
        -2px 2px 0 #041428,
        2px 2px 0 #041428,
        6px 8px 0 rgba(8, 24, 46, 0.45);
    transform: translateY(-2px) scale(1.03);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
}

.social-icons a {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.social-icons a i {
    font-size: 1rem;
    line-height: 1;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 200, 255, 0.25);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 120;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease, background 0.3s ease;
}

.mobile-menu.open {
    max-height: 400px;
    padding: 1.6rem 1.2rem 2rem;
    background: rgba(10, 22, 50, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link {
    font-family: var(--font-display);
    color: #00c8ff;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

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

.mobile-social a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.mobile-quick-links {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.6rem;
    position: sticky;
    top: 68px;
    z-index: 90;
}

.mobile-quick-links a {
    background: rgba(10, 30, 60, 0.8);
    color: #00c8ff;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.mobile-quick-links a:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}

main {
    position: relative;
    width: 100%;
    z-index: 10;
}

section {
    width: 100%;
    position: relative;
}

/* ============================================
   STICKERS
   ============================================ */
.stickers-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.sticker-img {
    position: absolute;
    pointer-events: auto;
    filter: drop-shadow(4px 8px 6px rgba(0, 0, 0, 0.35)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
    transform: translate(var(--px, 0px), var(--py, 0px));
    transition: filter 0.3s ease, transform 0.3s ease;
    animation: float-sticker 8s ease-in-out infinite;
    will-change: transform;
}

.sticker-img:hover {
    filter: drop-shadow(6px 14px 10px rgba(0, 0, 0, 0.42)) brightness(1.1);
    transform: translate(var(--px, 0px), var(--py, 0px)) scale(1.08);
}

.sticker-img.bear { width: 100px; top: 8%; right: 22%; animation-delay: -1s; animation-duration: 7s; }
.sticker-img.fresh { width: 150px; top: 10%; left: 4%; transform: rotate(-12deg) translate(var(--px, 0px), var(--py, 0px)); animation-delay: -3s; animation-duration: 9s; }
.sticker-img.smiley { width: 120px; top: 45%; left: 6%; animation-delay: -5s; animation-duration: 11s; }
.sticker-img.strawberry { width: 180px; top: 5%; left: 42%; animation-delay: -2s; animation-duration: 8s; }
.sticker-img.starburst { width: 80px; top: 12%; left: 18%; animation-delay: 0s; animation-duration: 6s; }
.sticker-img.wow { width: 160px; top: 50%; right: 4%; transform: rotate(15deg) translate(var(--px, 0px), var(--py, 0px)); animation-delay: -4s; animation-duration: 10s; }

@keyframes float-sticker {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -16px; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: clamp(4.5rem, 7vh, 6.5rem);
    padding-bottom: 2.2rem;
    z-index: 12;
}

.logo-container {
    margin-bottom: 0.3rem;
    z-index: 20;
}

.logo-text {
    font-family: var(--font-logo);
    font-style: italic;
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    color: #fff;
    transform: translateZ(26px);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-content {
    text-align: center;
    z-index: 20;
    width: min(100%, 1150px);
}

.hero-3d-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.03em;
    margin-bottom: 0.2rem;
}

.hero-title {
    font-family: var(--font-hero);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(5.2rem, 12vw, 11.2rem);
    line-height: 0.84;
    color: var(--hot-pink);
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow:
        2px 2px 0 rgba(0, 0, 0, 0.2),
        6px 6px 0 rgba(20, 56, 100, 0.25);
}

.hero-title.outline {
    color: var(--hot-pink);
}

#serveTitle { margin-right: 0.08em; }
#smashTitle { margin-left: 0.05em; }

.hero-subtitle {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    color: var(--line-yellow);
    line-height: 1;
    margin-top: 0.3rem;
    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.22);
}

/* Scroll indicator */
.scroll-indicator {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 20;
}

.scroll-indicator span {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    animation: bounceDown 2s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Entrance animations */
.anim-fade-down {
    animation: fadeDown 1s var(--transition-smooth) both;
}

.anim-text-reveal {
    animation: textReveal 1.2s var(--transition-smooth) both;
}

.anim-fade-up {
    animation: fadeUp 1s var(--transition-smooth) both;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

@keyframes textReveal {
    from { opacity: 0; transform: translateY(60px) scale(0.95); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 3rem 2rem 4rem;
    z-index: 20;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.08) 100%);
}

.stats-bar {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: #fff;
    display: inline;
}

.stat-plus, .stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--line-yellow);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--line-yellow);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-hero);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #0f3f77;
    margin-bottom: 0.6rem;
}

.section-sub {
    font-size: 1.1rem;
    color: #556;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 8rem 2rem 5rem;
    background: transparent;
    z-index: 20;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    padding: 2.4rem 1.8rem;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--summer-blue), #00c8ff);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.4rem;
    background: linear-gradient(135deg, #e8f1ff, #cce4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--summer-blue);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--summer-blue), #00c8ff);
    color: #fff;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #0f3f77;
    margin-bottom: 0.8rem;
}

.feature-card p {
    font-size: 0.92rem;
    color: #667;
    line-height: 1.6;
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.booking-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 5rem 2rem;
    z-index: 20;
}

.booking-card {
    width: min(100%, 720px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.booking-card-inner {
    background: linear-gradient(160deg, rgba(15, 63, 119, 0.65), rgba(30, 100, 170, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0 2.4rem 2.4rem;
}

.booking-header-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 0;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

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

.booking-card-inner h3 {
    font-family: var(--font-hero);
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
}

/* Court selector */
.court-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.court-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0.6rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.court-option i {
    font-size: 1.2rem;
}

.court-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.court-option.selected {
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink-blue);
    border-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.35rem;
    text-align: left;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    font-family: var(--font-ui);
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input[type="date"] {
    width: 100%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0.8rem;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    color: #0f3f77;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
    transition: box-shadow 0.3s ease;
}

.form-group input[type="date"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.4);
}

.booking-text-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-text-input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.booking-text-input:focus {
    border-color: rgba(0, 200, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.25);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.time-slot {
    border: 2px solid transparent;
    border-radius: 0.8rem;
    padding: 0.7rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.7);
    color: #21364f;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.time-slot.available {
    cursor: pointer;
}

.time-slot.available:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    background: var(--ink-blue);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 4px 16px rgba(18, 62, 113, 0.4);
    transform: scale(1.03);
}

.slot-range-line {
    display: block;
    line-height: 1.2;
}

.slot-status-line {
    display: block;
    margin-top: 0.22rem;
    line-height: 1.2;
}

.slots-left-line {
    color: var(--summer-blue);
    font-weight: 800;
}

.time-slot.selected .slots-left-line {
    color: #8cd2ff;
}

.time-slot.booked,
.time-slot.past {
    cursor: not-allowed;
    opacity: 0.45;
    text-decoration: line-through;
    background: rgba(255, 255, 255, 0.3);
}

.slot-feedback {
    margin-top: 0.7rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    min-height: 1.25rem;
    transition: color 0.3s ease;
}

.slot-feedback[data-tone='success'] { color: #c8ff8c; }
.slot-feedback[data-tone='error'] { color: #ffe3e3; }

.book-btn {
    width: 100%;
    margin-top: 1rem;
    border: none;
    border-radius: 0.9rem;
    padding: 1rem;
    background: linear-gradient(135deg, #112d4d, #1a4a7a);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 45, 77, 0.4);
}

.book-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.book-btn:disabled:hover::before { left: -100%; }

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #f5f7fb 0%, #e8edf5 100%);
    z-index: 20;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    max-width: 1050px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.4rem 2rem;
    text-align: center;
    border: 1px solid #e8e8e8;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: linear-gradient(160deg, #0f3f77, #1a5faa);
    color: #fff;
    border: none;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--line-yellow);
    color: #0f3f77;
    font-family: var(--font-display);
    font-size: 0.7rem;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-badge {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    color: var(--summer-blue);
}

.pricing-card.featured .pricing-badge {
    color: var(--line-yellow);
}

.pricing-amount {
    margin-bottom: 1.8rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.7;
}

.price {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 1;
}

.period {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.6;
}

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

.pricing-features li {
    padding: 0.6rem 0;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li i {
    font-size: 0.85rem;
}

.pricing-features li .fa-check {
    color: var(--accent-mint);
}

.pricing-features li .fa-xmark {
    color: #ccc;
}

.pricing-features li.disabled {
    opacity: 0.45;
}

.pricing-card.featured .pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-cta {
    display: block;
    padding: 0.9rem;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--summer-blue);
    color: var(--summer-blue);
    background: transparent;
}

.pricing-cta:hover {
    background: var(--summer-blue);
    color: #fff;
    transform: translateY(-2px);
}

.pricing-card.featured .pricing-cta {
    background: var(--line-yellow);
    color: #0f3f77;
    border-color: var(--line-yellow);
}

.pricing-card.featured .pricing-cta:hover {
    background: #fff;
    border-color: #fff;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 3rem 1.6rem 4rem;
    background: rgba(21, 82, 143, 0.94);
    border-top: 1px solid var(--line-yellow);
    border-bottom: 1px solid var(--line-yellow);
    z-index: 22;
}

.newsletter-container {
    width: min(100%, 1480px);
    margin: 0 auto;
    border: 1px solid var(--line-yellow);
    padding: 0.9rem 1.25rem 1.8rem;
    background: linear-gradient(180deg, rgba(27, 100, 170, 0.98), rgba(33, 104, 171, 0.97));
}

.inner-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(223, 224, 51, 0.55);
    padding-bottom: 0.8rem;
}

.inner-nav-links {
    display: flex;
    gap: 0.4rem;
}

.inner-nav-links a {
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    text-decoration: none;
    color: #0b3f74;
    background: var(--line-yellow);
    padding: 0.06rem 0.35rem;
    transition: background 0.3s ease;
}

.inner-nav-links a:hover {
    background: #fff;
}

.inner-brand {
    justify-self: center;
    font-family: var(--font-logo);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.inner-social-icons {
    display: flex;
    gap: 0.5rem;
}

.inner-social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.inner-social-icons a:hover {
    color: var(--line-yellow);
}

.inner-circle-lead {
    margin-top: 0.7rem;
    margin-bottom: 1.15rem;
    color: #b9ca63;
    font-family: var(--font-script);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(3rem, 7.2vw, 6.3rem);
    line-height: 0.95;
}

.subscribe-form {
    padding: 0.8rem 1.6rem 0.6rem;
}

.input-group {
    margin-bottom: 1.05rem;
    text-align: left;
}

.input-group label {
    color: var(--line-yellow);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--line-yellow);
    color: #fff;
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-group input:focus {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(223, 224, 51, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: var(--line-yellow);
    font-size: 0.9rem;
    font-weight: 700;
}

.checkbox-group input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--line-yellow);
}

.subscribe-btn {
    width: 100%;
    border: 0;
    background: #fff;
    color: #2a6ca8;
    font-family: var(--font-logo);
    font-style: italic;
    font-size: 2.6rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.inner-contact-mini {
    margin: 1.1rem 1.6rem 0;
    color: var(--line-yellow);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 280px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #fff;
    padding: 3rem 2rem 1.4rem;
    color: #000;
    text-align: center;
    position: relative;
    z-index: 30;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--summer-blue);
    background: #000;
    display: inline-block;
    padding: 0.25rem 0.65rem;
    margin-bottom: 1.1rem;
}

.footer-col p {
    margin-bottom: 0.55rem;
    font-weight: 500;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--summer-blue);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--summer-blue), #00c8ff);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 200;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(47, 120, 189, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(47, 120, 189, 0.5);
}

/* ============================================
   RESERVE PAGE
   ============================================ */
#reserve-page {
    overflow-y: auto;
}

.reserve-bg {
    min-height: 100vh;
    background: linear-gradient(160deg, #1563c4 0%, #0d3a8f 40%, #09256b 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    pointer-events: none;
}

.blob-1 { width: 500px; height: 500px; background: #4d9eff; top: -100px; left: -150px; animation: blobDrift 12s ease-in-out infinite alternate; }
.blob-2 { width: 400px; height: 400px; background: #1e78d4; bottom: -80px; right: -100px; animation: blobDrift 16s ease-in-out infinite alternate-reverse; }
.blob-3 { width: 300px; height: 300px; background: #55aaff; top: 40%; left: 55%; animation: blobDrift 10s ease-in-out infinite alternate; }

@keyframes blobDrift {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, 30px) scale(1.08); }
}

.reserve-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2rem;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.reserve-nav-left { display: flex; gap: 1.2rem; }

.reserve-nav-link {
    font-family: var(--font-display);
    color: #f5d000;
    text-decoration: none;
    font-size: 0.9rem;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    transition: color 0.3s ease;
}

.reserve-nav-link:hover {
    color: #fff;
}

.reserve-logo {
    font-family: var(--font-logo);
    font-style: italic;
    font-size: clamp(1.2rem, 2.1vw, 2rem);
    color: #fff;
    white-space: nowrap;
    text-align: center;
}

.reserve-nav-right {
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.reserve-nav-right a {
    width: 2.15rem;
    height: 2.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.reserve-nav-right a:hover {
    transform: translateY(-2px) scale(1.06);
    color: var(--line-yellow);
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 6px 18px rgba(0, 200, 255, 0.2);
}

.reserve-body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2.4rem 2rem;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}

.reserve-confirm-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.4rem 2rem;
    text-align: center;
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: cardPop 0.6s var(--transition-smooth) both;
}

@keyframes cardPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.reserve-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.reserve-icon-ring {
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.4; }
}

.reserve-icon {
    font-size: 3.4rem;
    color: #8cd2ff;
    line-height: 1;
}

.reserve-icon i {
    display: block;
}

.reserve-confirm-title {
    font-family: var(--font-hero);
    font-style: italic;
    font-weight: 700;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.reserve-confirm-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.reserve-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.8rem;
    margin-bottom: 0.7rem;
    transition: background 0.3s ease;
}

.reserve-detail-row:hover {
    background: rgba(255, 255, 255, 0.14);
}

.reserve-detail-label {
    font-family: var(--font-display);
    color: #8cd2ff;
    font-size: 0.8rem;
}

.reserve-detail-value {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.reserve-back-btn {
    margin-top: 1.4rem;
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reserve-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.reserve-newsletter {
    max-width: 540px;
    width: 100%;
    padding-top: 0.5rem;
}

.reserve-nl-title {
    font-family: var(--font-logo);
    font-style: italic;
    font-size: 2.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.reserve-nl-sub {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.reserve-email-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 3px solid rgba(255, 255, 255, 0.5);
    padding: 0.85rem 0;
    font-size: 1.1rem;
    color: #fff;
    outline: none;
    margin-bottom: 1.2rem;
    transition: border-color 0.3s ease;
}

.reserve-email-input:focus {
    border-bottom-color: var(--line-yellow);
}

.reserve-checkbox {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    margin-bottom: 1.3rem;
}

.reserve-subscribe-btn {
    background: #fff;
    color: #000;
    padding: 0.9rem;
    border-radius: 50px;
    border: none;
    font-family: var(--font-display);
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.reserve-subscribe-btn:hover {
    background: var(--line-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.reserve-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 1.6rem;
    flex-wrap: wrap;
    padding: 1rem 1.2rem 1.3rem;
    background: linear-gradient(180deg, rgba(6, 27, 76, 0.75), rgba(5, 22, 65, 0.9));
    color: rgba(245, 248, 255, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 10;
}

.reserve-main-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem 1.2rem;
    flex-wrap: wrap;
    max-width: 920px;
}

.reserve-main-contact h4 {
    font-family: var(--font-display);
    color: var(--line-yellow);
    background: rgba(0, 0, 0, 0.35);
    display: inline-block;
    padding: 0.18rem 0.5rem;
    font-size: 0.84rem;
    letter-spacing: 0.5px;
}

.reserve-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    text-decoration: none;
    color: rgba(245, 248, 255, 0.95);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
}

.reserve-contact-row i {
    margin-top: 0.08rem;
}

.reserve-contact-row span {
    max-width: 420px;
}

.reserve-contact-row:hover {
    color: #fff;
}

.reserve-main-copy {
    color: rgba(235, 244, 255, 0.9);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.4;
    text-align: right;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-bar { gap: 1.2rem; padding: 1.6rem 2rem; }
}

@media (max-width: 1024px) {
    /* Simplify hero chrome on medium phones/tablets */
    .nav-left { display: none !important; }
    .social-icons { display: none !important; }
    nav {
        justify-content: flex-end;
        padding: 1rem 1.2rem;
        background: linear-gradient(180deg, rgba(0, 29, 60, 0.45), rgba(0, 29, 60, 0));
        backdrop-filter: blur(10px);
    }
    nav.scrolled {
        padding: 0.7rem 1.2rem;
        background: rgba(0, 29, 60, 0.75);
    }
    .hero-section {
        min-height: 85vh;
        padding-top: max(env(safe-area-inset-top, 24px), 22px);
    }
    .hero-content { padding: 0 1rem; }
    .hero-title { line-height: 1.02; }
    .hero-subtitle { margin-top: 0.6rem; }
}

@media (max-width: 768px) {
    /* Hamburger visible */
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .nav-left { display: none; }
    .social-icons { display: none; }

    nav {
        padding: 1rem 1.2rem;
        flex-wrap: wrap;
    }

    nav.scrolled {
        padding: 0.7rem 1.2rem;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 3rem;
    }

    .mobile-quick-links { display: flex; }

    .hero-subtitle {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.6rem;
    }

    .stat-divider {
        width: 60%;
        height: 1px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.8rem 1.4rem;
    }

    .booking-area {
        padding: 3rem 1rem;
    }

    .booking-card-inner {
        padding: 0 1.2rem 1.6rem;
    }

    .court-selector {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .slot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .time-slot {
        font-size: 0.8rem;
        padding: 0.6rem 0.4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .newsletter-section {
        padding: 1.2rem 0.6rem 2rem;
    }

    .newsletter-container {
        padding: 0.7rem 0.65rem 1rem;
    }

    .inner-topbar {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .inner-nav-links { justify-content: center; }
    .inner-nav-links a { font-size: 1.45rem; }
    .inner-brand { font-size: 2rem; }
    .inner-social-icons { justify-content: center; }

    .inner-circle-lead {
        font-size: clamp(2.2rem, 12vw, 3.3rem);
        margin-top: 0.65rem;
    }

    .subscribe-form {
        padding: 0.45rem 0.2rem;
    }

    .subscribe-btn {
        font-size: 1.8rem;
    }

    .inner-contact-mini {
        margin: 0.85rem 0.2rem 0;
        font-size: 0.78rem;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-col h4 {
        margin-inline: auto;
    }

    .reserve-nav {
        padding: 0.9rem;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .reserve-nav-left { gap: 0.6rem; }
    .reserve-nav-link { font-size: 0.75rem; }

    .reserve-body {
        flex-direction: column;
        align-items: center;
        padding: 1.4rem 0.9rem;
    }

    .reserve-footer {
        align-items: flex-start;
        padding: 0.8rem 0.9rem;
    }

    .reserve-main-contact h4 { font-size: 0.74rem; }
    .reserve-contact-row { font-size: 0.78rem; }
    .reserve-contact-row span { max-width: 100%; }

    .reserve-main-copy {
        font-size: 0.6rem;
        white-space: normal;
    }

    .sticker-img.smiley,
    .sticker-img.wow {
        display: none;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .court-selector {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(3.6rem, 14vw, 5rem);
    }

    .logo-text {
        font-size: 2rem;
    }

    .sticker-img.bear,
    .sticker-img.fresh,
    .sticker-img.strawberry,
    .sticker-img.starburst {
        display: none;
    }
}
