
:root {
  --red-main: #BF1D18;
  --red-orange: #D9361F;
  --red-highlight: #F4512A;
  --white: #FFFFFF;
  --black: #000000;
  --silver-light: #D9D9D9;
  --silver-dark: #7A7A7A;
  --blue-bright: #27A8FF;
  --blue-deep: #005C99;

  --bg: #050505;
  --text: #F5F5F5;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #111 0, #050505 60%, #000 100%);
  color: var(--text);
  line-height: 1.5;
  font-size: 17px; /* slightly larger for readability */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

/* Header */
header {
  background: linear-gradient(90deg, #000 0%, #111 40%, #050505 100%);
  border-bottom: 1px solid rgba(217,217,217,0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
}

.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--silver-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links {
  display: none;
  gap: 1rem;
}

.nav-links a {
  opacity: 0.8;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--red-highlight);
}

.nav-cta {
  background: linear-gradient(135deg, var(--red-main), var(--red-highlight));
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 14px rgba(244,81,42,0.55);
}

.nav-cta:hover {
  filter: brightness(1.05);
}

.phone {
  font-weight: 600;
  white-space: nowrap;
}

/* Hero */
.hero {
  padding: 2.5rem 0 2.2rem;
  display: grid;
  gap: 2rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 0.75rem;
}

.hero-main h1 {
  font-size: clamp(2.3rem, 3.6vw + 1rem, 3.1rem);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.hero-main h1 span {
  background: linear-gradient(135deg, var(--red-main), var(--red-highlight));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-main p.lead {
  font-size: 1rem;
  max-width: 34rem;
  margin-bottom: 1.25rem;
  color: #d7d7d7;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
}

.badge {
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(217,217,217,0.2);
  background: rgba(0,0,0,0.65);
  color: #e4e4e4;
}

.badge.red {
  border-color: rgba(244,81,42,0.8);
  color: var(--red-highlight);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-main), var(--red-highlight));
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  box-shadow: 0 0 16px rgba(191,29,24,0.65);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: transparent;
  border-radius: 999px;
  border: 1px solid var(--silver-dark);
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-light);
}

.btn-outline:hover {
  border-color: var(--red-highlight);
  color: var(--red-highlight);
}

.hero-meta {
  font-size: 0.82rem;
  color: #aaaaaa;
}

.hero-aside {
  background: radial-gradient(circle at top, #202020 0, #080808 60%, #000 100%);
  border-radius: 0.9rem;
  padding: 1.25rem;
  border: 1px solid rgba(217,217,217,0.16);
  display: grid;
  gap: 0.8rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
}

.pill-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--silver-light);
}

.hours, .address {
  font-size: 0.95rem;
}

.notice {
  font-size: 0.78rem;
  color: #a0a0a0;
  font-style: italic;
}

/* Sections */
section {
  margin-top: 2.8rem;
}

.section-heading {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-sub {
  font-size: 0.94rem;
  color: #b5b5b5;
  margin-bottom: 1rem;
}

/* Cards / grids */
.card {
  background: radial-gradient(circle at top left, #222 0, #111 55%, #060606 100%);
  border-radius: 0.9rem;
  border: 1px solid rgba(217,217,217,0.16);
  padding: 1.3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.card-sub {
  font-size: 0.9rem;
  color: #b3b3b3;
  margin-bottom: 0.75rem;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.service-name {
  font-weight: 500;
}

.service-price {
  font-weight: 700;
  color: var(--red-highlight);
  white-space: nowrap;
}

/* Fleet */
.fleet-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.85rem;
}

.field-group {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.field-group label {
  font-weight: 500;
}

.field-group input,
.field-group textarea,
.field-group select {
  border-radius: 0.5rem;
  border: 1px solid rgba(217,217,217,0.3);
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
  font-family: inherit;
  resize: vertical;
  min-height: 2.4rem;
  background: rgba(0,0,0,0.6);
  color: var(--text);
}

.field-group textarea {
  min-height: 96px;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--red-highlight);
  box-shadow: 0 0 0 1px rgba(244,81,42,0.5);
}

/* About */
.about-text {
  font-size: 0.92rem;
  color: #d1d1d1;
  display: grid;
  gap: 0.55rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
}

.contact-list span.label {
  font-weight: 600;
  display: inline-block;
  width: 5rem;
}

.map-embed {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(217,217,217,0.18);
  min-height: 260px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.85);
}

iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
footer {
  padding: 1.5rem 1.25rem 2rem;
  background: #000;
  border-top: 1px solid rgba(217,217,217,0.2);
  font-size: 0.8rem;
  color: #bdbdbd;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

/* Responsive */
@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: 3fr 2fr;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.2fr 1.8fr;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .nav-right {
    width: 100%;
    justify-content: space-between;
  }
}
