:root {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

section {
  scroll-margin-top: 88px;
}

.nav-link {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #155eaf;
}

.mobile-nav-link {
  border-radius: 4px;
  color: #132033;
  font-weight: 800;
  padding: 0.85rem 0.75rem;
}

.mobile-nav-link:hover {
  background: #f1f5f9;
  color: #155eaf;
}

.section-padding {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.section-kicker {
  color: #155eaf;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker.text-brand-gold {
  color: #f5a524;
}

.section-title {
  color: #0b1f3a;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin-top: 0.85rem;
}

.feature-strip {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #132033;
  display: flex;
  font-weight: 800;
  gap: 0.75rem;
  min-height: 64px;
  padding: 1rem;
}

.info-card,
.service-card,
.area-card,
.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1.35rem;
}

.info-card h3,
.service-card h3,
.area-card h3 {
  color: #0b1f3a;
  font-size: 1.05rem;
  font-weight: 900;
  margin-top: 1rem;
}

.info-card p,
.service-card p,
.area-card p {
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 0.55rem;
}

.service-card {
  min-height: 220px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
  transform: translateY(-3px);
}

.service-card > svg {
  color: #155eaf;
  height: 2rem;
  width: 2rem;
}

.area-card {
  min-height: 170px;
}

.area-card h3 {
  margin-top: 0;
}

.fleet-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.fleet-card:hover {
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.12);
  transform: translateY(-3px);
}

.fleet-card img {
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  width: 100%;
}

.fleet-card div {
  padding: 1.25rem;
}

.fleet-card span {
  color: #155eaf;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fleet-card h3 {
  color: #0b1f3a;
  font-size: 1.35rem;
  font-weight: 900;
  margin-top: 0.45rem;
}

.fleet-card p {
  color: #64748b;
  line-height: 1.65;
  margin-top: 0.55rem;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
}

.testimonial-card {
  display: grid;
  gap: 1rem;
}

.testimonial-card blockquote {
  color: #334155;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.testimonial-card figcaption {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-row {
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-row:hover {
  background: #f8fafc;
  border-color: #bfdbfe;
}

.contact-row > svg {
  color: #155eaf;
  flex: 0 0 auto;
  height: 1.45rem;
  width: 1.45rem;
}

.contact-row strong,
.contact-row small {
  display: block;
}

.contact-row strong {
  color: #0b1f3a;
  font-weight: 900;
}

.contact-row small {
  color: #64748b;
  margin-top: 0.2rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field span {
  color: #0b1f3a;
  font-size: 0.9rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  color: #132033;
  outline: none;
  padding: 0.85rem 0.9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #155eaf;
  box-shadow: 0 0 0 4px rgba(21, 94, 175, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
