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

/* QUICK STRIP */

.quick-strip {
  background: #cc0000;
  color: #ffffff;
}

/* Desktop layout */
.quick-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 0;
}

/* Each item */
.quick-item {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.25);
}

/* Remove divider from last item */
.quick-item:last-child {
  border-right: none;
}

/* Main label */
.quick-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Supporting text */
.quick-text {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ---------- MOBILE ---------- */

@media (max-width: 900px) {
  .quick-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 8px 16px;
  }

  .quick-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 14px 10px;
  }

  .quick-item:last-child {
    border-bottom: none;
  }
}
/* ONE STOP SECTION */

.section-columns {
  padding-top: 28px;
}

.section-columns-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.columns-left h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.columns-left p {
  color: #4b5563;
  margin-top: 0;
  margin-bottom: 8px;
}

.columns-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-row {
  display: flex;
  gap: 10px;
}

.stat-card {
  flex: 1;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.stat-value {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 2px 0;
}

.stat-note {
  font-size: 0.8rem;
  color: #6b7280;
}

/* FEATURE GRID (Pizza & Fireworks) */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* The card itself becomes a vertical layout */
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.feature-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.feature-body {
  padding: 18px;
}

.feature-body h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* FLEET SECTION */

.section-fleet {
  margin-top: 12px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 22px;
  align-items: flex-start;
}

.fleet-text h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.fleet-text p {
  margin-top: 0;
  margin-bottom: 8px;
  color: #4b5563;
}

.fleet-steps {
  margin-top: 10px;
  padding-left: 20px;
  font-size: 0.9rem;
  color: #374151;
}

.fleet-steps li {
  margin-bottom: 4px;
}

/* FLEET CARDS — side by side on desktop */
.fleet-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fleet-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* VISIT SECTION */

.section-visit {
  margin-bottom: 24px;
}

/* RESPONSIVE UPDATES FOR NEW LAYOUT */

@media (max-width: 900px) {
  .quick-strip-inner {
    grid-template-columns: 1fr;
  }

  .section-columns-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f5;
  color: #111827;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 42px;
  width: auto;
}

.logo-text {
  line-height: 1.1;
}

.logo-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

.main-nav {
  display: flex;
  gap: 16px;
}

.nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #4b5563;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #ef4444;
  border-bottom-color: #ef4444;
}

/* FULLSCREEN HERO */

.hero {
  min-height: 100vh;
  width: 100%;
  background: url('assets/gails-station-bg.png') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 1;
}

/* Main content layout */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 50px 60px;
  position: relative;
  z-index: 2;
  gap: 40px;
}

/* Left text area */
.hero-left {
  max-width: 520px;
  color: white;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-left h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #e5e7eb;
}

/* Hero tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(249, 250, 251, 0.3);
  background: rgba(15, 23, 42, 0.4);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-primary {
  padding: 12px 22px;
  background: #ff3b2d;
  color: white;
  border-radius: 999px;
  border-color: #ff3b2d;
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.35);
}

.btn-primary:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: translateY(-1px);
}

.btn-outline {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.8rem;
}

/* Hero button row */

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

/* Info row */
.hero-info {
  font-size: 0.85rem;
  opacity: 0.9;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.hero-info span {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.65);
}

/* RIGHT SIDE (Slider) */

.hero-right {
  max-width: 420px;
  width: 100%;
}

.slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  background: #000000;
  min-height: 260px;
}

.slide {
  display: none;
  position: absolute;
  inset: 0;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  display: block;
  animation: fadeIn 0.6s ease-out;
}

.slide-caption {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
}

.slider-dot.active {
  background: #ef4444;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

/* SECTIONS */

.section {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 24px 16px 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 1.7rem;
}

.section-header p {
  margin: 0;
  color: #6b7280;
}

/* GRIDS & CARDS */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.card p {
  margin-top: 0;
  color: #4b5563;
}

.card-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-border {
  border: 1px solid #fee2e2;
}

/* SPLIT LAYOUT */

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.split-text h2 {
  margin-top: 0;
}

.split-text p {
  color: #4b5563;
}

.split-media {
  text-align: center;
}

.promo-img {
  max-width: 100%;
  border-radius: 16px;
}

.bordered {
  border: 3px solid #ef4444;
}

.highlight-callout {
  margin-top: 10px;
  font-weight: 600;
}

.disclaimer {
  font-size: 0.8rem;
  color: #6b7280;
}

/* LIST */

.list {
  padding-left: 18px;
  margin: 6px 0 0;
  color: #4b5563;
}

.list li {
  margin-bottom: 3px;
}

/* ACCENT SECTION */

.section.accent {
  background: #fef2f2;
}

/* FOOTER */

.site-footer {
  background: #cc0000;
  color: #ffffff;
  text-align: center;
  padding: 14px 12px;
  font-size: 0.85rem;
}

.footer-small {
  font-size: 0.75rem;
  color: #ffffff;
}

/* FORMS (fleet pages) */

.page-wrap {
  max-width: 900px;
  margin: 24px auto 40px;
  padding: 0 16px;
}

.page-header {
  text-align: center;
  margin-bottom: 16px;
}

.page-header h1 {
  margin: 6px 0;
  font-size: 1.8rem;
}

.page-header p {
  margin: 0;
  color: #4b5563;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.form-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}

input,
textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 16px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    padding: 24px 16px 32px;
  }

  .hero-left h1 {
    font-size: 2.1rem;
  }

  .hero-right {
    max-width: 100%;
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}