/* ============================================
   PLAYSPOT - Professional Sports Booking
   Clean, functional, inspired by sports reference
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@700&display=swap');

:root {
    /* Primary palette */
    --primary: #1D4ED8;
    --primary-dark: #1E40AF;
    --primary-light: #E0E7FF;
    --secondary: #7C3AED;

    /* Accent */
    --accent: #10B981;
    --accent-dark: #059669;
    --accent-light: #ECFDF5;

    /* Dark theme colors */
    --dark: #0B1220;
    --slate: #1F2937;

    /* Neutrals */
    --gray-900: #0B1220;
    --gray-800: #111827;
    --gray-700: #1F2937;
    --gray-600: #374151;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F7F7FB;
    --white: #FFFFFF;

    /* Status */
    --gold: #FBBF24;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
    --shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.14);
    --shadow-xl: 0 28px 70px rgba(9, 14, 39, 0.35);

    /* Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--gray-50);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER - Fixed navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(29, 78, 216, 0.08);
    z-index: 1000;
    box-shadow: 0 6px 30px rgba(15, 23, 42, 0.08);
    padding: 1rem 0;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: rotate(-6deg);
    box-shadow: 0 8px 22px rgba(29, 78, 216, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.header-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--slate);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-shrink: 0;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    line-height: 1;
    font-family: inherit;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(29, 78, 216, 0.45);
}

.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.btn-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.28);
}

.btn-icon .badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ============================================
   HERO - Premium Lifestyle Search
   ============================================ */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background-color: var(--dark);
    /* Fallback and Overlay */
    background-image: linear-gradient(rgba(11, 18, 32, 0.6), rgba(11, 18, 32, 0.7)),
        url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 40px;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Search Box */
.search-card {
    background: white;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    gap: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: none;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    position: relative;
    padding: 12px 24px;
    border-right: 1px solid var(--gray-200);
}

.search-field:last-of-type {
    border-right: none;
}

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.search-field-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background: transparent;
}

.search-field-inner:focus-within {
    box-shadow: none;
}

.search-field-inner i {
    color: var(--primary);
    font-size: 1.1rem;
}

.search-field select,
.search-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--gray-800);
    padding: 0;
    background: transparent;
}

.search-field input::placeholder {
    color: var(--gray-400);
}

.search-btn {
    padding: 18px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: none;
    margin-left: 8px;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.3);
}

/* Quick Filters - on dark background */
.quick-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.filter-chip:hover,
.filter-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 50px 0;
    background: var(--gray-50);
}

.section+.section {
    padding-top: 30px;
}

.section-top {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin: 0;
    flex: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.25;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.section-description {
    font-size: 1rem;
    color: var(--gray-500);
    margin: 0;
    margin-top: 16px;
}

.view-all-link {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(29, 78, 216, 0.25);
}

.view-all-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
    gap: 14px;
}

.view-all-link i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* ============================================
   SPORTS - Clean Icon Tabs
   ============================================ */
.sports-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sport-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    /* Responsive */
    gap: 16px;
    padding: 10px 0;
}

.sport-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
    background: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    /* Subtle base shadow */
}

.sport-icon-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    color: var(--primary-dark);
}

.sport-icon-item.active {
    background: var(--dark);
    color: white;
    box-shadow: 0 8px 24px rgba(11, 18, 32, 0.2);
}

.sport-icon-item .icon {
    width: 64px;
    height: 64px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.2s;
    color: var(--primary);
}

.sport-icon-item:hover .icon {
    background: var(--primary-light);
    transform: scale(1.05);
}

.sport-icon-item.active .icon {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.sport-icon-item .name {
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.sport-icon-item .count {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
}

.sport-icon-item.active .count {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   VENUES - Clean Card Grid
   ============================================ */
/* ============================================
   VENUES - Clean Travel-Style Cards
   ============================================ */
.venues-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.venue-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.venue-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    /* Clean, borderless look with soft shadow */
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.venue-card .image {
    position: relative;
    height: 220px;
    /* Taller image */
    overflow: hidden;
}

.venue-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.venue-card:hover .image img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.venue-card .image .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    border-radius: 6px;
    /* Boxy but rounded */
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.venue-card .image .badge.gold {
    background: var(--gold);
    color: black;
}

.venue-card .image .save-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray-800);
    font-size: 1.1rem;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.venue-card .image .save-btn:hover {
    transform: scale(1.15);
    color: var(--error);
}

.venue-card .image .save-btn.saved {
    background: var(--error);
    color: white;
}

.venue-card .details {
    padding: 24px;
}

.venue-card .sport-label {
    display: none;
    /* Hide label in favor of clean title */
}

.venue-card .venue-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.venue-card .venue-location {
    font-size: 0.95rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.venue-card .venue-location i {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.venue-card .venue-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

.venue-card .rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.venue-card .rating i {
    color: var(--gold);
    font-size: 0.85rem;
}

.venue-card .rating span {
    color: var(--gray-400);
    font-weight: 400;
}

.venue-card .price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.venue-card .price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* Legacy support */
.venues-grid,
.venue-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.btn-book {
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
    display: inline-block;
    text-decoration: none;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(29, 78, 216, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: white;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* ============================================
   BOTTOM NAV (Mobile)
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 8px 16px 24px;
    display: none;
    justify-content: space-around;
    z-index: 100;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
}

.bottom-nav-item i {
    font-size: 1.25rem;
}

.bottom-nav-item.active {
    color: var(--primary);
}

/* ============================================
   DASHBOARD - Top Header + Floating Nav Orb
   ============================================ */
.organizer-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--gray-50);
}

/* Fixed Top Header */
.organizer-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(29, 78, 216, 0.1);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1rem 0;
}

.organizer-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.organizer-topbar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-bar {
    position: relative;
    width: 320px;
}

.search-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    background: var(--gray-50);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    color: var(--dark);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.notification-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gray-50);
    border: none;
    color: var(--gray-600);
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.notification-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.3);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--error);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.organizer-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 6px 12px 6px 6px;
    border-radius: 50px;
    transition: all 0.3s;
}

.organizer-user:hover {
    background: var(--gray-50);
}

.organizer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.organizer-user-info span {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.organizer-user-info small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

/* ==================== FLOATING NAVIGATION ORB ==================== */
.floating-nav {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1001;
}

.nav-orb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 32px rgba(29, 78, 216, 0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-orb:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 40px rgba(29, 78, 216, 0.5);
}

.nav-orb.open {
    transform: rotate(45deg);
    background: var(--error);
}

/* Floating Menu Panel */
.floating-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(29, 78, 216, 0.1);
}

.floating-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.menu-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.menu-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
}

.menu-content {
    padding: 1rem;
    max-height: 400px;
    overflow-y: auto;
}

.menu-section {
    margin-bottom: 1rem;
}

.menu-section-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    padding: 0 0.75rem;
    margin-bottom: 0.5rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-radius: 12px;
    margin-bottom: 4px;
}

.menu-item i {
    width: 20px;
    font-size: 1rem;
    color: var(--gray-400);
}

.menu-item:hover {
    background: rgba(29, 78, 216, 0.08);
    color: var(--primary);
}

.menu-item:hover i {
    color: var(--primary);
}

.menu-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.menu-item.active i {
    color: white;
}

.menu-item .menu-badge {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--accent);
    color: white;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.menu-footer {
    padding: 1rem;
    border-top: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.menu-footer .menu-item {
    justify-content: center;
    margin: 0;
}

/* ==================== MAIN CONTENT ==================== */
.organizer-main {
    margin-top: 80px;
    padding: 2rem 0;
    flex: 1;
}

/* Page Header Banner - Hero style for public pages */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #1e40af 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(0,0,0,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--primary));
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.page-title i {
    margin-right: 12px;
    opacity: 0.9;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Header Row - for listing pages with actions */
.page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    background: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

/* ==================== STAT CARDS WITH GRADIENT BAR ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(29, 78, 216, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-top: calc(1.75rem + 6px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 20px 20px 0 0;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.stat-icon.bookings {
    background: linear-gradient(135deg, var(--primary), #60A5FA);
}

.stat-icon.revenue {
    background: linear-gradient(135deg, var(--accent), #34D399);
}

.stat-icon.active-bookings {
    background: linear-gradient(135deg, var(--gold), #FBBF24);
}

.stat-icon.courts {
    background: linear-gradient(135deg, var(--secondary), #A78BFA);
}

.stat-title {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-change.positive {
    color: var(--accent);
}

.stat-change.negative {
    color: var(--error);
}

/* ==================== ACTIVITY CARDS ==================== */
.activity-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(29, 78, 216, 0.06);
    position: relative;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 20px 20px 0 0;
}

.card-header {
    padding: 1.25rem 1.5rem;
    padding-top: calc(1.25rem + 6px);
    background: var(--gray-50);
    border-bottom: 1px solid rgba(29, 78, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title i {
    color: var(--primary);
}

.see-all {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.see-all:hover {
    gap: 10px;
}

.activity-list {
    max-height: 380px;
    overflow-y: auto;
}

.activity-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.activity-item:hover {
    background: rgba(29, 78, 216, 0.03);
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.activity-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.activity-status {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-completed {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent);
}

.status-pending {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold);
}

.status-cancelled {
    background: rgba(239, 68, 68, 0.12);
    color: var(--error);
}

/* General Cards */
.card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(29, 78, 216, 0.06);
    overflow: hidden;
}

.card-body {
    padding: 1.5rem;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:first-child {
    padding-top: 0;
}

.list-avatar {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    flex-shrink: 0;
}

.list-info {
    flex: 1;
}

.list-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.list-subtitle {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Status Badges */
.badge {
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
}

.badge-error {
    background: rgba(239, 68, 68, 0.12);
    color: #DC2626;
}

/* Alert Items */
.alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.alert-item:last-child {
    margin-bottom: 0;
}

.alert-item.warning {
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    border-color: #FDE68A;
}

.alert-item.error {
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    border-color: #FECACA;
}

.alert-item.info {
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-color: #BFDBFE;
}

.alert-item:hover {
    transform: translateX(4px);
}

.alert-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.alert-item.warning .alert-icon {
    background: #FEF3C7;
    color: #D97706;
}

.alert-item.error .alert-icon {
    background: #FEE2E2;
    color: #DC2626;
}

.alert-item.info .alert-icon {
    background: #DBEAFE;
    color: #2563EB;
}

.alert-info {
    flex: 1;
}

.alert-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.alert-subtitle {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Organizer Footer */
.organizer-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: auto;
}

.footer-text {
    font-size: 0.9rem;
}

/* Dashboard Bottom Nav (Mobile) */
.dash-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.dash-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.dash-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: 12px;
    position: relative;
}

.dash-nav-item i {
    font-size: 1.25rem;
    transition: all 0.2s;
}

.dash-nav-item.active {
    color: var(--primary);
}

.dash-nav-item.active i {
    transform: scale(1.1);
}

.dash-nav-item .nav-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    min-width: 16px;
    height: 16px;
    background: var(--error);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Dashboard Responsive */
@media (max-width: 1024px) {
    .activity-section {
        grid-template-columns: 1fr;
    }

    .floating-menu {
        width: 280px;
        right: -10px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .organizer-nav {
        gap: 1rem;
    }

    .search-bar {
        width: 200px;
    }

    .organizer-user-info {
        display: none;
    }

    /* Hide floating orb, show bottom nav */
    .floating-nav {
        display: none;
    }

    .dash-bottom-nav {
        display: block;
    }

    /* Add bottom padding for content */
    .organizer-main {
        padding-bottom: 80px;
    }

    .organizer-footer {
        margin-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .search-bar {
        display: none;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .filter-group {
        flex: 1;
    }

    .header-actions .filter-select {
        width: 100%;
    }
}

/* ============================================
   AUTH
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;

    /* ============================================
   STATS STRIP
   ============================================ */
    .section-stats {
        background: white;
        padding: 30px 0;
        border-bottom: 1px solid var(--gray-100);
        margin-top: -60px;
        /* Overlap hero */
        position: relative;
        z-index: 20;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .stats-grid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        font-family: 'Space Grotesk', sans-serif;
        line-height: 1;
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .search-card {
            flex-direction: column;
            align-items: stretch;
            gap: 1rem;
        }

        .search-field {
            border-right: none;
            border-bottom: 1px solid var(--gray-200);
            padding: 12px 0;
        }

        .search-btn {
            margin: 0;
            justify-content: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .features-grid {
            grid-template-columns: 1fr !important;
        }
    }

    /* ============================================
   AUTH PAGES - Login / Register
   ============================================ */
    .auth-layout {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 50%, #FDF4FF 100%);
    }

    .auth-card {
        width: 100%;
        max-width: 420px;
        background: var(--white);
        border-radius: var(--radius-2xl);
        padding: 40px;
        box-shadow: var(--shadow-xl);
    }

    .auth-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .auth-header .logo {
        justify-content: center;
        margin-bottom: 24px;
    }

    .auth-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--gray-900);
        margin-bottom: 8px;
    }

    .auth-subtitle {
        color: var(--gray-500);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--gray-700);
        margin-bottom: 8px;
    }

    .form-input {
        width: 100%;
        padding: 14px 16px;
        background: var(--gray-50);
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius);
        font-size: 0.95rem;
        font-family: inherit;
        color: var(--gray-900);
        transition: all 0.2s;
    }

    .form-input::placeholder {
        color: var(--gray-400);
    }

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--white);
    }

    .social-btn {
        width: 100%;
        padding: 14px;
        background: var(--white);
        border: 1.5px solid var(--gray-200);
        border-radius: var(--radius);
        font-size: 0.95rem;
        font-weight: 600;
        font-family: inherit;
        color: var(--gray-700);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .social-btn:hover {
        background: var(--gray-50);
        border-color: var(--gray-300);
    }

    .divider {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 24px 0;
        color: var(--gray-400);
        font-size: 0.85rem;
    }

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--gray-200);
    }

    .auth-footer {
        text-align: center;
        margin-top: 24px;
        color: var(--gray-500);
    }

    .auth-footer a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

    .auth-footer a:hover {
        text-decoration: underline;
    }

    /* ============================================
   RESPONSIVE
   ============================================ */
    @media (max-width: 1024px) {
        .search-card {
            grid-template-columns: 1fr 1fr;
        }

        .search-btn {
            grid-column: 1 / -1;
            justify-content: center;
        }

        .venues-grid,
        .venue-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .dash-sidebar {
            display: none;
        }

        .dash-main {
            margin-left: 0;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 1.5rem;
        }

        .header-inner {
            padding: 0 1.5rem;
            gap: 2rem;
        }

        .header-nav {
            display: none;
        }

        .hero {
            padding: 120px 0 60px;
        }

        .hero-inner {
            padding: 0 1.5rem;
        }

        .hero-title {
            font-size: 2rem;
        }

        .search-card {
            grid-template-columns: 1fr;
            padding: 1.2rem;
        }

        .section {
            padding: 40px 0;
        }

        .section+.section {
            padding-top: 20px;
        }

        .section-top {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 0 1.5rem;
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.5rem;
        }

        .section-title::after {
            width: 40px;
            height: 3px;
        }

        .section-description {
            margin-top: 12px;
            font-size: 0.9rem;
        }

        .view-all-link {
            padding: 10px 20px;
            font-size: 0.85rem;
            align-self: flex-start;
        }

        /* Sports icons */
        .sports-container {
            padding: 0 1.5rem;
        }

        .sport-icon-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .sport-icon-item {
            padding: 16px 12px;
        }

        .sport-icon-item .icon {
            width: 44px;
            height: 44px;
            font-size: 1.4rem;
        }

        .sport-icon-item .name {
            font-size: 0.8rem;
        }

        .sport-icon-item .count {
            display: none;
        }

        /* Venues */
        .venues-container {
            padding: 0 1.5rem;
        }

        .venue-card-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .venue-card .image {
            height: 140px;
        }

        .venues-grid,
        .venue-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 1.5rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .footer-inner {
            padding: 0 1.5rem;
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .bottom-nav {
            display: flex;
        }

        .footer {
            margin-bottom: 80px;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 1.6rem;
        }

        .hero-subtitle {
            font-size: 1rem;
        }

        .quick-filters {
            gap: 0.5rem;
        }

        .filter-chip {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .section-top {
            flex-direction: column;
            gap: 1rem;
            align-items: flex-start;
            padding: 0 1rem;
        }

        .section-label {
            font-size: 0.7rem;
        }

        .section-title {
            font-size: 1.35rem;
        }

        .view-all-link {
            width: 100%;
            justify-content: center;
        }

        .sport-icon-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .sport-icon-item {
            padding: 12px 8px;
            gap: 8px;
        }

        .sport-icon-item .icon {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }

        .sport-icon-item .name {
            font-size: 0.7rem;
        }

        .venue-card-grid {
            grid-template-columns: 1fr;
        }

        .venues-grid,
        .venue-grid {
            grid-template-columns: 1fr;
        }
    }
}

/* ============================================
   BUSINESS UTILITY LAYOUT (Scoped)
   ============================================ */
.business-layout {
    background: #f5f5f5;
    /* Light grey background like generic booking sites */
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding-top: 80px;
    /* Fixed header compensation */
}

/* Image Fallbacks */
img {
    background-color: #e0e0e0;
    position: relative;
}

img::after {
    content: "";
    /* Hides alt text if image fails to load in some browsers */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

/* --- UTILITY HERO --- */
.utility-hero {
    background: 
        linear-gradient(135deg, rgba(11, 18, 32, 0.92) 0%, rgba(15, 23, 42, 0.88) 100%),
        url('https://images.unsplash.com/photo-1461896836934-eba09c76ac3e?w=1920&q=80') center/cover no-repeat;
    color: white;
    padding: 70px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent);
}

.utility-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.utility-subtitle {
    font-size: 1.15rem;
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
}

/* --- SEARCH BAR --- */
.search-container-wrapper {
    margin-top: -35px;
    z-index: 10;
    position: relative;
    margin-bottom: 50px;
}

.utility-search-bar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 6px;
    border-radius: 16px;
    display: flex;
    gap: 6px;
    box-shadow: 0 10px 40px rgba(29, 78, 216, 0.3);
}

.search-group {
    background: white;
    flex: 1;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 12px;
}

.search-group.icon-group i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-wrapper label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper input,
.input-wrapper select {
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    width: 100%;
    padding: 0;
    background: transparent;
}

.btn-utility-search {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    padding: 0 40px;
    border-radius: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.btn-utility-search:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

/* --- SECTIONS --- */
.main-content-wrapper {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Section wrapper styling */
.main-content-wrapper > section {
    position: relative;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    margin-top: 10px;
    position: relative;
    padding-top: 20px;
    letter-spacing: -0.5px;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

section.mb-5 {
    margin-bottom: 3.5rem !important;
    position: relative;
}

.section-subheading {
    color: #666;
    margin-bottom: 24px;
    font-size: 1rem;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.offer-card {
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.offer-card.with-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    border: none;
}

.offer-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

/* Property Types */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.btn-link-arrow {
    text-decoration: none;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.btn-link-arrow:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}

.btn-link-arrow i {
    transition: transform 0.3s ease;
}

.btn-link-arrow:hover i {
    transform: translateX(4px);
}

/* Sports Category Grid */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.property-card {
    display: block;
    text-decoration: none;
    color: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--dark);
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 18, 32, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.property-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.25);
}

.property-card:hover img {
    transform: scale(1.1);
}

.property-img-wrapper {
    position: relative;
    overflow: hidden;
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    z-index: 2;
}

.p-name {
    display: block;
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p-count {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

@media (max-width: 900px) {
    .property-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Locations Section */
.locations-section {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}


/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 14px;
    text-decoration: none;
    color: var(--dark);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: white;
    border-color: rgba(29, 78, 216, 0.2);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.12);
    transform: translateY(-4px);
}

.location-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), #f0f4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-icon i {
    font-size: 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.location-card:hover .location-icon i {
    color: white;
}

.location-info {
    flex: 1;
    min-width: 0;
}

.location-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.location-count {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.location-arrow {
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.location-card:hover .location-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 16px;
    }
}



/* Featured Section Background */
.featured-section {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}



/* Featured Venues Grid */
.featured-venues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.featured-venue-card {
    display: block;
    text-decoration: none;
    color: var(--dark);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-venue-card:hover {
    box-shadow: 0 20px 50px rgba(29, 78, 216, 0.2);
    transform: translateY(-8px);
}

.fv-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.fv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-venue-card:hover .fv-image img {
    transform: scale(1.1);
}

.fv-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.fv-badge i {
    font-size: 0.65rem;
}

.fv-rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.fv-score {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.fv-content {
    padding: 16px;
}

.fv-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.featured-venue-card:hover .fv-name {
    color: var(--primary);
}

.fv-location {
    font-size: 0.8rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.fv-location i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.fv-stats {
    margin-bottom: 12px;
}

.fv-stat {
    font-size: 0.75rem;
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fv-stat i {
    color: var(--accent);
    font-size: 0.7rem;
}

.fv-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

.fv-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.fv-price-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
}

.fv-price-unit {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.fv-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.featured-venue-card:hover .fv-cta {
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.4);
    transform: scale(1.05);
}

.fv-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.featured-venue-card:hover .fv-cta i {
    transform: translateX(3px);
}

/* First two cards can be larger on desktop */
@media (min-width: 1025px) {
    .featured-venues-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .featured-venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .featured-venues-grid {
        grid-template-columns: 1fr;
    }
    
    .fv-content {
        padding: 16px;
        padding-top: 50px;
    }
}

@media (max-width: 1024px) {
    .utility-search-bar {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        border-radius: 12px;
    }

    .btn-utility-search {
        padding: 14px;
        width: 100%;
        border-radius: 10px;
    }

    .property-type-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .utility-hero {
        padding: 50px 0 80px;
    }

    .utility-title {
        font-size: 2.2rem;
    }
    
    .utility-title br {
        display: none;
    }
    
    .hero-stats {
        gap: 16px;
        padding: 14px 20px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-link-arrow {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .property-type-carousel {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOMEPAGE - Modern Layout
   ============================================ */
.home-layout {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    padding-top: 72px;
}

/* Decorative page background */
.home-layout::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(29, 78, 216, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.home-layout > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   HOME HERO - With Background Image
   ============================================ */
.home-hero {
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.home-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1574629810360-7efbbe195018?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(30, 41, 59, 0.88) 50%,
        rgba(15, 23, 42, 0.92) 100%
    );
    /* Add subtle pattern overlay */
    background-image: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 50%, rgba(15, 23, 42, 0.92) 100%),
        radial-gradient(circle at 20% 30%, rgba(29, 78, 216, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
}

.home-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.home-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 24px;
}

.home-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.home-hero .hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.home-hero .hero-stat {
    text-align: center;
}

.home-hero .hero-stat .stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.home-hero .hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-hero .hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   HERO SEARCH BAR (Inside Hero)
   ============================================ */
.hero-search-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    gap: 8px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.hero-search-bar .search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    flex: 1;
    transition: all 0.3s;
}

.hero-search-bar .search-field.main-search {
    flex: 2;
}

.hero-search-bar .search-field:focus-within {
    background: white;
    box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.15);
}

.hero-search-bar .search-field i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-search-bar .search-field input,
.hero-search-bar .search-field select {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: #0f172a;
    width: 100%;
    outline: none;
}

.hero-search-bar .search-field input::placeholder {
    color: #94a3b8;
}

.hero-search-bar .search-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
}

.hero-search-bar .search-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(29, 78, 216, 0.45);
}

/* ============================================
   SPORT CATEGORIES - Icon Grid
   ============================================ */
.sport-categories-section {
    padding: 50px 0 20px;
    background: transparent;
    position: relative;
}

.sport-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.sport-category-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sport-category-card:hover {
    border-color: var(--sport-color, var(--primary));
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sport-category-card .category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sport-color, var(--primary)), color-mix(in srgb, var(--sport-color, var(--primary)) 70%, white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s;
}

.sport-category-card:hover .category-icon {
    transform: scale(1.05);
}

.sport-category-card .category-info {
    flex: 1;
    min-width: 0;
}

.sport-category-card .category-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.sport-category-card .category-count {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
}

@media (max-width: 1200px) {
    .sport-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-search-bar {
        flex-wrap: wrap;
    }
    
    .hero-search-bar .search-field {
        flex: 1 1 200px;
    }
    
    .hero-search-bar .search-field.main-search {
        flex: 1 1 100%;
    }
}

@media (max-width: 992px) {
    .sport-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .home-hero .hero-title {
        font-size: 2.25rem;
    }
    
    .home-hero .hero-title br {
        display: none;
    }
    
    .home-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .home-hero .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 24px 32px;
    }
    
    .home-hero .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-search-bar {
        flex-direction: column;
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .hero-search-bar .search-field {
        width: 100%;
    }
    
    .hero-search-bar .search-field.main-search {
        flex: 1;
    }
    
    .hero-search-bar .search-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .sport-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sport-category-card {
        padding: 14px 16px;
    }
    
    .sport-category-card .category-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .sport-category-card .category-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .home-hero .hero-title {
        font-size: 1.85rem;
    }
    
    .home-hero .hero-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .hero-search-bar .search-field {
        padding: 12px 16px;
    }
    
    .hero-search-bar .search-field input,
    .hero-search-bar .search-field select {
        font-size: 0.9rem;
    }
    
    .sport-categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOW IT WORKS SECTION - Homepage (Light Style)
   ============================================ */
.main-content-wrapper .how-it-works-section.light {
    padding: 48px 32px;
    background: white;
    border-radius: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.main-content-wrapper .how-it-works-section.light .section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.main-content-wrapper .how-it-works-section.light .section-subtitle {
    color: #64748b;
    font-size: 1rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 12px;
}

/* ============================================
   CTA SECTION - Homepage (uses public/components/cta.css)
   ============================================ */
.main-content-wrapper .cta-section {
    padding: 0;
    background: transparent;
}