*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050816;
  color: #f5f5f5;
}
a {
  color: inherit;
  text-decoration: none;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(80, 120, 255, 0.6);
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  height: 44px;
  width: auto;
  border-radius: 0.5rem;
}
.topbar h1 {
  font-size: 1rem;
  margin: 0;
}
.topbar p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.8;
}
.top-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.top-nav a {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.top-nav a:hover {
  background: #1d4ed8;
  color: #ffffff;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
}
.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.hero-text p {
  max-width: 38rem;
  font-size: 0.95rem;
  opacity: 0.9;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-list li {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  border: 1px solid rgba(96, 165, 250, 0.5);
}
.hero-card {
  background: radial-gradient(circle at top left, #1d4ed8, #020617);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}
.section {
  padding: 2rem 1.5rem;
}
.section-alt {
  background: radial-gradient(circle at top, rgba(15,23,42,0.9), #020617);
}
.section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.section-intro {
  max-width: 40rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.hero-images {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.photo-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
}
.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  font-size: 0.75rem;
}
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}
#booking-form {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
}
.form-row {
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
label {
  font-size: 0.85rem;
}
input,
select,
textarea {
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  font-size: 0.85rem;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.6);
}
.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}
.radio-group input,
.checkbox-group input {
  margin-right: 0.35rem;
}
.zone-display {
  padding: 0.5rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.85rem;
}
.form-separator {
  border: none;
  border-top: 1px solid rgba(55, 65, 81, 0.9);
  margin: 0.75rem 0;
}
.btn-primary,
.btn-secondary,
.btn-paypal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.55rem 1.3rem;
  font-weight: 600;
}
.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}
.btn-primary:hover {
  filter: brightness(1.06);
}
.btn-secondary {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.8);
}
.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.7);
}
.btn-paypal {
  width: 100%;
  background: #ffc439;
  color: #111827;
  margin-top: 0.5rem;
}
.btn-paypal:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.full-width {
  width: 100%;
}
.form-note,
.paypal-note {
  font-size: 0.75rem;
  opacity: 0.85;
  margin-top: 0.4rem;
}
.price-panel {
  background: radial-gradient(circle at top left, rgba(37,99,235,0.6), #020617);
  border-radius: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.price-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(96, 165, 250, 0.7);
}
#price-amount {
  font-size: 1.5rem;
}
.qr-block {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}
.qr-image {
  max-width: 160px;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #ffffff;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.fleet-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.9rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.footer {
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.75rem;
  text-align: center;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: #020617;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .top-nav {
    display: none;
  }
}
@media (max-width: 600px) {
  .section,
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .topbar {
    padding-inline: 1rem;
  }
}
