
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.badge-primary {
  background: rgba(10, 132, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.badge-accent {
  background: rgba(0, 214, 143, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}


.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--transition-bounce), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; 
  overflow: hidden;
}

.card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(13, 17, 23, 0.9));
  pointer-events: none;
}

.card-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md) 0;
}

.card-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 40px;
  border: 1px solid var(--color-border);
}

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

.card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.card-location {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.card-location svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.card-sports {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-white);
}

.stars-wrapper {
  display: flex;
  color: #FFD700;
}

.stars-wrapper svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}


.form-success-panel {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.form-success-panel.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInPage 0.4s ease;
}

.success-checkmark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(48, 209, 88, 0.1);
  border: 2px solid var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  margin-bottom: var(--space-lg);
}

.success-checkmark svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 3;
  fill: none;
}


.form-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 27, 34, 0.8);
  border-radius: inherit;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.form-loading-overlay.active {
  display: flex;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(10, 132, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--color-primary);
  animation: spinLoader 0.8s linear infinite;
}

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

.honeypot-field {
  display: none;
}


.modal-card.form-submitted h3,
.modal-card.form-submitted .booking-form-summary,
.modal-card.form-submitted form,
.signup-box.form-submitted h2,
.signup-box.form-submitted p,
.signup-box.form-submitted form,
.partner-box.form-submitted h2,
.partner-box.form-submitted p,
.partner-box.form-submitted form {
  display: none !important;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  transition: var(--transition-bounce);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}

.benefit-card-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.benefit-card-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Steps Component */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  position: relative;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--color-primary);
  transition: var(--transition-bounce);
}

.step-item:hover .step-icon-wrapper {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.08);
}

.step-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Solid path icons should be filled and have no stroke */
.step-icon-wrapper svg path {
  fill: currentColor;
  stroke: none;
}

/* If a path explicitly needs to be stroked and not filled, e.g. checkmark outlines */
.step-icon-wrapper svg[fill="none"] path,
.step-icon-wrapper svg path[fill="none"],
.step-icon-wrapper svg path[stroke] {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item h4 {
  margin-bottom: var(--space-sm);
}

.step-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.steps-connector {
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  border-top: 2px dashed var(--color-border);
  z-index: 1;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  .steps-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

