/* =====================================================
   BARA BADMINTON — Website (Public) CSS
   ===================================================== */

/* ===== NAVBAR ===== */
.bara-navbar {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--bara-red);
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}
.bara-navbar .navbar-brand img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.bara-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 24px 16px !important;
  position: relative;
  transition: var(--transition);
}
.bara-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--bara-red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.bara-navbar .nav-link:hover,
.bara-navbar .nav-link.active {
  color: white !important;
}
.bara-navbar .nav-link:hover::after,
.bara-navbar .nav-link.active::after { transform: scaleX(1); }
.bara-navbar .navbar-toggler {
  border: 2px solid rgba(255,255,255,0.3);
  padding: 6px 10px;
}
.bara-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.bara-navbar .btn-book-nav {
  background: var(--bara-red);
  color: white !important;
  border-radius: var(--radius-sm);
  padding: 10px 20px !important;
  margin-left: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.bara-navbar .btn-book-nav:hover {
  background: var(--bara-red-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}
.bara-navbar .btn-book-nav::after { display: none; }

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  background: var(--bara-black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 60px,
      rgba(237,28,36,0.04) 60px,
      rgba(237,28,36,0.04) 62px
    );
}
.hero-red-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--bara-red) 0%, #8b0000 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.9;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237,28,36,0.15);
  border: 1px solid rgba(237,28,36,0.4);
  color: var(--bara-red);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hero-title .accent-red { color: var(--bara-red); }
.hero-title .accent-outline {
  -webkit-text-stroke: 2px white;
  color: transparent;
}
.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 520px;
  margin: 24px 0 40px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero-stat-num span { color: var(--bara-red); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== COURT IMAGE MOSAIC ===== */
.hero-visual {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}
.court-badge {
  background: var(--bara-red);
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 0.06em;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--bara-red);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.4; }
}

/* ===== SECTION: PAKET ===== */
.section-paket { padding: 100px 0; background: white; }
.paket-card {
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: white;
}
.paket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--bara-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.paket-card:hover::before,
.paket-card.selected::before,
.paket-card.featured::before { transform: scaleX(1); }
.paket-card:hover,
.paket-card.selected {
  border-color: var(--bara-red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.paket-card.featured {
  border-color: var(--bara-red);
  background: var(--bara-black);
  color: white;
}
.paket-card .paket-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  background: rgba(237,28,36,0.1);
}
.paket-card.featured .paket-icon { background: rgba(237,28,36,0.2); }
.paket-card .paket-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.paket-card .paket-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bara-red);
  margin: 16px 0;
}
.paket-card .paket-desc { font-size: 14px; color: var(--bara-gray); line-height: 1.7; }
.paket-card.featured .paket-desc { color: rgba(255,255,255,0.6); }

/* Responsive: Paket Cards */
@media (max-width: 768px) {
  .paket-card {
    padding: 28px 20px;
  }
  
  .paket-card .paket-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .paket-card .paket-title {
    font-size: 20px;
  }
  
  .paket-card .paket-desc {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .paket-card {
    padding: 24px 16px;
  }
  
  .paket-card .paket-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .paket-card .paket-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .paket-card .paket-price {
    font-size: 18px;
    margin: 12px 0;
  }
  
  .paket-card .paket-desc {
    font-size: 12px;
  }
}

/* ===== Lapangan Card (same as paket-card) ===== */
.lapangan-card {
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: white;
}
.lapangan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--bara-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.lapangan-card:hover::before,
.lapangan-card.selected::before,
.lapangan-card.active-selection::before { transform: scaleX(1); }
.lapangan-card:hover,
.lapangan-card.selected,
.lapangan-card.active-selection {
  border-color: var(--bara-red);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.lapangan-card.active-selection {
  background: rgba(237, 28, 36, 0.05);
  border-width: 3px;
}

/* ===== SECTION: HARGA ===== */
.section-harga { padding: 100px 0; background: var(--bara-black); }
.harga-table-wrap {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.harga-header {
  background: var(--bara-red);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.harga-header h3 {
  color: white;
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
}
.harga-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid #222;
  transition: var(--transition);
}
.harga-row:last-child { border: none; }
.harga-row:hover { background: rgba(237,28,36,0.08); }
.harga-slot { font-size: 16px; color: rgba(255,255,255,0.8); }
.harga-time { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.harga-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--bara-red);
}
.harga-price small { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.4); }

/* ===== SECTION: LAPANGAN ===== */
.section-lapangan { padding: 100px 0; background: var(--bara-gray-bg); }
.lapangan-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: white;
  display: flex;
  flex-direction: column;
}
.lapangan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.lapangan-img-wrap {
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  position: relative;
  background: var(--bara-black);
  cursor: pointer;
}
.lapangan-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.lapangan-card:hover .lapangan-img-wrap::after {
  opacity: 1;
}
.lapangan-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.lapangan-card:hover .lapangan-img-wrap img { transform: scale(1.1); }
.lapangan-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bara-red);
  color: white;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 2;
}
.lapangan-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: rgba(255,255,255,0.3);
}
.lapangan-placeholder .court-icon { font-size: 56px; }
.lapangan-info { 
  padding: 28px; 
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lapangan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--bara-black);
}
.lapangan-desc { 
  font-size: 14px; 
  color: var(--bara-gray); 
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* ===== LIGHTBOX GALLERY ===== */
#photoLightbox {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#photoLightbox button {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
#photoLightbox button:hover {
  background: rgba(255,255,255,0.3) !important;
  border-color: var(--bara-red) !important;
}
#photoLightbox #prevPhoto:hover,
#photoLightbox #nextPhoto:hover {
  transform: translateY(-50%) scale(1.1) !important;
}
#photoLightbox > button:first-child:hover {
  transform: scale(1.1) !important;
}
#photoLightbox #lightboxImg {
  animation: zoomIn 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}
#photoLightbox #photoCounter,
#photoLightbox #photoCaption {
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* Keyboard navigation hint */
#photoLightbox::before {
  content: 'Gunakan tombol ← → atau klik tombol navigasi';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  animation: fadeInOut 3s ease;
  pointer-events: none;
}
@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  10%, 90% { opacity: 1; }
}

/* ===== SECTION: FASILITAS ===== */
.section-fasilitas { padding: 100px 0; background: white; }
.fasilitas-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.fasilitas-item:hover { background: var(--bara-gray-bg); }
.fasilitas-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(237,28,36,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: var(--bara-red);
}
.fasilitas-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.fasilitas-desc { font-size: 13px; color: var(--bara-gray); }

/* ===== SECTION: TURNAMEN ===== */
.section-turnamen { padding: 100px 0; background: var(--bara-red); position: relative; overflow: hidden; }
.section-turnamen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 42px
  );
}
.turnamen-card {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.turnamen-card:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-6px);
}
.turnamen-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.turnamen-price sub { font-size: 18px; font-weight: 400; vertical-align: top; margin-top: 12px; }
.turnamen-type { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: white; margin: 12px 0 4px; text-transform: uppercase; }
.turnamen-time { color: rgba(255,255,255,0.7); font-size: 14px; }
.turnamen-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.turnamen-feature:last-child { border: none; }
.turnamen-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ===== FOOTER ===== */
.bara-footer {
  background: var(--bara-black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  border-top: 3px solid var(--bara-red);
}
.footer-brand img { height: 44px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-top: 16px; max-width: 300px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bara-red);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--bara-red); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-contact-item .contact-icon { color: var(--bara-red); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a.hover-text-bara:hover { color: var(--bara-red) !important; }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ===== BOOKING PAGE ===== */
.booking-hero {
  background: var(--bara-black);
  padding: 120px 0 60px;
  border-bottom: 3px solid var(--bara-red);
}
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
}
.step-item::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #333;
  z-index: 0;
}
.step-item:last-child::after { display: none; }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-item.active .step-num {
  background: var(--bara-red);
  border-color: var(--bara-red);
  color: white;
  box-shadow: var(--shadow-red);
}
.step-item.completed .step-num {
  background: #16a34a;
  border-color: #16a34a;
  color: white;
}
.step-item.active::after,
.step-item.completed::after { background: var(--bara-red); }
.step-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); font-weight: 600; }
.step-item.active .step-label { color: var(--bara-red); }

/* ===== CALENDAR/SLOT ===== */
.slot-calendar { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.slot-cal-header {
  background: var(--bara-black);
  color: white;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slot-cal-header h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
.slot-cal-nav {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slot-cal-nav:hover { background: var(--bara-red); border-color: var(--bara-red); }
.days-header { display: grid; grid-template-columns: repeat(7, 1fr); background: #f8f8f8; }
.day-header-cell { text-align: center; padding: 12px 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bara-gray); }
.days-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 16px; gap: 6px; }
.day-cell {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  min-width: 36px;
  max-width: 48px;
}
.day-cell.other-month { color: #ddd; cursor: default; }
.day-cell.today { background: rgba(237,28,36,0.1); color: var(--bara-red); font-weight: 800; }
.day-cell.selected { background: var(--bara-red); color: white; }
.day-cell:not(.other-month):not(.past):hover { background: var(--bara-gray-bg); }
.day-cell.has-booking::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bara-red);
}
.day-cell.selected::after { background: white; }
.day-cell.past { opacity: 0.35; cursor: not-allowed; }
.day-cell.fully-booked { background: #fef2f2; color: #999; cursor: not-allowed; }

/* Time slots */
.time-slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
.time-slot {
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: white;
}
.time-slot:hover:not(.booked):not(.past) { border-color: var(--bara-red); color: var(--bara-red); }
.time-slot.selected { border-color: var(--bara-red); background: var(--bara-red); color: white; }
.time-slot.booked { background: #f5f5f5; color: #bbb; cursor: not-allowed; border-style: dashed; }
.time-slot.past { opacity: 0.5; cursor: not-allowed; }
.time-slot .ts-time { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.time-slot .ts-price { font-size: 12px; color: inherit; margin-top: 4px; opacity: 0.8; }

/* Schedule legend + navigator */
.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
}
.legend-item { 
  display: flex; 
  align-items: center; 
  gap: 6px;
  font-weight: 600;
  color: var(--bara-gray);
}
.legend-dot { 
  width: 14px; 
  height: 14px; 
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.legend-available { background: #ffffff; border: 2px solid #d9e2ea; }
.legend-unavailable { background: #eef1f4; border: 2px solid #d4dbe1; }
.legend-booked { background: #dff3e8; border: 2px solid #b8dec8; }
.legend-selected { background: #dbe8ff; border: 2px solid #97b7ef; }

@media (max-width: 576px) {
  .schedule-legend {
    gap: 8px;
    font-size: 11px;
    padding: 10px 12px;
  }
  
  .legend-dot {
    width: 12px;
    height: 12px;
  }
}

.selected-schedule { margin-top: 8px; }
.schedule-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 14px;
}
.schedule-nav-btn {
  background: var(--bara-red);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
  flex-shrink: 0;
}
.schedule-nav-btn:hover { 
  background: var(--bara-red-dark);
  transform: scale(1.05);
}
.schedule-nav-btn:disabled { 
  opacity: 0.4;
  cursor: not-allowed;
  background: #999;
  box-shadow: none;
  transform: none;
}
.schedule-range {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--bara-black);
  letter-spacing: 0.02em;
}

@media (max-width: 576px) {
  .schedule-nav {
    gap: 8px;
    margin: 8px 0 12px;
  }
  
  .schedule-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }
  
  .schedule-range {
    font-size: 13px;
  }
}
.schedule-wrapper { overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.schedule-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  gap: 12px;
  min-width: max-content;
  padding: 4px 0;
}
.schedule-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.schedule-card:hover {
  border-color: var(--bara-red);
  box-shadow: 0 4px 12px rgba(237,28,36,0.1);
}
.schedule-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--bara-black);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.schedule-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

/* Responsive schedule */
@media (max-width: 768px) {
  .schedule-track {
    grid-auto-columns: minmax(180px, 1fr);
    gap: 10px;
  }
  
  .schedule-card {
    padding: 12px;
  }
  
  .schedule-date {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .schedule-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }
}
.slot {
  border: 1px solid #dbe2e8;
  border-radius: 8px;
  padding: 8px 6px;
  font-size: 12px;
  text-align: center;
  background: #f8fafb;
  user-select: none;
  transition: all 0.2s ease;
  font-weight: 700;
  font-family: var(--font-display);
}
.slot-available {
  background: #ffffff;
  border-color: #d9e2ea;
  color: #31424f;
  cursor: pointer;
}
.slot-available:hover {
  background: #eef4f7;
  border-color: #b7c7d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(74, 97, 117, 0.12);
}

@media (max-width: 576px) {
  .slot {
    padding: 6px 4px;
    font-size: 11px;
    border-radius: 6px;
  }
  
  .slot-available:hover {
    transform: scale(1.02);
  }
}

.slot-unavailable {
  background: #eef1f4;
  border-color: #d4dbe1;
  color: #8b97a3;
  cursor: not-allowed;
  position: relative;
}
.slot-unavailable::after {
  content: 'x';
  position: absolute;
  top: 2px;
  right: 6px;
  font-size: 12px;
  opacity: 0.7;
}
.slot-booked {
  background: #dff3e8;
  border-color: #b8dec8;
  color: #2f6a47;
  cursor: not-allowed;
  position: relative;
}
.slot-booked::after {
  content: '✓';
  position: absolute;
  top: 2px;
  right: 6px;
  font-size: 12px;
}
.slot-selected {
  background: #dbe8ff !important;
  border-color: #97b7ef !important;
  color: #224c86 !important;
  position: relative;
}
.slot-selected::after {
  content: '✓';
  position: absolute;
  top: 2px;
  right: 6px;
  font-size: 12px;
}

/* ===== BOOKING SUMMARY ===== */
.booking-summary-card {
  background: var(--bara-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: static;
  margin-bottom: 24px;
}
.booking-summary-header {
  background: var(--bara-red);
  padding: 20px 24px;
}
.booking-summary-header h4 { font-family: var(--font-display); font-size: 18px; color: white; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
.booking-summary-body { padding: 24px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #2a2a2a; }
.summary-row:last-child { border: none; }
.summary-label { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.summary-value { font-size: 14px; color: white; font-weight: 600; text-align: right; }
.summary-total-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 0; margin-top: 8px; border-top: 2px solid var(--bara-red); }
.summary-total-label { font-family: var(--font-display); font-size: 16px; color: white; font-weight: 700; text-transform: uppercase; }
.summary-total-price { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--bara-red); }

/* Sticky sidebar for larger screens */
@media (min-width: 576px) {
  .booking-summary-card {
    position: sticky;
    top: 90px;
    margin-bottom: 0;
  }
}

/* Responsive: Booking Summary for mobile */
@media (max-width: 575px) {
  .booking-summary-card {
    border-radius: 12px;
  }
  
  .booking-summary-header {
    padding: 14px 18px;
  }
  
  .booking-summary-header h4 {
    font-size: 16px;
  }
  
  .booking-summary-body {
    padding: 16px;
  }
  
  .summary-row {
    padding: 8px 0;
  }
  
  .summary-label {
    font-size: 11px;
  }
  
  .summary-value {
    font-size: 13px;
  }
  
  .summary-total-label {
    font-size: 14px;
  }
  
  .summary-total-price {
    font-size: 22px;
  }
}

/* ===== CUSTOMER DASHBOARD ===== */
.customer-dash-header {
  background: linear-gradient(135deg, var(--bara-black) 0%, #1a1a1a 50%, #2d0000 100%);
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}
.customer-dash-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(237,28,36,0.03) 50px, rgba(237,28,36,0.03) 52px);
}
.customer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--bara-red);
  overflow: hidden;
  background: var(--bara-gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: white;
  font-weight: 800;
  flex-shrink: 0;
}
.customer-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.customer-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--bara-red);
}
.customer-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.dash-nav-tabs { border-bottom: 2px solid #f0f0f0; }
.dash-nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bara-gray);
  padding: 16px 20px;
  margin-bottom: -2px;
  transition: var(--transition);
}
.dash-nav-tabs .nav-link:hover { color: var(--bara-red); }
.dash-nav-tabs .nav-link.active { color: var(--bara-red); border-bottom-color: var(--bara-red); }

/* ===== BOOKING STATUS CARDS ===== */
.booking-card {
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  background: white;
}
.booking-card:hover { border-color: var(--bara-red); box-shadow: var(--shadow-md); }
.booking-card-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}
.booking-card-body { padding: 20px; }
.booking-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--bara-gray); }
.booking-meta-item .meta-icon { color: var(--bara-red); font-size: 14px; }
.booking-kode { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--bara-black); text-transform: uppercase; }

/* ===== AUTH PAGES ===== */
.auth-page {
  min-height: 100vh;
  background: var(--bara-black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(237,28,36,0.04) 60px, rgba(237,28,36,0.04) 62px);
}
.auth-panel {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.auth-panel .auth-brand { text-align: center; margin-bottom: 32px; }
.auth-panel .auth-brand img { height: 50px; }
.auth-title { font-family: var(--font-display); font-size: 28px; font-weight: 800; text-transform: uppercase; text-align: center; margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: var(--bara-gray); text-align: center; margin-bottom: 32px; }
.auth-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  color: var(--bara-gray-light);
  font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: #eee;
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ===== RESPONSIVE WEBSITE ===== */
@media (max-width: 767px) {
  .hero-red-accent { width: 100%; clip-path: none; opacity: 0.08; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 32px; }
  .auth-panel { padding: 32px 24px; }
}
@media (max-width: 767px) {
  .section-paket, .section-harga, .section-lapangan, .section-fasilitas, .section-turnamen { padding: 60px 0; }
  .hero-title { font-size: 52px; }
  .harga-row { padding: 16px 20px; }
  .harga-price { font-size: 22px; }
  .step-label { display: none; }
  .booking-hero { padding: 100px 0 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 24px; }
  .time-slot-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  
  /* Lapangan responsive */
  .lapangan-info { padding: 20px; }
  .lapangan-name { font-size: 20px; }
  
  /* Lightbox responsive */
  #photoLightbox #prevPhoto,
  #photoLightbox #nextPhoto {
    width: 45px !important;
    height: 45px !important;
    font-size: 22px !important;
  }
  #photoLightbox button[onclick="closeLightbox()"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    top: 10px !important;
    right: 10px !important;
  }
  #photoLightbox #prevPhoto { left: 10px !important; }
  #photoLightbox #nextPhoto { right: 10px !important; }
  #photoLightbox #lightboxImg {
    max-width: 95% !important;
    max-height: 80% !important;
  }
  #photoLightbox #photoCounter {
    bottom: 15px !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
  }
  #photoLightbox #photoCaption {
    bottom: 50px !important;
    font-size: 14px !important;
    padding: 6px 12px !important;
  }
}
@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .auth-panel { padding: 28px 20px; }
  
  /* Lapangan mobile */
  .lapangan-badge { 
    font-size: 11px; 
    padding: 4px 10px; 
    top: 12px;
    left: 12px;
  }
}
