* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.349);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 16px 0;
}

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

.logo-container .logo {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.3s;
}

.navbar.scrolled .logo-container .logo {
  height: 40px;
}

.btn-pesananku {
  background-color: #0060d1;
  color: white;
  border: none;
  padding: 18px 24px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 96, 209, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-pesananku:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 96, 209, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background-image: url("../image/bg-lapangan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0) 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: white;
  line-height: 1.15;
  /* max-width: 700px; */
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  margin-left: 0;
}

.hero-title.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smaller Hero for Inner Pages */
.hero-small {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url("assets/image/bg-lapangan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  margin-bottom: 60px;
  margin-top: 80px;
}

.hero-small .hero-content {
  padding-bottom: 40px;
  /* Smaller padding for smaller hero */
}

.hero-title-small {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

/* Main Content */
.main-content {
  padding-bottom: 100px;
  flex: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out 0.2s,
    transform 0.8s ease-out 0.2s;
}

.section-header.active {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  color: #0060d1;
  font-weight: 800;
}

.section-header h2 .italic-text {
  font-weight: 400;
  font-style: italic;
  color: #0060d1;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px; /* jarak antara h2 & h4 */
}

.section-desc {
  font-size: clamp(13px, 2.8vw, 29px);
  font-weight: 500;
  color: #737679;
  margin: 0;
}

.btn-lihat-semua {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #0060d1;
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-lihat-semua:hover {
  background-color: #004bb3;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card Styles */
.card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 500px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out,
    box-shadow 0.3s ease;
}

/* Staggered animation delays for cards */
.card:nth-child(1) {
  transition-delay: 0s;
}

.card:nth-child(2) {
  transition-delay: 0.1s;
}

.card:nth-child(3) {
  transition-delay: 0.2s;
}

.card:nth-child(4) {
  transition-delay: 0.3s;
}

.card:nth-child(5) {
  transition-delay: 0.4s;
}

.card:nth-child(6) {
  transition-delay: 0.5s;
}

.card:nth-child(7) {
  transition-delay: 0.6s;
}

.card:nth-child(8) {
  transition-delay: 0.7s;
}

.card.active {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Reset transition delay on hover so it reacts instantly */
.card.active:hover {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    padding-bottom: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 16px;
} */

.card-body {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 24px;
}

.card-info {
  text-align: left;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
  /* Ensure fixed height for alignment */
}

.card-location {
  font-size: 13px;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.btn-card-action {
  background-color: white;
  color: #0060d1;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-card-action:hover {
  background-color: #f8f9fa;
  transform: scale(1.02);
}

/* Footer */
.footer {
  background-color: #005eb8;
  color: white;
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  font-weight: 500;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px); */
  /* -webkit-backdrop-filter: blur(8px); */
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  margin: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 10000;
}

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

.modal-close {
  display: none;
  /* Hide close button */
}

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

.modal-title {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  text-align: left;
}

.modal-subtitle {
  font-size: 25px;
  color: #666;
  margin-bottom: 32px;
  text-align: left;
}

.redeem-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  width: 100%;
}

.form-input {
  display: flex;
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.2s;
  outline: none;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: #0060d1;
}

.form-input::placeholder {
  font-size: 14px;
  color: #9ca3af;      
  font-weight: 400;
}


.captcha-group {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
}

.captcha-display {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  /* gap: 12px; */

  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  box-sizing: border-box;
}

.captcha-display img {
  display: block;
  max-width: 240px;   /* atau sesuai width captcha */
  width: 100%;
  height: auto;
}

/* .captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333;
    font-style: italic;
    transform: skew(-5deg);
} */

.captcha-refresh {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #0060d1;
    cursor: pointer;
    /* padding: 8px; */
    border-radius: 100%;
    transition: background 0.2s, transform 0.2s;
}

.captcha-refresh:hover {
    background: rgba(0, 96, 209, 0.1);
    transform: rotate(180deg);
}

.captcha-input-field {
  flex: 1;
  padding: 16px 20px;
  border-radius: 50px;
  border: 2px solid #e0e0e0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  text-align: left;
}

.captcha-input-field:focus {
  border-color: #0060d1;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #0060d1;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.2s;
  margin-top: 8px;
  position: relative;
}

.btn-submit:hover:not(:disabled) {
  background: #004bb3;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.btn-submit .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-help {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.link-admin {
  color: #0060d1;
  text-decoration: none;
  font-weight: 600;
}

.link-admin:hover {
  text-decoration: underline;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 10px 0;
  color: #999;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.divider span {
  padding: 0 16px;
}

.btn-admin {
  width: 100%;
  padding: 16px;
  background: white;
  color: #0060d1;
  border: 2px solid #0060d1;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-admin:hover {
  background: #0060d1;
  color: white;
}

/* Responsive */
@media (max-width: 1300px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .captcha-group {
    flex-direction: column;
    gap: 12px;
}

  /* Optimize Navbar for Mobile */
  .navbar,
  .navbar.scrolled {
    padding: 12px 0;
  }

  .navbar .container {
    padding: 0 16px;
    gap: 12px;
  }

  .logo-container {
    /* flex: 2; */
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .logo-container .logo {
    height: 28px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .hero {
    height: 60vh;
    min-height: 60vh;
    margin-bottom: 30px;
  }

  .btn-pesananku {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 30px;
    flex-shrink: 0;
    text-decoration: none !important;
    white-space: nowrap;
  }

  .section-header h2 {
    font-size: 25px;
  }

  .btn-lihat-semua {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 30px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Hero Text Adjustments */
  .hero-title {
    font-size: 25px;
    line-height: 1.25;
  }

  .hero-title-small {
    font-size: 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .card {
    height: auto;
    min-height: 400px;
  }
}

/* Button White Variant */
.btn-pesananku.white-variant {
  background-color: white;
  color: #0060d1;
  box-shadow: none;
  text-decoration: none !important;
}

.btn-pesananku.white-variant:hover {
  background-color: #f0f0f0;
}

/* Detail Page specific styles */
.detail-page,
.list-orders-page {
  padding-top: 40px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.btn-back:hover {
  color: #0060d1;
}

.venue-header {
  margin-bottom: 32px;
}

.venue-title {
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.venue-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #666;
}

.status-open {
  color: #0060d1;
  font-weight: 600;
}

.separator {
  color: #999;
}

.location-link a {
  color: #0060d1;
  text-decoration: underline;
}

/* Detail Grid Layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.detail-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-gallery-nav.right {
  right: 20px;
}

.btn-gallery-nav:hover {
  background: white;
}

/* Facilities */
.facilities-section {
  margin-top: 32px;
}

.facilities-section h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.facilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
}

.facility-item i {
  font-size: 20px;
  color: #444;
}

/* Booking Card */
.booking-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.outer-card {
  text-align: center;
  padding: 40px 32px;
}

.date-selection {
  margin-bottom: 24px;
}

.date-selection label,
.time-selection label,
.booking-form label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

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

.current-date {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.btn-calendar {
  background: #0060d1;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.divider-line {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 24px 0;
}

.time-slots {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.time-slot-btn {
  background: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 10px 20px;
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot-btn.active {

  background: #0239C6;
  border-color: #0239C6;
  color: white;

  font-weight: 600;
  box-shadow: 0 0 0 1px #0060d1;
}

.time-slot-btn.disabled {

  background: #ddd;
  /* border-color: #0239C6; */
  color: #333;

  font-weight: 600;
  cursor: not-allowed;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.booking-input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.booking-input:focus {
  border-color: #0060d1;
}

.btn-booking-submit {
  width: 100%;
  padding: 18px;
  background: #ccc;
  /* Default Disabled */
  color: #666;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: not-allowed;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-booking-submit.active {
  background-color: #0239c6;
  /* Requested Blue */
  color: white;
  cursor: pointer;
}

.btn-booking-submit.active:hover {
  background-color: #002a9e;
}

/* Success Modal Different Style */
.modal-success-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 12000;
  align-items: center;
  justify-content: center;
}

.modal-success-overlay.active {
  display: flex;
}

.modal-success-content {
  background: white;
  border-radius: 24px;
  padding: 40px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideUpFade 0.3s ease-out;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #0060d1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 32px;
}

.modal-success-content h2 {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.modal-success-content p {
  color: #666;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.4;
}

.btn-close-success {
  background: transparent;
  color: #0060d1;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* List Orders Page Styles */
.orders-list {
  max-width: 800px;
  margin: 0 auto;
}

.order-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 24px;
}

.order-image {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.order-details {
  flex: 1;
}

.order-venue-title {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.order-location {
  color: #0060d1;
  font-size: 14px;
  margin-bottom: 16px;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-meta-group {
  margin-bottom: 12px;
}

.order-meta-group label {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 2px;
}

.order-meta-group .meta-value {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.order-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  min-width: 200px;
}

.btn-action {
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: none;
  background: transparent;
  text-decoration: none;
}

.btn-action.primary {
  background: #0060d1;
  color: white;
}

.btn-action.primary:hover {
  background: #004bb3;
}

.btn-action.outline {
  border: 1px solid #0060d1;
  color: #0060d1;
}

.btn-action.non-active-primary {
  border: 1px solid #ccc;
  color: #666;
  cursor: not-allowed;
}

.btn-action.non-active {
  border: 1px solid #9B9A9C;
  color: #9B9A9C;
  cursor: not-allowed;
}

.btn-action.secondary {
  border: 1px solid #9B9A9C;
  color: #9B9A9C;
}

.btn-action.text-secondary {
  color: #9B9A9C;
  cursor: not-allowed;
}

.btn-action:disabled {
  cursor: not-allowed;
}

.btn-action.outline:hover {
  background: #f0f8ff;
}

.btn-action.text-danger {
  color: #dc3545;
  font-size: 13px;
  font-weight: 600;
}

.btn-action.btn-batalkan {
  color: #0060d1;
}

.btn-action.text-danger:hover {
  text-decoration: underline;
}

.btn-action.modal-primary {
  color: #0060d1;
  font-size: 16px;
  font-weight: 600;
}

.btn-action.modal-danger {
  color: #dc3545;
  font-size: 16px;
  font-weight: 600;
}

.order-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 32px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .list-orders-page .container {
    padding: 0 20px;
  }

  .order-card {
    flex-direction: column;
    padding: 0;
    gap: 20px;
    border: none;
    box-shadow: none;
  }

  .order-image {
    width: 100%;
    height: 240px;
    border-radius: 24px;
  }

  .order-details {
    padding: 0;
  }

  .order-venue-title {
    font-size: 32px;
    margin-bottom: 12px;
    color: #333;
  }

  .order-location {
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 500;
  }

  .order-meta-group label {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .order-meta-group .meta-value {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .btn-action {
    width: 100% !important;
    height: 56px !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    text-decoration: none !important;
  }

  .btn-action.primary {
    background: #0056b3 !important;
    color: white !important;
    border: none !important;
  }

  .btn-action.outline {
    background: white !important;
    border: 1.5px solid #0056b3 !important;
    color: #0056b3 !important;
  }

  .btn-action.text-danger {
    background: transparent !important;
    color: #b01a1a !important;
    border: none !important;
    height: auto !important;
    padding: 12px 0 !important;
    font-size: 16px !important;
  }

  .order-divider {
    margin: 40px 0;
    border-top: 1px solid #f0f0f0;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .order-card {
    gap: 20px;
  }

  .order-image {
    width: 150px;
    height: 150px;
  }
}

/* Date Picker Modal Styles */
.modal-datepicker-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 13000;
  align-items: center;
  justify-content: center;
}

.modal-datepicker-overlay.active {
  display: flex;
}

.datepicker-content {
  background: white;
  border-radius: 28px;
  width: 320px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  font-family: "Inter", sans-serif;
  animation: fadeInScale 0.2s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.datepicker-header {
  padding: 24px 24px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.datepicker-subtitle {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  display: block;
  margin-bottom: 4px;
}

.datepicker-selected-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.datepicker-selected-date-row h2 {
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.datepicker-selected-date-row i {
  font-size: 18px;
  color: #666;
  cursor: pointer;
}

.datepicker-body {
  padding: 16px 24px;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-month-year {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.calendar-arrows {
  display: flex;
  gap: 12px;
}

.btn-cal-arrow {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #666;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-cal-arrow:hover {
  background-color: #f5f5f5;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 8px;
  text-align: center;
}

.day-name {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

.day-num {
  font-size: 14px;
  color: #333;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 auto;
}

.day-num:hover {
  background-color: #f0f0f0;
}

.day-num.selected-circle {
  border: 1px solid #0060d1;
  color: #0060d1;
  background: transparent;
}

.day-num.active-filled {
  background-color: #0060d1;
  color: white;
}

.datepicker-footer {
  padding: 8px 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.btn-datepicker-action {
  background: transparent;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #0060d1;
  cursor: pointer;
}

/* Responsive Detail Page */
@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .venue-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .detail-page {
    padding-top: 20px;
  }

  .venue-header {
    margin-bottom: 24px;
  }

  .venue-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .venue-meta {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .detail-image-container {
    height: 300px;
    border-radius: 16px;
  }

  .facilities-section h3 {
    font-size: 16px;
  }

  .facility-item {
    font-size: 14px;
  }

  .facility-item i {
    font-size: 18px;
  }

  .booking-card {
    padding: 24px 15px;
    border-radius: 20px;
  }

  .current-date {
    font-size: 20px;
  }

  .time-slot-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.btn-datepicker-action:hover {
  background-color: rgba(0, 96, 209, 0.05);
}

.day-num.disabled {
  color: #ccc;
  background-color: transparent;
  cursor: default;
  pointer-events: none;
}

/* Slider Styles */
.detail-image-container {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.btn-gallery-nav.left {
  left: 20px;
}

.btn-gallery-nav {
  z-index: 2;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* Countdown Page Styles */
.countdown-page {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../image/bg-lapangan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px 16px;
}

.countdown-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.countdown-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 100%;
}

.countdown-card {
  background: white;
  border-radius: 20px;
  padding: clamp(20px, 5vw, 60px);
  /* text-align: center; */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  /* margin-bottom: 60px; */
  /* max-width: 500px; */
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

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

.countdown-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: #0060d1;
  margin-bottom: 10px;
  line-height: 1.2;
}

.countdown-subtitle {
  font-size: clamp(16px, 2.8vw, 26px);
  color: #737679;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.countdown-text {
  flex: 1;
  color: #737679;
  font-size: clamp(16px, 2.8vw, 26px);
  min-width: 0;
}

.timer-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-val {
  font-family: "Outfit", sans-serif;
  font-size: 86px;
  font-weight: 700;
  color: #2f3031;
  line-height: 1;
}

.timer-label {
  font-size: clamp(16px, 2.8vw, 24px);
  color: #2f3031;
  margin-top: 8px;
  font-weight: 500;
}

.timer-separator {
  font-family: "Outfit", sans-serif;
  font-size: 76px;
  font-weight: 700;
  color: #2f3031;
  line-height: 0.9;
}

.bottom-message {
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: white;
  text-align: left;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 900px;
  align-self: flex-start;
  margin-left: 5%;
}

.bullet-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  /* margin-bottom: 12px; */
}

/* .bullet-row i {
  font-size: 8px;
  color: #737679;
} */


/* Confetti Styles for finish state */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  display: none;
}

.confetti-container.active {
  display: block;
}

.confetti-piece {
  position: absolute;
  width: 10px;
  height: 20px;
  background: #ffd700;
  top: -20px;
  opacity: 0;
}

.confetti-container.active .confetti-piece {
  animation: confetti-fall 3s linear infinite;
}

@keyframes confetti-fall {
  0% {
    top: -20px;
    transform: rotate(0deg) translateX(0px);
    opacity: 1;
  }

  100% {
    top: 100vh;
    transform: rotate(720deg) translateX(100px);
    opacity: 0;
  }
}

/* Specific Gold/Ribbon look */
.ribbon {
  width: 15px;
  height: 30px;
  background: linear-gradient(to bottom, #d4af37, #f7ef8a, #d4af37);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .countdown-page {
    justify-content: flex-start;
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .countdown-card {
    padding: 30px;
    margin-bottom: 40px;
    animation: none;
  }

  .countdown-title {
    font-size: 28px;
  }

  .countdown-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .timer-wrapper {
    margin-top: 16px;
  }

  .timer-val {
    font-size: 52px;
  }

  .timer-separator {
    font-size: 48px;
  }

  .bottom-message {
    font-size: 32px;
    text-align: center;
    align-self: center;
    margin-left: 0;
  }
}

/* Review Modal Styles */
.modal-review {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20000;
  align-items: center;
  justify-content: center;
}

.modal-review.active {
  display: flex;
}

.modal-review .modal-content.review-content {
  max-width: 500px;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
  background: #fff;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.modal-close-review {
  position: absolute;
  top: 24px;
  left: 24px;
  background: black;
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s;
  z-index: 10;
}

.modal-close-review:hover {
  transform: scale(1.1);
}

.review-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.star-rating-container {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: 10px;
}

.star {
  font-size: 32px;
  color: #e0e0e0;
  cursor: pointer;
  transition: color 0.2s;
}

.star.filled {
  color: #bdbdbd;
  /* Grayish filled as per image, or maybe gold? Image looks gray/silver */
}

.star:hover,
.star.active {
  color: #ffc107;
  /* Gold */
}

.review-venue-title {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.review-location {
  font-size: 14px;
  color: #0060d1;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  text-decoration: underline;
}

.review-location a {
  color: #0060d1;
  text-decoration: underline;
}

.review-session-detail {
  text-align: left;
  width: 100%;
  margin-bottom: 16px;
}

.session-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 4px;
}

.session-value {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.review-image-card {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}

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

.image-overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  text-align: left;
  display: none;
  /* Hiding unless needed, the image might already have text */
}

.review-textarea {
  width: 100%;
  height: 120px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  resize: none;
  outline: none;
  margin-bottom: 24px;
}

.review-textarea:focus {
  border-color: #0060d1;
}

.review-textarea::placeholder {
  color: #aaa;
}

.btn-submit-review {
  width: 100%;
  padding: 16px;
  background: #e0e0e0;
  color: #666;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-submit-review:hover {
  background: #d0d0d0;
}

.btn-submit-review.active {
  background: #0060d1;
  color: white;
}