/* ========================================
   Pick-Up For Hire — Core Styles
   Palette: navy / mustard / sage / cream
   ======================================== */

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

:root {
  --bg: #F5EFE3;
  --bg-alt: #ECE3D0;
  --bg-card: #FFFFFF;
  --navy: #1B2A52;
  --navy-dark: #131F3E;
  --mustard: #D9A93C;
  --mustard-dark: #B58A29;
  --sage: #7C8F6D;
  --text: #1B2A52;
  --text-muted: #5C6478;
  --text-on-navy: #F5EFE3;
  --text-on-navy-muted: #BFC4D2;
  --border: rgba(27, 42, 82, 0.12);
  --radius: 10px;
  --radius-lg: 18px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --shadow-sm: 0 2px 6px rgba(27, 42, 82, 0.08);
  --shadow-md: 0 8px 24px rgba(27, 42, 82, 0.12);
  --shadow-lg: 0 16px 48px rgba(27, 42, 82, 0.18);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: var(--text-on-navy); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mustard-dark);
  margin-bottom: 12px;
}
.section--navy .section__tag { color: var(--mustard); }

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section--navy .section__desc { color: var(--text-on-navy-muted); }

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.25s ease;
}

.nav__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav__logo img { height: 38px; width: auto; }

.nav__menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--mustard-dark); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--navy);
  color: var(--text-on-navy);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--mustard); color: var(--navy); }

.nav__lang {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  transition: all 0.2s;
}
.nav__lang:hover { background: var(--navy); color: var(--text-on-navy); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #2A3D6E 100%);
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27, 42, 82, 0.55) 0%, rgba(27, 42, 82, 0.15) 50%, rgba(245, 239, 227, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 20px;
}

.hero__logo-wrap {
  display: inline-block;
  background: rgba(245, 239, 227, 0.96);
  padding: 16px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}
.hero__logo-wrap img {
  height: 70px;
  width: auto;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
  max-width: 900px;
}

.hero__title-accent { color: var(--mustard); }

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: #F5EFE3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  margin-bottom: 36px;
  max-width: 720px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--mustard);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--mustard-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: rgba(245, 239, 227, 0.96);
  color: var(--navy);
  border: 2px solid rgba(245, 239, 227, 0.6);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--text-on-navy);
  border-color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--text-on-navy);
}
.btn--navy:hover {
  background: var(--mustard);
  color: var(--navy);
}

.btn--full {
  width: 100%;
}

/* --- Contact banner (sticky CTA hint) --- */
.contact-banner {
  background: var(--navy);
  color: var(--text-on-navy);
  padding: 14px 20px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}
.contact-banner a {
  color: var(--mustard);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* --- Services grid --- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--mustard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.service-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card__list {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card__list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mustard-dark);
  font-weight: 800;
}

/* --- Photo gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: var(--shadow-sm);
}
.gallery__item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery__item:hover img { transform: scale(1.08); }

/* --- Capacity table --- */
.capacity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.capacity-card {
  background: rgba(245, 239, 227, 0.05);
  border: 1px solid rgba(245, 239, 227, 0.15);
  padding: 22px;
  border-radius: var(--radius);
}

.capacity-card__title {
  font-weight: 700;
  color: var(--mustard);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.capacity-card__detail {
  font-size: 0.9rem;
  color: var(--text-on-navy-muted);
}

/* --- Pricing table --- */
.pricing-table {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 0 auto;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:nth-child(even) { background: var(--bg-alt); }

.pricing-row__label {
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.pricing-row__price {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
  white-space: nowrap;
}

.pricing-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* --- Why us checklist --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.why-item__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.why-item__text {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* --- Quote / contact section --- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.quote-option {
  padding: 28px;
  background: rgba(245, 239, 227, 0.08);
  border: 1.5px dashed rgba(245, 239, 227, 0.35);
  border-radius: var(--radius-lg);
}

.quote-option__icon { font-size: 2rem; margin-bottom: 12px; }
.quote-option__title { font-weight: 800; font-size: 1.15rem; color: var(--mustard); margin-bottom: 10px; }
.quote-option__body { color: var(--text-on-navy-muted); font-size: 0.95rem; line-height: 1.6; }
.quote-option__body ul { margin-top: 10px; padding-left: 18px; list-style: disc; }

.contact-card {
  background: var(--mustard);
  color: var(--navy);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 12px;
  box-shadow: var(--shadow-md);
}

.contact-card__big {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-top: 6px;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.contact-card a { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }

.no-calls {
  display: inline-block;
  background: rgba(217, 169, 60, 0.18);
  color: var(--mustard);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 22px;
  border: 1px solid rgba(217, 169, 60, 0.35);
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: var(--text-on-navy-muted);
  padding: 50px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer__brand img { height: 56px; margin-bottom: 14px; background: var(--bg); padding: 8px 14px; border-radius: var(--radius); }
.footer__tagline { font-size: 0.95rem; line-height: 1.6; }

.footer__heading {
  color: var(--mustard);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.footer__list li { margin-bottom: 8px; font-size: 0.92rem; }
.footer__list a:hover { color: var(--mustard); }
.footer__contact-line { font-size: 0.95rem; margin-bottom: 8px; }
.footer__contact-line strong { color: var(--text-on-navy); }

.footer__bottom {
  border-top: 1px solid rgba(245, 239, 227, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(19, 31, 62, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: var(--bg);
  font-size: 2rem;
  cursor: pointer;
  font-weight: 300;
}

/* --- Mobile --- */
@media (max-width: 800px) {
  .nav__menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.25s;
    box-shadow: var(--shadow-md);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__hamburger { display: flex; }
  .nav__cta { width: 100%; justify-content: center; }
  .nav__lang { width: 100%; text-align: center; }

  .hero { min-height: 92vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .section { padding: 60px 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .pricing-row { padding: 14px 18px; font-size: 0.93rem; }
  .pricing-row__price { font-size: 1rem; }
}

/* ========================================
   Quote Request Modal (Phase 1 intake form)
   ======================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 31, 62, 0.72);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 300;
  padding: 24px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-overlay.is-open { display: flex; }

.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 640px;
  width: 100%;
  margin: auto;
  position: relative;
  padding: 0;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
}

.modal__header {
  padding: 22px 28px 8px;
  border-bottom: 1px solid var(--border);
}
.modal__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.modal__subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius);
  font-weight: 300;
  transition: background 0.15s;
}
.modal__close:hover { background: var(--bg-alt); }

.modal__body {
  padding: 18px 28px 24px;
  overflow-y: auto;
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row--single { grid-template-columns: 1fr; }

.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.form-field label .req { color: #C0392B; margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(217, 169, 60, 0.22);
}
.form-field textarea { resize: vertical; min-height: 90px; }

/* Honeypot — visually hidden but still focusable to bots */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0; padding: 0;
}

/* Photo upload */
.photo-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  background: var(--bg-card);
  transition: border-color 0.15s, background 0.15s;
}
.photo-upload:hover { border-color: var(--mustard); background: var(--bg-alt); }
.photo-upload input { display: none; }
.photo-upload__label {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}
.photo-upload__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  opacity: 0.85;
}

.photo-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.photo-preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-alt);
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-preview__remove {
  position: absolute;
  top: 2px; right: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(27, 42, 82, 0.85);
  color: var(--bg);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Submission states */
.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.form-actions .btn { flex: 1 1 auto; }

.form-feedback {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  display: none;
}
.form-feedback.is-success {
  display: block;
  background: rgba(124, 143, 109, 0.18);
  color: #3d4d2f;
  border: 1px solid rgba(124, 143, 109, 0.4);
}
.form-feedback.is-error {
  display: block;
  background: rgba(192, 57, 43, 0.12);
  color: #8e2d1f;
  border: 1px solid rgba(192, 57, 43, 0.35);
}

.btn[aria-busy="true"] { opacity: 0.75; cursor: wait; }
.btn[aria-busy="true"]::after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Modal mobile */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .modal__header { padding: 18px 18px 6px; }
  .modal__body { padding: 14px 18px 20px; }
  .modal__title { font-size: 1.15rem; }
}
