/* Guest Layout Styles - Inspired by RallyDistrict & Industrial Athletic Aesthetics */

/* Header & Navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 16, 18, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--pr-dark-border);
    padding: 0.65rem 1.25rem;
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 42px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    background: #000;
    padding: 2px;
    border: 1px solid rgba(46, 140, 136, 0.35);
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--pr-white);
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-name span {
    color: var(--pr-teal);
}

.brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pr-gray-concrete);
    font-weight: 600;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--pr-gray-light);
    transition: color 0.2s ease;
    padding: 0.35rem 0.4rem;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--pr-teal);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0.4rem;
    right: 0.4rem;
    height: 2px;
    background: var(--pr-teal);
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    background: #18191d;
    border: 1px solid var(--pr-dark-border);
    color: var(--pr-white);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    border-color: var(--pr-teal);
    color: var(--pr-teal);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    display: none;
    padding: 1.25rem 1rem 1.5rem;
    border-top: 1px solid var(--pr-dark-border);
    background: #111215;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
    animation: slideDown 0.2s ease;
}

.mobile-nav-drawer.show {
    display: block;
}

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

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: #16181c;
    border: 1px solid #23252b;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pr-white);
    transition: all 0.2s ease;
}

.mobile-nav-list a:hover, .mobile-nav-list a.active {
    background: rgba(46, 140, 136, 0.15);
    border-color: var(--pr-teal);
    color: var(--pr-teal);
}

/* RallyDistrict Cinematic Hero Section with Custom Background */
.hero-section {
    position: relative;
    min-height: 86vh;
    background: linear-gradient(to right, rgba(12, 13, 16, 0.96) 0%, rgba(12, 13, 16, 0.88) 42%, rgba(12, 13, 16, 0.45) 75%, rgba(12, 13, 16, 0.8) 100%), url('../images/hero-court-bg.jpg') center/cover no-repeat;
    border-bottom: 1px solid var(--pr-dark-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.hero-content-wrapper {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 1.5rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline-top {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pr-gray-concrete);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: heroEntranceSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-tagline-top span {
    color: var(--pr-teal);
    animation: subtleFloat 2s infinite ease-in-out;
}

.rally-hero-title {
    font-family: var(--font-sport);
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 0.96;
    text-transform: uppercase;
    color: var(--pr-white);
    margin-bottom: 1.75rem;
    text-shadow: 0 4px 25px rgba(0,0,0,0.85);
    font-style: italic;
    animation: heroEntranceSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.rally-hero-title span {
    color: var(--pr-teal);
    text-shadow: 0 0 30px rgba(46, 140, 136, 0.6);
}

.hero-description-block {
    max-width: 520px;
    margin-bottom: 2rem;
    animation: heroEntranceSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-description-block p {
    font-size: 0.95rem;
    color: #c5c7ce;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.hero-actions-left {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
    animation: heroEntranceSlide 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.hero-sub-bottom-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--pr-gray-med);
    text-transform: uppercase;
    animation: heroFadeIn 1s ease 0.7s both;
}

/* Bottom Stats Bar Across Hero */
.hero-bottom-strip {
    background: rgba(10, 11, 14, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid #20222a;
    width: 100%;
    padding: 1.15rem 1.5rem;
    animation: heroFadeIn 1s ease 0.8s both;
}

.hero-bottom-strip-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.hero-stats-group {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    transition: transform 0.25s ease;
}

.hero-stat-item:hover {
    transform: translateY(-2px);
}

.hero-stat-val {
    font-family: var(--font-sport);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--pr-white);
    letter-spacing: 0.04em;
}

.hero-stat-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--pr-gray-concrete);
    text-transform: uppercase;
}

.hero-strip-link {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--pr-teal);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-strip-link:hover {
    color: var(--pr-teal-light);
    transform: translateX(4px);
    text-shadow: 0 0 12px rgba(46, 140, 136, 0.6);
}

/* Animations */
@keyframes heroEntranceSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tealPulseGlow {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 0 rgba(46, 140, 136, 0.3);
    }
    50% {
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7), 0 0 24px rgba(46, 140, 136, 0.7);
    }
    100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 0 rgba(46, 140, 136, 0.3);
    }
}

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

/* RallyDistrict Booking Page Layout & Components (Minimal & Clean) */
.booking-page-container {
    max-width: 960px;
    margin: 2rem auto 5rem;
    padding: 0 1.25rem;
}

.booking-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.8vw, 2.35rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--pr-white);
    margin-bottom: 0.35rem;
}

.how-to-book-box {
    margin-bottom: 2.25rem;
}

.how-to-book-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--pr-teal);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: block;
}

.how-to-book-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.how-to-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.how-to-step-num {
    font-family: var(--font-sport);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--pr-teal);
    letter-spacing: 0.05em;
    min-width: 28px;
    line-height: 1.3;
}

.how-to-step-text {
    font-size: 0.88rem;
    color: #c5c7ce;
    line-height: 1.55;
}

/* Booking Reminder Callout */
.booking-reminder-card {
    background: #121316;
    border: 1px solid #282a33;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
}

.booking-reminder-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--pr-teal);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.booking-reminder-text {
    font-size: 0.85rem;
    color: var(--pr-gray-concrete);
    line-height: 1.5;
    margin: 0;
}

/* Planning Something Bigger Card */
.planning-bigger-card {
    background: #14161b;
    border: 1px solid rgba(46, 140, 136, 0.35);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.planning-bigger-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pr-white);
    margin-bottom: 0.35rem;
}

.planning-bigger-text {
    font-size: 0.82rem;
    color: var(--pr-gray-concrete);
    line-height: 1.45;
    max-width: 520px;
    margin: 0;
}

.btn-inquire-venue {
    background: transparent;
    border: 1.5px solid var(--pr-teal);
    color: var(--pr-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 1.25rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-inquire-venue:hover {
    background: var(--pr-teal);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(46, 140, 136, 0.4);
}

/* Week Navigator Box */
.week-navigator-box {
    background: #111215;
    border: 1px solid #23252c;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.week-nav-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.week-nav-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pr-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.week-nav-btn {
    background: #181920;
    border: 1px solid #2a2c35;
    color: var(--pr-gray-light);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.week-nav-btn:hover {
    border-color: var(--pr-teal);
    color: var(--pr-teal);
}

.week-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.week-day-cell {
    background: #15161a;
    border: 1px solid #22242b;
    border-radius: 10px;
    padding: 0.75rem 0.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--pr-white);
    transition: all 0.2s ease;
    cursor: pointer;
}

.week-day-cell:hover {
    border-color: var(--pr-teal);
    background: rgba(46, 140, 136, 0.08);
}

.week-day-cell.active {
    background: var(--pr-teal);
    border-color: var(--pr-teal);
    box-shadow: 0 4px 15px rgba(46, 140, 136, 0.4);
    transform: translateY(-2px);
}

.week-day-cell .day-name {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--pr-gray-concrete);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.week-day-cell.active .day-name {
    color: #e0f2f1;
}

.week-day-cell .day-num {
    font-family: var(--font-sport);
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
}

.week-day-cell .day-sub {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #34d399;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.week-day-cell.active .day-sub {
    color: #ffffff;
}

/* Court Schedule Matrix Card Container */
.schedule-matrix-card {
    background: #111215;
    border: 1px solid #23252c;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
}

/* Legend Row Under Matrix */
.matrix-legend-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--pr-gray-concrete);
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #1c1f26;
}

.matrix-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.legend-square {
    width: 13px;
    height: 13px;
    border-radius: 3px;
}

/* Court Booking Grid (RallyDistrict style) */
.booking-grid-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.court-grid-header {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.court-header-cell {
    text-align: center;
    background: var(--pr-dark-elevated);
    border: 1px solid var(--pr-dark-border);
    border-radius: 8px;
    padding: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--pr-white);
}

.court-header-cell.time-header {
    background: transparent;
    border: none;
    color: var(--pr-gray-concrete);
    text-align: left;
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    font-size: 0.8rem;
}

.court-grid-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.slot-row {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
}

.slot-time-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.5rem;
}

.slot-time-label {
    font-family: var(--font-sport);
    font-size: 1.15rem;
    color: var(--pr-gray-light);
    letter-spacing: 0.05em;
}

.slot-peak-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fbbf24;
}

/* Slot Interactive Tiles */
.slot-btn {
    min-height: 58px;
    border-radius: 10px;
    border: 1px solid var(--pr-dark-border);
    background: #141518;
    color: var(--pr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
    text-align: center;
}

/* Available State */
.slot-btn.available {
    background: #16171b;
    border-color: #26282f;
}

.slot-btn.available:hover {
    border-color: var(--pr-teal);
    background: rgba(46, 140, 136, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--pr-teal-glow);
}

.slot-btn.available .slot-price {
    font-family: var(--font-sport);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--pr-white);
    letter-spacing: 0.04em;
}

/* Selected State */
.slot-btn.selected {
    background: var(--pr-teal) !important;
    border-color: #5eead4 !important;
    box-shadow: 0 0 15px var(--pr-teal-glow) !important;
    transform: translateY(-2px);
}

.slot-btn.selected .slot-price {
    color: #ffffff !important;
    font-weight: 900;
}

.slot-btn.selected::after {
    content: '✓ SELECTED';
    font-size: 0.65rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.05em;
}

/* Booked / Unavailable State */
.slot-btn.booked {
    background: #2a2318;
    border: 1px solid #4a3b1d;
    cursor: not-allowed;
    opacity: 0.92;
}

.slot-btn.booked .slot-status-title {
    font-family: var(--font-sport);
    font-size: 1.15rem;
    color: #e5b869;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.slot-btn.booked .slot-status-sub {
    font-size: 0.7rem;
    color: #d1b17a;
    text-transform: capitalize;
}

/* Open Play State */
.slot-btn.open_play {
    background: #112826;
    border: 1px solid rgba(46, 140, 136, 0.5);
    cursor: not-allowed;
}

.slot-btn.open_play .slot-status-title {
    font-family: var(--font-sport);
    font-size: 1.1rem;
    color: #5eead4;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.slot-btn.open_play .slot-status-sub {
    font-size: 0.65rem;
    color: #99f6e4;
    font-weight: 700;
    text-transform: uppercase;
}

/* Elapsed State */
.slot-btn.elapsed {
    background: #121315;
    border: 1px solid #1a1b1e;
    color: #4b5563;
    cursor: not-allowed;
}

.slot-btn.elapsed .slot-status-title {
    font-family: var(--font-sport);
    font-size: 1.1rem;
    color: #4b5563;
    letter-spacing: 0.05em;
}

/* Blocked State */
.slot-btn.blocked {
    background: #1a1a1e;
    border: 1px solid #2b2b30;
    color: #6b7280;
    cursor: not-allowed;
}

/* Sticky Cart Bottom Bar */
.cart-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(16, 18, 22, 0.96);
    backdrop-filter: blur(16px);
    border-top: 2px solid var(--pr-teal);
    padding: 0.85rem 1.5rem;
    box-shadow: 0 -10px 35px rgba(0,0,0,0.8);
    transform: translateY(120%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-floating-bar.active {
    transform: translateY(0);
}

.cart-bar-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cart-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 260px;
}

.cart-top-summary {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
}

.cart-count {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--pr-gray-concrete);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.cart-total-price {
    font-family: var(--font-sport);
    font-size: 1.75rem;
    color: var(--pr-teal);
    letter-spacing: 0.03em;
    line-height: 1;
    font-weight: 900;
}

.cart-selected-tags {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.2rem;
    max-height: 60px;
    overflow-y: auto;
}

.cart-slot-badge {
    background: #181a20;
    border: 1px solid rgba(46, 140, 136, 0.45);
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    animation: heroFadeIn 0.25s ease;
}

.cart-slot-badge .badge-court {
    color: var(--pr-teal);
    font-weight: 900;
    background: rgba(46, 140, 136, 0.2);
    padding: 0.05rem 0.35rem;
    border-radius: 4px;
    font-size: 0.72rem;
}

.cart-badge-remove {
    background: transparent;
    border: none;
    color: var(--pr-gray-concrete);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 0.25rem;
    transition: color 0.15s ease;
    display: flex;
    align-items: center;
}

.cart-badge-remove:hover {
    color: #ef4444;
}

/* Rates & Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.pricing-card {
    background: var(--pr-dark-card);
    border: 1px solid var(--pr-dark-border);
    border-radius: 14px;
    padding: 1.85rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--pr-teal);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
}

.pricing-card.featured {
    border-color: var(--pr-teal);
    background: linear-gradient(180deg, rgba(46, 140, 136, 0.12) 0%, var(--pr-dark-card) 60%);
    box-shadow: 0 8px 30px rgba(46, 140, 136, 0.15);
}

.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-family: var(--font-sport);
    font-size: 3.2rem;
    color: var(--pr-white);
    line-height: 1;
    margin: 1.25rem 0 0.65rem;
    letter-spacing: 0.02em;
}

.pricing-amount span {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--pr-gray-concrete);
    font-weight: 500;
    margin-left: 0.25rem;
}

.pricing-features-list {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--pr-gray-light);
}

.pricing-features-list li::before {
    content: '—';
    color: var(--pr-teal);
    font-weight: bold;
}

/* RallyDistrict-Inspired Location & Footer Section */
.site-footer-wrapper {
    background: #090a0d;
    border-top: 1px solid #1a1c22;
    margin-top: 6rem;
    padding-top: 5rem;
}

.location-cta-grid {
    max-width: 1280px;
    margin: 0 auto 3.5rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: start;
}

.location-info-block .loc-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--pr-teal);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.location-info-block .loc-heading {
    font-family: var(--font-sport);
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--pr-white);
    margin-bottom: 1.25rem;
}

.location-info-block .loc-subhead {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pr-white);
    margin-bottom: 0.5rem;
}

.location-info-block .loc-lead {
    font-size: 0.88rem;
    color: var(--pr-gray-concrete);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 540px;
}

.loc-detail-group {
    border-top: 1px solid #1c1f26;
    padding: 1rem 0;
}

.loc-detail-group:last-of-type {
    border-bottom: 1px solid #1c1f26;
    margin-bottom: 1.5rem;
}

.loc-detail-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--pr-teal);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.loc-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pr-white);
}

.social-icons-row {
    display: flex;
    gap: 0.65rem;
    margin-top: 0.5rem;
}

.social-icon-box {
    width: 38px;
    height: 38px;
    border: 1px solid #2a2d36;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pr-gray-light);
    font-size: 0.9rem;
    text-decoration: none;
    background: #121317;
    transition: all 0.2s ease;
}

.social-icon-box:hover {
    border-color: var(--pr-teal);
    color: var(--pr-teal);
    transform: translateY(-2px);
    background: #181920;
}

/* Rally CTA Box (Right Side) */
.rally-cta-card {
    background: #111216;
    border: 1px solid #282a33;
    border-top: 3px solid var(--pr-teal);
    border-radius: 12px;
    padding: 2.75rem 2.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
}

.rally-cta-line {
    width: 32px;
    height: 3px;
    background: var(--pr-teal);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.rally-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--pr-white);
    margin-bottom: 1rem;
}

.rally-cta-desc {
    font-size: 0.88rem;
    color: var(--pr-gray-concrete);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-rally-teal {
    background: var(--pr-teal);
    color: #ffffff;
    font-family: var(--font-sport);
    font-size: 1.15rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 900;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid var(--pr-teal);
    box-shadow: 0 6px 20px rgba(46, 140, 136, 0.35);
    transition: all 0.25s ease;
}

.btn-rally-teal:hover {
    background: var(--pr-teal-light);
    border-color: var(--pr-teal-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(46, 140, 136, 0.5);
    color: #ffffff;
}

.rally-cta-subtext {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #787a82;
    text-align: center;
    margin-top: 1rem;
    text-transform: uppercase;
}

/* Map Section */
.footer-map-container {
    max-width: 1280px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #282a33;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    background: #141519;
}

.map-overlay-card {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(18, 20, 25, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(46, 140, 136, 0.4);
    border-radius: 10px;
    padding: 0.85rem 1.15rem;
    max-width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.85);
    z-index: 10;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Bottom Footer Bar */
.footer-bottom-bar {
    background: #060708;
    border-top: 1px solid #14161a;
    padding: 2.25rem 1.5rem;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-nav-links a {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pr-gray-concrete);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-links a:hover {
    color: var(--pr-teal);
}

@media (max-width: 900px) {
    .location-cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .map-embed-wrapper {
        height: 300px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0.55rem 1rem;
    }
    .brand-logo-img {
        height: 36px;
    }
    .brand-name {
        font-size: 1.05rem;
        letter-spacing: 0.03em;
    }
    .brand-tagline {
        font-size: 0.52rem;
        letter-spacing: 0.04em;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-section {
        padding: 3rem 1rem 2.25rem;
    }
    .court-grid-header {
        grid-template-columns: 85px 1fr 1fr;
        gap: 0.35rem;
    }
    .slot-row {
        grid-template-columns: 85px 1fr 1fr;
        gap: 0.35rem;
    }
    .slot-time-label {
        font-size: 0.82rem;
    }
    .slot-btn {
        min-height: 48px;
        padding: 0.3rem 0.35rem;
    }
    .slot-btn.available .slot-price {
        font-size: 1rem;
    }
    .slot-btn.open-play .open-play-title {
        font-size: 0.68rem;
    }
    .slot-btn.open-play .open-play-cat {
        font-size: 0.62rem;
    }
    .pricing-amount {
        font-size: 2.6rem;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand-tagline {
        display: none;
    }
    .brand-name {
        font-size: 0.98rem;
    }
    .brand-logo-img {
        height: 32px;
    }
    .hero-section {
        padding: 2.5rem 0.75rem 2rem;
    }
    .court-grid-header {
        grid-template-columns: 75px 1fr 1fr;
        gap: 0.25rem;
    }
    .slot-row {
        grid-template-columns: 75px 1fr 1fr;
        gap: 0.25rem;
    }
    .slot-time-label {
        font-size: 0.75rem;
    }
    .slot-btn {
        min-height: 44px;
        padding: 0.25rem 0.25rem;
    }
    .slot-btn.available .slot-price {
        font-size: 0.9rem;
    }
}

/* Floating Chatbot / Venue Rental Widget */
.floating-chatbot-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--pr-teal);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(46, 140, 136, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    animation: tealPulseGlow 3s infinite ease-in-out;
}

.floating-chatbot-btn:hover {
    transform: scale(1.08) translateY(-2px);
    background: var(--pr-teal-light);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7), 0 0 28px rgba(46, 140, 136, 0.85);
}

.floating-chatbot-btn svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.chatbot-window {
    position: fixed;
    bottom: 92px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 32px);
    max-height: 600px;
    background: #141519;
    border: 1px solid var(--pr-dark-border);
    border-top: 3px solid var(--pr-teal);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    z-index: 999;
    overflow: hidden;
    animation: chatScaleIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-window.show {
    display: flex;
}

@keyframes chatScaleIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(15px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chatbot-header {
    background: #181a1f;
    border-bottom: 1px solid var(--pr-dark-border);
    padding: 0.9rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-body {
    padding: 1.15rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 480px;
}

.chatbot-msg-bubble {
    background: #1e2026;
    border: 1px solid #2a2d36;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--pr-white);
}

.chatbot-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #17181d;
    border: 1px solid #262930;
    border-radius: 12px;
    padding: 1rem;
}

.chatbot-form .form-group {
    margin-bottom: 0;
}

.chatbot-form .form-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pr-teal);
    margin-bottom: 0.25rem;
}

.chatbot-form .form-control {
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
    background: #0f1013;
    border: 1px solid #2a2c33;
}


