/* =====================================================================
   Dinky Promise — Public Website Theme
   Brand: Black + Electric Orange | Bold Sporty Premium
   ===================================================================== */

/* ── CSS Variables ──────────────────────────────────────────────────── */
:root {
    --site-dark: #080808;
    --site-darker: #050505;
    --site-darkest: #020202;
    --site-surface: #0E0E0E;
    --site-surface-hover: #151515;
    --site-surface-light: #181818;
    --site-accent: #FF6A00;
    --site-accent-hover: #FF8C33;
    --site-accent-dark: #E55D00;
    --site-accent-glow: rgba(255, 106, 0, 0.12);
    --site-accent-glow-md: rgba(255, 106, 0, 0.18);
    --site-accent-glow-lg: rgba(255, 106, 0, 0.30);
    --site-green: #10B981;
    --site-red: #EF4444;
    --site-text: #FFFFFF;
    --site-text-secondary: #A0A0A0;
    --site-text-muted: #666666;
    --site-border: rgba(255, 255, 255, 0.06);
    --site-border-strong: rgba(255, 255, 255, 0.12);
    --site-border-orange: rgba(255, 106, 0, 0.15);
    --site-radius: 12px;
    --site-radius-sm: 8px;
    --site-radius-lg: 16px;
    --site-radius-xl: 24px;
    --site-transition: cubic-bezier(0.16, 1, 0.3, 1);
    --gradient-orange: linear-gradient(135deg, #FF6A00, #FF8C33);
    --gradient-dark: linear-gradient(180deg, #080808 0%, #0E0E0E 100%);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.3);
    --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.6), 0 16px 48px rgba(0,0,0,0.3);
    --shadow-orange: 0 4px 30px rgba(255, 106, 0, 0.35);
    --shadow-orange-lg: 0 8px 50px rgba(255, 106, 0, 0.3);
    --shadow-orange-btn: 0 0 20px rgba(255, 106, 0, 0.4), 0 4px 16px rgba(255, 106, 0, 0.25);
}

/* ── Keyframes ──────────────────────────────────────────────────────── */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 106, 0, 0.15); }
    50% { box-shadow: 0 0 40px rgba(255, 106, 0, 0.3); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(255, 106, 0, 0.1); }
    50% { border-color: rgba(255, 106, 0, 0.3); }
}

@keyframes shineSlide {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ── Base ───────────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--site-text);
    background: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: rgba(255, 106, 0, 0.35);
    color: #fff;
}

img { max-width: 100%; height: auto; }

/* ── Navbar ─────────────────────────────────────────────────────────── */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--site-border);
    transition: all 0.4s var(--site-transition);
}

.site-navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--site-border);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.4s var(--site-transition);
}

.site-navbar.scrolled .navbar-inner {
    height: 64px;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.navbar-brand:hover { opacity: 0.85; }

.navbar-brand .brand-logo {
    height: 40px;
    width: auto;
}

.footer-brand .brand-logo {
    height: 36px;
    width: auto;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--site-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s var(--site-transition);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.45);
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.brand-name strong {
    color: var(--site-accent);
    font-weight: 800;
    display: block;
}

/* Desktop Nav */
.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar-menu a {
    position: relative;
    padding: 8px 18px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--site-radius-sm);
    transition: all 0.25s ease;
    letter-spacing: -0.005em;
}

.navbar-menu a:hover {
    color: #fff;
}

.navbar-menu a.active {
    color: var(--site-accent);
    font-weight: 700;
}

.navbar-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--site-accent);
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 106, 0, 0.5);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle */
.navbar-toggle {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    border-radius: var(--site-radius-sm);
    transition: background 0.2s ease;
}

.navbar-toggle:hover { background: rgba(255, 255, 255, 0.06); }

.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s var(--site-transition);
}

.navbar-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--site-border);
    padding: 12px 0 24px;
}

.mobile-menu.open {
    display: block;
    animation: revealUp 0.35s var(--site-transition) both;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.mobile-menu ul li a {
    display: block;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--site-radius-sm);
    transition: all 0.2s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--site-accent);
    background: rgba(255, 106, 0, 0.06);
}

.mobile-menu ul li a.active {
    font-weight: 700;
    border-left: 3px solid var(--site-accent);
}

.mobile-menu-footer {
    padding: 16px 20px 0;
    border-top: 1px solid var(--site-border);
    margin-top: 12px;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn-site-primary {
    background: var(--site-accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-orange-btn);
}

.btn-site-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: none;
}

.btn-site-primary:hover {
    background: var(--site-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange-lg);
}

.btn-site-primary:hover::before {
    animation: shineSlide 0.6s ease forwards;
}

.btn-site-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-site-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-site-outline:hover {
    border-color: var(--site-accent);
    color: var(--site-accent);
    background: rgba(255, 106, 0, 0.06);
    transform: translateY(-2px);
}

.btn-site-outline:active {
    transform: translateY(0) scale(0.98);
}

/* Ghost button for dark backgrounds */
.btn-site-gold-outline {
    background: transparent;
    color: var(--site-accent);
    border: 2px solid rgba(255, 106, 0, 0.4);
    border-radius: 50px;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-site-gold-outline:hover {
    background: var(--site-accent);
    color: #fff;
    border-color: var(--site-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-site-gold-outline:active {
    transform: translateY(0) scale(0.98);
}

/* Small button */
.btn-sm.btn-site-primary, .btn-site-primary.btn-sm {
    padding: 10px 24px;
    font-size: 0.84rem;
}
.btn-sm.btn-site-outline, .btn-site-outline.btn-sm {
    padding: 9px 22px;
    font-size: 0.84rem;
}
.btn-sm.btn-site-gold-outline, .btn-site-gold-outline.btn-sm {
    padding: 9px 22px;
    font-size: 0.84rem;
}

/* Shine button effect */
.shine-btn {
    position: relative;
    overflow: hidden;
}

.shine-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.shine-btn:hover::before {
    animation: shineSlide 0.6s ease forwards;
}

/* ── Hero Section ───────────────────────────────────────────────────── */
.site-hero {
    padding: 140px 0 80px;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--site-accent);
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--site-text-secondary);
    max-width: 440px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero image panel */
.hero-image-panel {
    position: relative;
    border-radius: var(--site-radius-xl);
    overflow: hidden;
    background: var(--site-surface);
    border: 1px solid var(--site-border-orange);
    min-height: 440px;
    box-shadow: 0 0 60px rgba(255, 106, 0, 0.08);
}

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

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0E0E0E 0%, #1a1a1a 50%, #0E0E0E 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 5%;
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255, 106, 0, 0.15);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

.hero-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite 2s;
}

.hero-image-placeholder .hero-placeholder-icon {
    font-size: 6rem;
    opacity: 0.2;
    filter: drop-shadow(0 0 30px rgba(255, 106, 0, 0.3));
}

/* Hero decorative elements */
.hero-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-deco-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -5%;
    border: 2px solid rgba(255, 106, 0, 0.1);
}

.hero-deco-2 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 15%;
    border: 2px solid rgba(255, 106, 0, 0.06);
}

/* Hero handwritten text */
.hero-handwritten {
    position: absolute;
    top: 160px;
    right: 60px;
    font-family: 'Brush Script MT', 'Segoe Script', cursive;
    font-size: 1.8rem;
    color: var(--site-accent);
    transform: rotate(-8deg);
    text-shadow: 0 0 25px rgba(255, 106, 0, 0.5);
    white-space: nowrap;
    line-height: 1.3;
    pointer-events: none;
    z-index: 3;
}

/* ── Sections ───────────────────────────────────────────────────────── */
.site-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.site-section.section-dark {
    background: #000;
}

.site-section.section-surface {
    background: var(--site-surface);
}

.site-section.section-darker {
    background: var(--site-darker);
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--site-accent);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(255, 106, 0, 0.25);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--site-text-secondary);
    max-width: 520px;
    line-height: 1.7;
}

/* Section with light/dark alternating backgrounds */
.bg-light {
    background: var(--site-surface) !important;
}

.bg-dark {
    background: #000 !important;
}

.bg-gradient-soft {
    background: linear-gradient(180deg, #000 0%, var(--site-surface) 100%);
}

/* ── Feature Strip ──────────────────────────────────────────────────── */
.feature-strip {
    padding: 50px 0;
    background: var(--site-surface);
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
}

.feature-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 8px;
    border-radius: var(--site-radius);
    transition: all 0.3s ease;
}

.feature-strip-item:hover {
    background: rgba(255, 106, 0, 0.04);
}

.feature-strip-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 2px solid rgba(255, 106, 0, 0.25);
    background: rgba(255, 106, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-accent);
    font-size: 1.3rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.feature-strip-item:hover .feature-strip-icon {
    border-color: var(--site-accent);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.2);
    background: rgba(255, 106, 0, 0.12);
}

.feature-strip-item h6 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.feature-strip-item p {
    font-size: 0.78rem;
    color: var(--site-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ── Cards ──────────────────────────────────────────────────────────── */
.dp-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--site-transition);
    height: 100%;
}

.dp-card:hover {
    border-color: var(--site-border-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 106, 0, 0.06);
}

.dp-card .card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #0E0E0E 0%, #1a1a1a 100%);
    overflow: hidden;
}

.dp-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--site-transition);
}

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

.dp-card .card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.2;
}

.dp-card .card-body {
    padding: 24px;
}

.dp-card .card-body h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.dp-card .card-body p {
    font-size: 0.86rem;
    color: var(--site-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.dp-card .card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--site-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dp-card .card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    z-index: 2;
}

.card-badge-open {
    background: rgba(16, 185, 129, 0.2);
    color: var(--site-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.card-badge-upcoming {
    background: var(--site-accent-glow-md);
    color: var(--site-accent);
    border: 1px solid rgba(255, 106, 0, 0.3);
}

.card-badge-closed {
    background: rgba(239, 68, 68, 0.15);
    color: var(--site-red);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ── Feature Card ───────────────────────────────────────────────────── */
.feature-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    padding: 32px 28px;
    transition: all 0.35s var(--site-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--site-transition);
}

.feature-card:hover {
    border-color: var(--site-border-orange);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255, 106, 0, 0.06);
}

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

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: var(--site-accent-glow);
    color: var(--site-accent);
    border: 1px solid var(--site-border-orange);
    transition: all 0.3s var(--site-transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.15);
}

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.86rem;
    color: var(--site-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ── Booking Panel ──────────────────────────────────────────────────── */
.booking-panel {
    background: var(--site-surface);
    border: 1px solid var(--site-border-orange);
    border-radius: var(--site-radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(255, 106, 0, 0.05);
}

.booking-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

.booking-panel .bp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-panel .bp-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--site-text-secondary);
}

.booking-panel .bp-input {
    background: #000;
    border: 1px solid var(--site-border-strong);
    border-radius: var(--site-radius-sm);
    color: #fff;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.2s ease;
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.booking-panel .bp-input:focus {
    border-color: var(--site-accent);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.booking-panel select.bp-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* ── Open Play Widget Card ──────────────────────────────────────────── */
.op-widget-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius);
    transition: all 0.25s ease;
}

.op-widget-card:hover {
    border-color: var(--site-border-orange);
    background: rgba(255, 106, 0, 0.04);
}

.op-widget-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 56px;
    background: var(--site-accent-glow);
    border: 1px solid var(--site-border-orange);
    border-radius: var(--site-radius-sm);
    flex-shrink: 0;
}

.op-widget-month {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--site-accent);
    line-height: 1;
}

.op-widget-day {
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.op-widget-info {
    flex: 1;
    min-width: 0;
}

.op-widget-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.op-widget-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.76rem;
    color: var(--site-text-muted);
}

.op-widget-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.op-widget-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
    gap: 2px;
}

.op-widget-spots {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--site-green);
}

.op-widget-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--site-accent);
}

/* ── Tournament Card ────────────────────────────────────────────────── */
.tournament-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--site-transition);
    height: 100%;
}

.tournament-card:hover {
    border-color: var(--site-border-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.tournament-card .card-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #0E0E0E, #1a1a1a);
    overflow: hidden;
}

.tournament-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(14, 14, 14, 0.9), transparent);
}

.tournament-card .card-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(8px);
}

.ribbon-open { background: rgba(16, 185, 129, 0.2); color: var(--site-green); border: 1px solid rgba(16, 185, 129, 0.3); }
.ribbon-upcoming { background: var(--site-accent-glow-md); color: var(--site-accent); border: 1px solid rgba(255, 106, 0, 0.3); }
.ribbon-closed { background: rgba(239, 68, 68, 0.15); color: var(--site-red); border: 1px solid rgba(239, 68, 68, 0.25); }

.tournament-card .card-body { padding: 24px; }
.tournament-card .card-body h4 { font-size: 1.08rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.tournament-card .card-body p { font-size: 0.86rem; color: var(--site-text-secondary); margin-bottom: 0; line-height: 1.5; }

.tournament-card .card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.8rem;
    color: var(--site-text-muted);
}

.tournament-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tournament-card .card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--site-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Session Card ───────────────────────────────────────────────────── */
.session-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    padding: 24px;
    transition: all 0.35s var(--site-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.session-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--site-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.session-card:hover {
    border-color: var(--site-border-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.session-card:hover::before { opacity: 1; }

.session-card .session-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--site-accent);
    background: var(--site-accent-glow);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 14px;
    width: fit-content;
}

.session-card .session-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.session-card .session-desc {
    font-size: 0.86rem;
    color: var(--site-text-secondary);
    line-height: 1.6;
    flex: 1;
}

.session-card .session-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--site-border);
}

.session-card .session-spots {
    font-size: 0.82rem;
    color: var(--site-text-muted);
}

/* ── Court Card ─────────────────────────────────────────────────────── */
.court-card-public {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--site-transition);
    height: 100%;
}

.court-card-public:hover {
    border-color: var(--site-border-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.court-card-public .court-image {
    height: 170px;
    background: linear-gradient(135deg, #0E0E0E, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.court-card-public .court-status {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--site-surface);
}

.court-card-public .court-status.status-available {
    background: var(--site-green);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
}

.court-card-public .court-status.status-busy { background: var(--site-red); }
.court-card-public .court-status.status-maintenance { background: var(--site-accent); }

.court-card-public .court-body { padding: 22px 24px; }
.court-card-public .court-name { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.court-card-public .court-type { font-size: 0.82rem; color: var(--site-text-muted); margin-bottom: 14px; }

.court-card-public .court-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.court-card-public .court-features span {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255, 106, 0, 0.06);
    color: var(--site-accent);
    border: 1px solid var(--site-border-orange);
}

/* ── Info Card ──────────────────────────────────────────────────────── */
.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    padding: 28px 24px;
    transition: all 0.35s var(--site-transition);
    height: 100%;
}

.info-card:hover {
    background: rgba(255, 106, 0, 0.04);
    border-color: var(--site-border-orange);
    transform: translateY(-3px);
}

/* ── Schedule / Table Card ──────────────────────────────────────────── */
.schedule-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--site-transition);
}

.schedule-card:hover {
    box-shadow: var(--shadow-card);
}

.schedule-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--site-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.schedule-card-header h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.schedule-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.schedule-table th {
    padding: 12px 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--site-text-muted);
    border-bottom: 1px solid var(--site-border);
    background: rgba(255, 255, 255, 0.02);
}

.schedule-table td {
    padding: 12px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--site-border);
    color: var(--site-text-secondary);
}

.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: rgba(255, 106, 0, 0.03); }

/* ── CTA Section ────────────────────────────────────────────────────── */
.cta-section {
    padding: 120px 0;
    background: #000;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(255, 106, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(255, 106, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--site-accent) 50%, transparent 95%);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
}

.cta-section h2 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.035em;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--site-text-secondary);
    margin-bottom: 40px;
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer {
    background: #000;
    padding: 64px 0 0;
    border-top: 1px solid var(--site-border);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--site-text-muted);
    font-size: 0.86rem;
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-motto {
    font-size: 0.82rem;
    color: var(--site-accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(255, 106, 0, 0.2);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--site-text-muted);
    text-decoration: none;
    font-size: 0.86rem;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--site-accent);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid var(--site-border-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-accent);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--site-accent);
    border-color: var(--site-accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--site-border);
    padding: 20px 0;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--site-text-muted);
}

.footer-bottom a {
    color: var(--site-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--site-accent); }

/* ── Page Header (inner pages) ──────────────────────────────────────── */
.page-header {
    padding: 130px 0 60px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.08), transparent 60%);
    pointer-events: none;
    filter: blur(50px);
}

.page-header > .container { position: relative; z-index: 2; }

.page-header h1 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.page-header p {
    color: var(--site-text-secondary);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 0.82rem;
}

.page-header .breadcrumb a {
    color: var(--site-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.page-header .breadcrumb a:hover { color: var(--site-accent); }
.page-header .breadcrumb .separator { color: rgba(255, 255, 255, 0.15); }
.page-header .breadcrumb .current { color: var(--site-accent); font-weight: 700; }

/* Particles */
.page-header .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 106, 0, 0.35);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.page-header .particle:nth-child(1) { left: 10%; top: 60%; animation-delay: 0s; }
.page-header .particle:nth-child(2) { left: 25%; top: 70%; animation-delay: 1.5s; }
.page-header .particle:nth-child(3) { left: 55%; top: 50%; animation-delay: 3s; }
.page-header .particle:nth-child(4) { left: 75%; top: 65%; animation-delay: 0.8s; }
.page-header .particle:nth-child(5) { left: 90%; top: 55%; animation-delay: 2.5s; }

/* ── Glow Card ──────────────────────────────────────────────────────── */
.glow-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--site-border-orange);
    border-radius: var(--site-radius-lg);
    padding: 28px 24px;
    transition: all 0.35s var(--site-transition);
}

.glow-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.06);
}

/* ── Glass Container ────────────────────────────────────────────────── */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-lg);
}

/* ── Map Container ──────────────────────────────────────────────────── */
.map-container {
    border-radius: var(--site-radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;
}

/* ── Pricing Card ───────────────────────────────────────────────────── */
.pricing-card {
    background: var(--site-surface);
    border: 1px solid var(--site-border);
    border-radius: var(--site-radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s var(--site-transition);
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--site-border-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

/* ── Product Image ──────────────────────────────────────────────────── */
.product-image {
    height: 220px;
    background: linear-gradient(135deg, #0E0E0E, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--site-transition);
}

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

/* ── Step Number ────────────────────────────────────────────────────── */
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--site-accent);
    color: #fff;
    font-weight: 900;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.35);
}

/* ── Policy Toggle ──────────────────────────────────────────────────── */
.policy-toggle {
    cursor: pointer;
    transition: background 0.2s ease;
}

.policy-toggle:hover { background: rgba(255, 106, 0, 0.03); }

.policy-toggle .toggle-icon {
    transition: transform 0.3s var(--site-transition);
}

.policy-toggle.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

/* ── Utility Classes ────────────────────────────────────────────────── */
.text-accent { color: var(--site-accent) !important; }

.text-gradient {
    background: linear-gradient(135deg, #FF6A00 0%, #FF8C33 50%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.live {
    background: var(--site-green);
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.5);
    animation: pulseGlow 2s ease infinite;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Orange divider line */
.orange-divider {
    height: 3px;
    background: var(--gradient-orange);
    border: none;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
}

/* ── Scroll Reveal ──────────────────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--site-transition),
                transform 0.7s var(--site-transition);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile Bottom Nav Bar ─────────────────────────────────────────── */
.mobile-bottom-bar {
    display: none;
}

@media (max-width: 991px) {
    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--site-border);
        padding: 0;
        align-items: stretch;
        height: 64px;
    }

    .mobile-bottom-bar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--site-text-muted);
        font-size: 0.65rem;
        font-weight: 600;
        gap: 3px;
        transition: color 0.2s ease;
        padding: 6px 0;
    }

    .mobile-bottom-bar a i {
        font-size: 1.15rem;
    }

    .mobile-bottom-bar a.active,
    .mobile-bottom-bar a:hover {
        color: var(--site-accent);
    }

    .mobile-bottom-bar .book-cta {
        background: var(--site-accent);
        color: #fff !important;
        border-radius: 14px;
        margin: 8px 4px;
        font-weight: 700;
        font-size: 0.7rem;
        box-shadow: 0 0 20px rgba(255, 106, 0, 0.35);
    }

    .mobile-bottom-bar .book-cta:hover {
        color: #fff !important;
    }

    /* Add padding for the bottom bar */
    .site-footer {
        padding-bottom: 80px;
    }

    main {
        padding-bottom: 0;
    }
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
    .hero-title { font-size: 3.6rem; }
    .cta-section h2 { font-size: 2.6rem; }
}

@media (max-width: 991px) {
    .site-hero { padding: 120px 0 70px; min-height: auto; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .site-section { padding: 72px 0; }
    .section-title { font-size: 2.1rem; }
    .page-header { padding: 110px 0 50px; }
    .page-header h1 { font-size: 2rem; }
    .booking-panel { padding: 32px; }
    .cta-section h2 { font-size: 2rem; }
    .hero-image-panel { min-height: 320px; }
    .hero-image-placeholder { min-height: 320px; }
    .hero-handwritten { display: none; }

    /* Map + location */
    .map-container { min-height: 380px; position: static !important; }
    .map-container iframe { min-height: 380px; }
}

@media (max-width: 767px) {
    .site-hero { padding: 110px 0 60px; }
    .hero-title { font-size: 2.4rem; }
    .site-section { padding: 56px 0; }
    .section-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-site-primary,
    .hero-actions .btn-site-outline { width: 100%; justify-content: center; }
    .cta-section { padding: 72px 0; }
    .cta-section h2 { font-size: 1.7rem; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 1.7rem; }
    .booking-panel { padding: 24px; }
    .feature-card { padding: 24px 20px; }
    .site-footer { padding: 48px 0 0; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .feature-strip { padding: 32px 0; }

    /* Table horizontal scroll */
    .table-responsive, .schedule-card .table-responsive { -webkit-overflow-scrolling: touch; }
    .schedule-table { min-width: 480px; }

    /* Map containers */
    .map-container { min-height: 350px; }
    .map-container iframe { min-height: 350px; }

    /* Court showcase images */
    .court-card-public .court-image { height: 160px; }
    .tournament-card .card-image { height: 160px; }
}

@media (max-width: 575px) {
    .site-hero { padding: 100px 0 48px; }
    .hero-title { font-size: 2rem; letter-spacing: -0.03em; }
    .hero-subtitle { font-size: 0.92rem; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.88rem; }
    .section-label { font-size: 0.68rem; }
    .navbar-inner { height: 64px; }
    .site-navbar.scrolled .navbar-inner { height: 56px; }
    .btn-site-primary, .btn-site-outline, .btn-site-gold-outline {
        padding: 12px 24px;
        font-size: 0.86rem;
    }

    /* Session cards */
    .session-card { padding: 18px 16px; }
    .session-card .session-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
    .session-card .session-footer .btn-site-primary { width: 100%; text-align: center; }

    /* Tournament cards */
    .tournament-card .card-image { height: 140px; }
    .tournament-card .card-body { padding: 18px 16px; }
    .tournament-card .card-body h4 { font-size: 1rem; }
    .tournament-card .card-footer { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
    .tournament-card .card-meta { gap: 8px; font-size: 0.75rem; }

    /* Court cards */
    .court-card-public .court-body { padding: 16px; }
    .court-card-public .court-image { height: 140px; }

    /* dp-card (court showcase, shop) */
    .dp-card .card-body { padding: 16px; }
    .dp-card .card-footer { padding: 12px 16px; }

    /* Court showcase — override inline height:240px */
    .col-md-4 .dp-card div[style*="240px"] { height: 160px !important; }

    /* Feature cards */
    .feature-card { padding: 20px 16px; }
    .feature-card .feature-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 1.2rem; margin-bottom: 14px; }
    .feature-card h4 { font-size: 0.95rem; }
    .feature-card p { font-size: 0.82rem; }

    /* Step numbers */
    .step-number { width: 48px; height: 48px; font-size: 1.1rem; }

    /* CTA */
    .cta-section { padding: 56px 0; }
    .cta-section h2 { font-size: 1.5rem; }
    .cta-section p { font-size: 0.95rem; margin-bottom: 28px; }
    .cta-section .btn-site-primary,
    .cta-section .btn-site-gold-outline { width: 100%; justify-content: center; }

    /* Location page */
    .loc-venue-card .p-4 { padding: 14px !important; }
    .map-container, .map-container iframe, .map-container #locMapPlaceholder { min-height: 280px !important; }

    /* Feature strip */
    .feature-strip { padding: 24px 0; }
    .feature-strip-item { padding: 12px 4px; }
    .feature-strip-item h6 { font-size: 0.72rem; margin-bottom: 2px; }
    .feature-strip-item p { font-size: 0.65rem; }
    .feature-strip-icon { width: 38px; height: 38px; margin-bottom: 8px; }
    .feature-strip-icon svg { width: 18px; height: 18px; }

    /* Open Play widget cards (home page) */
    .op-widget-card { gap: 10px; padding: 12px; }
    .op-widget-date { width: 44px; height: 48px; }
    .op-widget-month { font-size: 0.55rem; }
    .op-widget-day { font-size: 1.1rem; }
    .op-widget-title { font-size: 0.82rem; }
    .op-widget-meta { gap: 8px; font-size: 0.7rem; }
    .op-widget-price { font-size: 0.88rem; }
    .op-widget-spots { font-size: 0.65rem; }

    /* Booking panel */
    .booking-panel { padding: 20px 16px; }

    /* Info cards (stats) */
    .info-card { padding: 18px 14px; }
    .info-card .fs-3 { font-size: 1.3rem !important; }

    /* Glow cards (about page stats) */
    .glow-card { padding: 14px 10px; }
    .glow-card h3 { font-size: 0.78rem !important; }
    .glow-card span { font-size: 0.62rem !important; }
    .glow-card .p-4 { padding: 10px !important; }

    /* Schedule card & table */
    .schedule-card .p-5 { padding: 20px !important; }
    .schedule-card-header { padding: 14px 16px; }
    .schedule-table th { padding: 10px 12px; font-size: 0.65rem; }
    .schedule-table td { padding: 10px 12px; font-size: 0.78rem; }

    /* Pricing card */
    .pricing-card { padding: 28px 20px; }

    /* Product image (shop items) */
    .product-image { height: 160px; }

    /* Contact page form inputs */
    .form-control-lg, .form-select-lg {
        font-size: 0.88rem;
        padding: 10px 14px;
    }

    /* Page header */
    .page-header { padding: 90px 0 32px; }
    .page-header h1 { font-size: 1.5rem; }
    .page-header p { font-size: 0.85rem; }
    .breadcrumb { font-size: 0.72rem; }

    /* Contact info icons */
    .col-lg-5 .d-flex .me-4 { margin-right: 0.75rem !important; }

    /* Home location map */
    .rounded-4 iframe { height: 250px !important; }

    /* Shop grid smaller card images */
    .col-6 .dp-card .card-image { height: 100px !important; }
}

/* ── Venue Switcher (Public) ────────────────────────────────────────── */
.venue-switcher-nav {
    margin-right: 4px;
}

.venue-select-public {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--site-border-strong);
    border-radius: 50px;
    color: #fff;
    padding: 8px 36px 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    transition: all 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.venue-select-public:hover {
    border-color: var(--site-accent);
    background-color: rgba(255, 106, 0, 0.06);
}

.venue-select-public:focus {
    border-color: var(--site-accent);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.venue-select-public option {
    background: #111;
    color: #fff;
    padding: 8px;
}

/* Mobile venue select full-width */
.mobile-menu .venue-select-public {
    border-radius: var(--site-radius-sm);
    padding: 12px 36px 12px 16px;
    font-size: 0.88rem;
}

/* ── Print ──────────────────────────────────────────────────────────── */
@media print {
    .site-navbar, .site-footer, .cta-section, .mobile-bottom-bar { display: none; }
    .site-hero, .page-header { padding: 20px 0; background: none; }
    .hero-title, .page-header h1 { color: #000; }
    body { color: #000; background: #fff; }
}
