/* ============================================
   ShineSquad Booking Page
   Extends public/css/theme.css
   ============================================ */

/* BOOK PAGE WRAPPER */
.book-page {
  min-height: 100vh;
}

/* BOOK HERO */
.book-hero {
  background: var(--bg);
  padding: 72px 48px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.book-hero-inner {
  max-width: 560px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.book-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}
.book-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}
.book-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.book-hero-art {
  opacity: 0.7;
}

/* PACKAGES SECTION */
.book-packages-section {
  padding: 64px 48px;
  background: var(--bg-alt);
}
.book-packages-section .section-label {
  max-width: 1200px;
  margin: 0 auto 32px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.pkg-radio {
  cursor: pointer;
  display: block;
}
.pkg-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pkg-content {
  padding: 4px;
}
.pkg-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin: 12px 0 6px;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pkg-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
/* Selected state */
.pkg-radio input:checked + .pkg-content .pkg-icon svg circle,
.pkg-radio input:checked + .pkg-content .pkg-icon svg path {
  stroke: #fff;
}
.pkg-radio input:checked ~ .pkg-name,
.pkg-radio input:checked ~ .pkg-price,
.pkg-radio input:checked ~ .pkg-desc {
  color: #fff;
}
.package-card.pkg-radio input:checked {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.pkg-fleet-note {
  max-width: 1200px;
  margin: 20px auto 0;
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}
.pkg-fleet-note a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.pkg-fleet-note a:hover { text-decoration: underline; }

/* FORM SECTION */
.book-form-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
.book-form-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.book-form-sub {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.optional {
  font-weight: 400;
  color: var(--fg-muted);
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(17, 17, 16, 0.15);
  border-radius: 8px;
  background: var(--card-bg);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(17, 17, 16, 0.35);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 148, 58, 0.12);
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236B6760' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.pkg-display {
  padding: 12px 14px;
  border: 1.5px dashed rgba(17, 17, 16, 0.15);
  border-radius: 8px;
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.pkg-display.selected {
  border-style: solid;
  border-color: var(--accent);
  color: var(--fg);
  font-style: normal;
  font-weight: 500;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 36px;
  background: var(--fg);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.btn-submit:hover {
  background: #2a2a28;
  transform: translateY(-1px);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit.loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.form-disclaimer {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ASIDE */
.book-aside {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.aside-block {
  background: var(--card-bg);
  border: 1px solid rgba(17, 17, 16, 0.08);
  border-radius: 12px;
  padding: 24px;
}
.aside-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.aside-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.aside-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.4;
}
.aside-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 20px;
}
.aside-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aside-contact p {
  margin: 0;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
}
.contact-link:hover { color: var(--accent); }
.aside-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* TRUST BAR */
.trust-bar {
  background: var(--fg);
  padding: 48px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item svg {
  flex-shrink: 0;
  stroke: var(--accent);
}
.trust-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.trust-item span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .book-hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
  }
  .book-hero-art { display: none; }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .book-form-section {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }
  .book-aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .aside-block { flex: 1; min-width: 200px; }
  .trust-inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .trust-divider { display: none; }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field--full {
    grid-column: 1;
  }
  .book-packages-section {
    padding: 48px 24px;
  }
}

@media (max-width: 600px) {
  .book-badges {
    flex-direction: column;
    gap: 12px;
  }
  .book-form-wrap { width: 100%; }
}