:root {
  --navy: #0b1c30;
  --navy-light: #16304f;
  --silver: #c9d3dc;
  --white: #f5f7fa;
  --accent: #2f80ed;
  --accent-dark: #1b5fc4;
  --danger: #c0392b;
  --radius: 10px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1a2433;
  background: var(--white);
  line-height: 1.5;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.logo span { color: var(--silver); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--silver);
  font-weight: 500;
}
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-phone {
  background: var(--accent);
  color: white !important;
  padding: 8px 14px;
  border-radius: var(--radius);
}
.nav-call {
  color: var(--silver) !important;
  font-size: 1.1rem;
}
.nav-call:hover { color: white !important; }

.logo, .nav-phone { white-space: nowrap; }

@media (max-width: 760px) {
  .nav { padding: 12px 16px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-phone):not(.nav-call) { display: none; }
  .nav-phone { padding: 8px 12px; font-size: 0.9rem; }
  .nav-phone-num { display: none; }
  .logo { font-size: 1.1rem; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 1rem; padding: 0 10px; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--accent-dark) 130%);
  color: white;
  padding: 90px 0 70px;
  text-align: center;
}
.hero h1 { font-size: 2.4rem; margin: 0 0 16px; }
.hero-sub { font-size: 1.1rem; color: var(--silver); max-width: 560px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-call-alt { margin-top: 16px; color: var(--silver); font-size: 0.95rem; }
.hero-call-alt a { color: white; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; }
.btn-outline { border-color: var(--silver); color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
.btn-small { padding: 8px 14px; font-size: 0.9rem; background: var(--navy-light); color: white; }
.btn-large { width: 100%; margin-top: 20px; font-size: 1.1rem; padding: 16px; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Sections */
.section { padding: 64px 0; }
.section.alt { background: #eef2f6; }
.section h2 { font-size: 1.8rem; margin-bottom: 6px; }
.section-sub { color: #55637a; margin-top: 0; margin-bottom: 30px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 700px) {
  .two-col { grid-template-columns: 1fr; }
}

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .cards { grid-template-columns: 1fr; }
}
.card {
  background: white;
  border: 1px solid #e1e6ec;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.card h3 { margin: 0 0 8px; }
.card .price { font-size: 1.8rem; font-weight: 700; color: var(--accent-dark); margin: 0; }
.card-soon { opacity: 0.75; border-style: dashed; }
.card-soon .price { font-size: 1.2rem; color: #7a8699; }
.muted { color: #7a8699; font-size: 0.9rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid #dde3ea; }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* Booking widget */
.notice-banner {
  background: #fff5e6;
  border: 1px solid #f0c987;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.booking-widget {
  background: white;
  border: 1px solid #e1e6ec;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.booking-step { margin-bottom: 34px; }
.booking-step h3 { margin-top: 0; margin-bottom: 14px; font-size: 1.1rem; }

.vehicle-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.vehicle-row select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cfd6de;
  font-size: 1rem;
}
.vehicle-row .remove-vehicle {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  font-weight: 600;
}

.totals {
  margin-top: 14px;
  font-weight: 600;
  color: var(--navy);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  gap: 6px;
}
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #cfd6de;
  font-size: 1rem;
  font-weight: 400;
  font-family: inherit;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}
.checkbox-label input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; }

.calendar { max-width: 380px; }
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-month-label { font-weight: 700; }
.cal-nav {
  background: white;
  border: 1px solid #cfd6de;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  color: #7a8699;
  margin-bottom: 6px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #e1e6ec;
  background: white;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
}
.cal-day.empty { visibility: hidden; cursor: default; }
.cal-day.disabled { color: #c7cfd8; cursor: not-allowed; background: #f5f7fa; border-color: #eef1f4; }
.cal-day.blocked { color: #d68a8a; background: #fdf1ee; border-color: #f3d3ca; }
.cal-day.selected { background: var(--accent); color: white; border-color: var(--accent); }
.cal-day:not(.disabled):not(.empty):hover { border-color: var(--accent); }

.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slot-btn {
  border: 1px solid #cfd6de;
  background: white;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.95rem;
}
.slot-btn.selected { border-color: var(--accent); background: var(--accent); color: white; }
.slot-btn.call-only {
  background: #fdf1ee;
  border-color: #e8a897;
  color: var(--danger);
  cursor: default;
  text-decoration: none;
  display: inline-block;
}

.booking-feedback {
  margin-top: 20px;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 500;
}
.booking-feedback.error { background: #fdecea; color: var(--danger); border: 1px solid #f3b9b0; }
.booking-feedback.info { background: #eaf2ff; color: var(--accent-dark); border: 1px solid #b8d2f7; }

.confirmation-panel {
  margin-top: 24px;
  background: #eafaf0;
  border: 1px solid #a7e3bd;
  border-radius: var(--radius);
  padding: 24px;
}
.confirmation-panel h3 { margin-top: 0; }

.site-footer {
  background: var(--navy);
  color: var(--silver);
  text-align: center;
  padding: 30px 0;
  margin-top: 40px;
}
.site-footer a { color: white; }
