/* ==================================================
   CSS VARIABLES & ROOT SETUP
================================================== */
:root {
    --bg-main: #050505;
    --bg-secondary: #0E0E0E;
    --card-bg: #141414;
    --primary: #FF6A00;
    --primary-hover: #FF8A00;
    --white: #FFFFFF;
    --gray: #A8A8A8;
    --border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

    color-scheme: dark;
}

/* ==================================================
   RESET & GLOBAL
================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
}

html {
    scroll-behavior: initial;
    /* Handled by Lenis */
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    line-height: 1.1;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

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

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.w-100 {
    width: 100%;
}

.text-gray {
    color: var(--gray);
}



/* ==================================================
   EFFECTS & UTILITIES
================================================== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9998;
}

.orange-glow-bg {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
}

.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 106, 0, 0.1);
    transform: translateY(-5px);
}

.section-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    border: none;
    outline: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(255, 106, 0, 0.1);
}

/* ==================================================
   HEADER
================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.2rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    display: inline-block;
}

.logo span {
    color: var(--primary);
}

@keyframes logoPulseGlow {
    0% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.4)); 
    }
    50% { 
        transform: scale(1.05); 
        filter: drop-shadow(0 0 15px rgba(255, 106, 0, 0.9)); 
    }
    100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.4)); 
    }
}

.logo img, .logo a {
    animation: logoPulseGlow 3s infinite ease-in-out;
}

.logo img {
    display: block;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray);
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
}

/* ==================================================
   SECTION 1: HERO
================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.1) 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-size: 7rem;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--primary);
}

.text-reveal {
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.football-3d-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    perspective: 1000px;
}

.football-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 5px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* ==================================================
   SECTION 2: LIVE BOOKING
================================================== */
.booking-section {
    background: var(--bg-secondary);
}

.booking-widget {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.5rem;
}

.date-picker {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 8px;
}

.date-picker input {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    outline: none;
}

.legend {
    display: flex;
    gap: 1.5rem;
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-green {
    background: #00C853;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

.dot-orange {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
}

.dot-red {
    background: #D50000;
    box-shadow: 0 0 10px rgba(213, 0, 0, 0.5);
}

.slots-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.slots-grid::-webkit-scrollbar {
    height: 6px;
}

.slots-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.slots-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.slot {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 160px;
    scroll-snap-align: start;
}

.slot .time {
    font-size: 0.9rem;
    font-weight: 600;
}

.slot .price {
    font-size: 0.8rem;
    color: var(--gray);
}

.slot.available {
    border-color: rgba(0, 200, 83, 0.3);
}

.slot.available:hover {
    background: rgba(0, 200, 83, 0.1);
    border-color: #00C853;
    transform: scale(1.05);
}

.slot.limited {
    border-color: rgba(255, 106, 0, 0.3);
}

.slot.limited:hover {
    background: rgba(255, 106, 0, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
}

.slot.booked {
    border-color: rgba(213, 0, 0, 0.2);
    opacity: 0.5;
    pointer-events: none;
}

.slot.booked .status-text {
    color: #D50000;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================================================
   SECTION 3: ABOUT
================================================== */
.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    flex: 0.5;
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.about-image {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--card-bg);
}

.stat-number {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.about-content {
    flex: 1;
}

.section-desc {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.features-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==================================================
   SECTION 4: FACILITIES
================================================== */
.facilities-section {
    background: var(--bg-secondary);
}

.facilities-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
    .facilities-grid {
        justify-content: center;
        gap: 4rem; /* More spacing on desktop */
    }
}

.facilities-grid::-webkit-scrollbar {
    height: 6px;
}

.facilities-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.facilities-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.facility-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 0 0 250px;
    scroll-snap-align: start;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0.5);
    z-index: 0;
}

.facility-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.facility-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.1);
}

.facility-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
}

.facility-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.facility-card p {
    color: var(--gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ==================================================
   SECTION 5: WHY CHOOSE US
================================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
}

.timeline-content {
    width: 45%;
    padding: 2rem;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.timeline-content p {
    color: var(--gray);
}

/* ==================================================
   SECTION 6: PRICING
================================================== */
.pricing-section {
    background: var(--bg-secondary);
}

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

.pricing-card {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.1);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header h3 {
    font-size: 2rem;
}

.pricing-header p {
    color: var(--gray);
    margin-top: 0.5rem;
}

.pricing-price {
    margin: 2rem 0;
}

.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--primary);
    line-height: 1;
}

.pricing-price .period {
    color: var(--gray);
}

/* ==================================================
   SECTION 7: 360 DEGREE
================================================== */
.vr-banner {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 20px;
    height: 500px;
}

.vr-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.vr-overlay h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.vr-overlay p {
    font-size: 1.2rem;
    color: #ddd;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* ==================================================
   SECTION 8: GALLERY
================================================== */
.gallery-section {
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

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

.gallery-item {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 106, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--white);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (min-width: 769px) {
    .gallery-item.duplicate {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        overflow: hidden;
    }

    .gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .masonry-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        width: max-content;
        animation: galleryMarquee 20s linear infinite;
    }

    .masonry-grid:hover,
    .masonry-grid:active {
        animation-play-state: paused;
    }

    .gallery-item {
        width: 260px;
        height: 220px;
        flex-shrink: 0;
    }
}

@keyframes galleryMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

/* ==================================================
   SECTION 9: TOURNAMENTS
================================================== */
.tournament-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.tourney-image {
    flex: 1;
    height: 100%;
    min-height: 400px;
}

.tourney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourney-content {
    flex: 1.5;
    padding: 3rem;
    position: relative;
}

.tourney-badge {
    display: inline-block;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tourney-content h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tourney-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.tourney-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tourney-details .detail {
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tourney-details i {
    color: var(--primary);
}

.countdown {
    display: flex;
    gap: 1rem;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
    border: 1px solid var(--border);
}

.time-box .num {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
}

.time-box .label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
}

/* ==================================================
   SECTION 10: MEMBERSHIP
================================================== */
.membership-section {
    background: var(--bg-secondary);
}

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

.member-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.member-card .desc {
    color: var(--gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits li i {
    color: #00C853;
}

.benefits li.disabled {
    color: #555;
}

.benefits li.disabled i {
    color: #D50000;
}

.member-card.gold {
    border-color: var(--primary);
    background: linear-gradient(145deg, #1a1410 0%, #141414 100%);
}

/* ==================================================
   SECTION 11: REVIEWS
================================================== */
.reviews-section {
    position: relative;
    background: var(--bg-main);
}

.reviews-slider {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
}

/* Gradient masks for smooth fade on left and right */
.reviews-slider::before,
.reviews-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main) 0%, transparent 100%);
}

.reviews-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main) 0%, transparent 100%);
}

.review-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
}

.review-track:hover {
    animation-play-state: paused;
}

.review-card {
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid var(--border);
    transition: var(--transition);
    border-radius: 16px;
    overflow: hidden;
}

.review-card::before {
    content: '\f10d';
    /* FontAwesome quote-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(255, 106, 0, 0.03);
    z-index: 0;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 106, 0, 0.1);
}

.review-card:hover::before {
    color: rgba(255, 106, 0, 0.08);
    transform: scale(1.1) rotate(-5deg);
}

.stars {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 5px;
}

.review-text {
    font-style: italic;
    color: #e0e0e0;
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    padding: 2px;
}

.reviewer h4 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.reviewer span {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* ==================================================
   SECTION 12: FAQ
================================================== */
.faq-section {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    padding: 0;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: var(--transition);
}

.accordion-header h3 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
}

.accordion-header i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body p {
    padding-bottom: 1.5rem;
    color: var(--gray);
}

.accordion-item.active {
    border-color: var(--primary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* ==================================================
   SECTION 13: CONTACT
================================================== */
.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-form-wrapper {
    flex: 1.5;
}

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

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 15px 20px;
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    resize: none;
    color-scheme: dark;
}

.form-row {
    display: flex;
    gap: 1rem;
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.input-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition);
    background: var(--card-bg);
    padding: 0 5px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary);
}

.input-group input:focus~label,
.input-group input:valid~label,
.input-group textarea:focus~label,
.input-group textarea:valid~label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary);
}

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

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.info-item h4 {
    font-size: 1.2rem;
    font-family: var(--font-body);
    margin-bottom: 5px;
}

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

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-links a.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

/* ==================================================
   FOOTER
================================================== */
.footer {
    background: #000;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border);
    position: relative;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col:first-child {
    flex: 2;
}

.footer-col:last-child {
    flex: 1.5;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gray);
    transition: color 0.3s;
}

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

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px 0 0 8px;
    color: var(--white);
    outline: none;
}

.newsletter-form button {
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray);
    font-size: 0.9rem;
}



/* ==================================================
   IMAGE MODAL
================================================== */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.image-modal.active {
    opacity: 1;
    pointer-events: all;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(255, 106, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-modal.active img {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ==================================================
   BOOKING MODAL
================================================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.booking-modal.active {
    opacity: 1;
    pointer-events: all;
}

.booking-modal-content {
    position: relative;
    width: 92%;
    max-width: 420px;
    padding: 1.4rem 1.5rem !important;
    max-height: 88vh;
    overflow-y: auto;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0);
}

/* ==================================================
   VR MODAL
================================================== */
.vr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.vr-modal.active {
    opacity: 1;
    pointer-events: all;
}

.vr-modal-content {
    position: relative;
    width: 90%;
    height: 80%;
    max-width: 1200px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 50px rgba(255, 106, 0, 0.2);
    border: 1px solid var(--border);
}

.vr-modal.active .vr-modal-content {
    transform: scale(1);
}

/* ==================================================
   MEDIA QUERIES (RESPONSIVENESS)
================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }

    .about-container,
    .contact-container,
    .tournament-card {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .nav {
        display: none !important;
        /* Hide standard nav on mobile */
    }

    .mobile-menu-toggle {
        display: none !important;
        /* Hide hamburger menu */
    }

    .header-action a {
        display: none;
        /* Hide top 'Book Now' button to avoid clutter */
    }

    .header-action {
        width: 100%;
        justify-content: flex-end;
    }

    .logo a img {
        height: 40px !important;
    }

    /* Padding for bottom nav */
    main {
        padding-bottom: 70px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        margin-top: 80px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 4rem;
    }

    .football-3d-wrapper {
        width: 300px;
        height: 300px;
        margin-top: 3rem;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }

    .timeline-icon {
        left: 30px;
    }

    .timeline-content {
        width: 100%;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .tourney-content {
        padding: 1.5rem;
    }

    .countdown {
        flex-wrap: wrap;
    }
}

/* ==================================================
   MOBILE BOTTOM NAVIGATION (APP-LIKE)
================================================== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(14, 14, 14, 0.95);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--border);
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        padding-bottom: env(safe-area-inset-bottom, 10px);
        z-index: 1000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }

    body.light-theme .mobile-bottom-nav {
        background: rgba(255, 255, 255, 0.95);
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: var(--gray);
        font-size: 0.75rem;
        transition: var(--transition);
        text-decoration: none;
    }

    .bottom-nav-item i {
        font-size: 1.3rem;
    }

    .bottom-nav-item.active,
    .bottom-nav-item:hover {
        color: var(--primary);
    }

    .center-nav-item {
        position: relative;
        top: -20px;
    }

    .center-nav-item .center-btn {
        width: 55px;
        height: 55px;
        background: var(--primary);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.5);
        margin-bottom: 5px;
        transition: var(--transition);
    }

    .center-nav-item.active .center-btn,
    .center-nav-item:hover .center-btn {
        background: var(--white);
        color: var(--primary);
    }
}

/* ==================================================
   FLOATING WHATSAPP
================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 90px;
        /* Above bottom nav */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .review-card {
        width: 300px;
        padding: 1.5rem;
    }
}

/* ==================================================
   LIGHT THEME OVERRIDES
================================================== */
body.light-theme {
    --bg-main: #F4F6F8;
    --bg-secondary: #FFFFFF;
    --card-bg: rgba(255, 255, 255, 0.85);
    --primary: #FF6A00;
    --primary-hover: #E55A00;
    --white: #111111;
    --gray: #444444;
    --border: rgba(0, 0, 0, 0.1);
    color-scheme: light;
}

body.light-theme .hero-overlay {
    background: linear-gradient(to right, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.2) 100%);
}

body.light-theme .hero-title,
body.light-theme .hero-subtitle,
body.light-theme .scroll-indicator {
    color: #FFFFFF;
}

body.light-theme .scroll-indicator .mouse {
    border-color: #FFFFFF;
}

body.light-theme .header {
    background: rgba(244, 246, 248, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

body.light-theme .logo img {
    filter: invert(1) hue-rotate(180deg);
}

body.light-theme .noise-overlay {
    opacity: 0.1;
    filter: invert(1);
}

body.light-theme .glass-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .slot {
    background: #FFFFFF;
}

body.light-theme .slot.available {
    background: #E8F5E9;
    border-color: #A5D6A7;
}

body.light-theme .slot.limited {
    background: #FFF3E0;
    border-color: #FFCC80;
}

body.light-theme .slot.booked {
    background: #FFEBEE;
    border-color: #EF9A9A;
}

body.light-theme .slot:hover {
    color: inherit;
}

body.light-theme .timeline-line {
    background: var(--gray);
}

body.light-theme .member-card.gold {
    background: linear-gradient(145deg, #FFF3E0 0%, #FFFFFF 100%);
}

body.light-theme .review-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #F5F5F5 100%);
}

body.light-theme .review-text {
    color: #444444;
}

body.light-theme .footer {
    background: var(--bg-secondary);
}

body.light-theme .newsletter-form input {
    background: var(--bg-main);
    color: var(--white);
    border-color: var(--border);
}

body.light-theme .footer-bottom {
    border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
    body.light-theme .nav {
        background: rgba(244, 246, 248, 0.95);
    }
}

/* ==================================================
   THEME TOGGLE BUTTON STYLES
================================================== */
#theme-toggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
    font-size: 1.2rem;
}

#theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

body.light-theme #theme-toggle {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
}

body.light-theme #theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1) !important;
}
@media (max-width: 768px) {
    .booking-widget.glass-card { padding: 1rem !important; }
    .booking-controls { flex-direction: column !important; align-items: stretch !important; gap: 15px !important; margin-bottom: 1rem; padding-bottom: 1rem; }
    .sport-filters { justify-content: center; width: 100%; gap: 5px !important; }
    .sport-btn { padding: 0.4rem 0.8rem !important; font-size: 0.8rem !important; }
    .date-picker { justify-content: center; }
    .legend { justify-content: center; gap: 8px !important; }
    .legend-item { font-size: 0.75rem !important; }
    .slots-grid { gap: 10px !important; }
    .slot { padding: 0.8rem 0.5rem !important; flex: 0 0 130px !important; }
    .slot .time { font-size: 0.8rem !important; }
    .slot .status-text { font-size: 0.75rem !important; }
    .slot .game-detail { font-size: 0.75rem !important; }
    .booking-widget .luxury-form > div { flex-direction: column !important; gap: 1rem !important; }
}

.contact-link, .phone-link {
    transition: var(--transition);
}
.contact-link:hover, .phone-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}
.phone-link {
    color: inherit;
    text-decoration: none;
}

/* ==================================================
   GOOGLE REVIEWS SECTION & NON-DISRUPTIVE ANIMATION
================================================== */
.google-reviews-section {
    background: var(--bg-secondary);
    overflow: hidden;
}
.reviews-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}
.reviews-ticker-wrapper::before,
.reviews-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}
.reviews-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}
.reviews-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}
.reviews-slider-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeReviews 30s linear infinite;
    will-change: transform;
}
.reviews-slider-track:hover {
    animation-play-state: paused;
}
.review-card {
    flex: 0 0 340px;
    width: 340px;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem 1.5rem;
    position: relative;
    z-index: 1;
}
.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.25);
    z-index: 2;
}
.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #FF4500);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
    flex-shrink: 0;
}
.google-star {
    color: #FFD700;
    font-size: 0.95rem;
}

.review-body-text {
    color: var(--white);
    opacity: 0.9;
}

@keyframes marqueeReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-340px * 4 - 1.5rem * 4));
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 290px;
        width: 290px;
    }
    @keyframes marqueeReviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-290px * 4 - 1.5rem * 4));
        }
    }
}

/* ==================================================
   LIGHT MODE OVERRIDES FOR GOOGLE REVIEWS
================================================== */
body.light-theme .google-reviews-section {
    background: var(--bg-main) !important;
}

body.light-theme .google-badge-pill {
    background: #FFFFFF !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .review-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .review-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 14px 35px rgba(255, 106, 0, 0.2) !important;
}

body.light-theme .review-card h4 {
    color: #111111 !important;
}

body.light-theme .review-body-text {
    color: #333333 !important;
    opacity: 1 !important;
}

body.light-theme .reviews-ticker-wrapper::before {
    background: linear-gradient(to right, var(--bg-main), transparent) !important;
}

body.light-theme .reviews-ticker-wrapper::after {
    background: linear-gradient(to left, var(--bg-main), transparent) !important;
}

body.light-theme .review-cta-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06) !important;
}

body.light-theme .review-cta-card h3 {
    color: #111111 !important;
}

body.light-theme .thankyou-modal-content {
    background: #FFFFFF !important;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

body.light-theme #thankYouDetails {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* ==================================================
   ENHANCED SLOT TIMINGS & SELECTION STYLES
================================================== */
.time-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

.time-filter-btn {
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-filter-btn:hover {
    color: var(--white);
    border-color: var(--primary);
    background: rgba(255, 106, 0, 0.1);
}

.time-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.4);
}

.slot {
    cursor: pointer;
    position: relative;
    user-select: none;
}

.slot.selected {
    background: rgba(255, 106, 0, 0.18) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.5) !important;
    transform: scale(1.05) translateY(-3px) !important;
}

.slot.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 0.75rem;
    color: var(--primary);
    background: rgba(255, 106, 0, 0.2);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-slot-banner {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.15), rgba(255, 106, 0, 0.05));
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    animation: fadeInBanner 0.4s ease-out;
}

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

@media (max-width: 768px) {
    .time-filter-btn {
        padding: 5px 10px;
        font-size: 0.78rem;
    }
    .selected-slot-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Time Selectors (Hours, Minutes, AM/PM) */
.time-adjuster-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.2rem;
}

.time-select-pill {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 10px 6px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-border-box;
}

.time-select-pill:focus, .time-select-pill:hover {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.3);
}

body.light-theme .time-adjuster-group {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
}

body.light-theme .time-select-pill {
    background: #FFFFFF !important;
    color: #111111 !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
}




