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

:root {
  --black: #050505;
  --panel: #0c0c0c;
  --panel2: #111111;
  --gold: #d7a431;
  --gold2: #ffe189;
  --text: #f7f1e4;
  --muted: #cac2b4;
  --line: rgba(215, 164, 49, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(190, 139, 35, 0.11), transparent 25%),
    radial-gradient(circle at 75% 20%, rgba(255, 215, 106, 0.06), transparent 28%),
    #020202;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

/* Header */

.topbar {
  height: 86px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 230px 1fr 220px;
  align-items: center;
  gap: 22px;
  background: linear-gradient(180deg, #060606, #030303);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 999;
}

.brand img {
  width: 220px;
  max-height: 78px;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  align-items: center;
  white-space: nowrap;
}

.main-nav a {
  padding: 30px 0 24px;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold2);
  border-bottom-color: var(--gold2);
}

.reserve-nav {
  justify-self: end;
  border: 1px solid var(--gold);
  padding: 15px 20px;
  border-radius: 4px;
  color: var(--gold2);
  text-transform: uppercase;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.reserve-nav:hover {
  background: rgba(215, 164, 49, 0.12);
}

.mini-shield {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.mobile-menu {
  display: none;
  background: transparent;
  color: var(--gold2);
  border: 1px solid var(--gold);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 24px;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 26px;
  align-items: center;
  padding: 28px 72px 26px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.64) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 110px),
    linear-gradient(180deg, #070707, #020202);
}

.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.2vw, 76px);
  line-height: 0.95;
  font-weight: 500;
}

.hero-copy h1 span {
  color: var(--gold2);
}

.gold-line {
  width: 235px;
  height: 3px;
  background: linear-gradient(90deg, #8f6414, var(--gold2), #8f6414);
  margin: 25px 0 20px;
}

.hero-copy p {
  max-width: 660px;
  font-size: 19px;
  line-height: 1.48;
  color: #efe8db;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.gold-btn,
.dark-gold-btn,
.secure-reservation {
  min-height: 50px;
  padding: 0 28px;
  border-radius: 5px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: 0.18s ease;
}

.gold-btn,
.secure-reservation {
  background: linear-gradient(180deg, #ffe28a, #c88920);
  color: #090909;
}

.dark-gold-btn {
  background: rgba(0, 0, 0, 0.55);
  color: var(--gold2);
}

.gold-btn:hover,
.dark-gold-btn:hover,
.secure-reservation:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 16px;
  align-items: stretch;
}

.hero-main {
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0c0c0c;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.6);
}

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

.hero-thumbs {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 12px;
}

.hero-thumb {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0d0d0d;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
}

.hero-thumb.active,
.hero-thumb:hover {
  border-color: var(--gold2);
  box-shadow: 0 0 0 1px rgba(255, 225, 137, 0.35);
}

.hero-thumb img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  border-radius: 4px;
}

/* Main Homepage Panels */

.control-panel {
  display: grid;
  grid-template-columns: 58% 42%;
  border-bottom: 1px solid var(--line);
}

.fleet-panel,
.alerts-panel {
  padding: 22px 24px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 164, 49, 0.11), transparent 28%),
    linear-gradient(180deg, #090909, #030303);
}

.fleet-panel {
  border-right: 1px solid var(--line);
}

.alerts-panel {
  border-right: none;
}

.panel-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.panel-title span {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}

.panel-title h2 {
  color: var(--gold2);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Fleet Cards */

.vehicle-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.vehicle-card {
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  overflow: hidden;
  min-height: 330px;
  cursor: pointer;
  transition: 0.2s ease;
}

.vehicle-card.selected,
.vehicle-card:hover {
  border-color: var(--gold2);
  box-shadow:
    0 0 0 1px rgba(255, 215, 106, 0.4),
    0 16px 44px rgba(215, 164, 49, 0.22);
  transform: translateY(-3px);
}

.vehicle-img-wrap {
  height: 150px;
  border-bottom: 1px solid rgba(215, 164, 49, 0.22);
  background: #111111;
}

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

.vehicle-card h3 {
  padding: 14px 16px 4px;
  font-size: 19px;
  font-weight: 800;
}

.vehicle-card p {
  padding: 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.vehicle-book-link {
  width: calc(100% - 32px);
  min-height: 46px;
  margin: 18px 16px 16px;
  padding: 14px 12px;
  background: linear-gradient(180deg, #ffe28a, #c88920);
  color: #090909;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
}

.vehicle-book-link:hover {
  filter: brightness(1.07);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: var(--gold2);
  border-color: var(--gold2);
  box-shadow: 0 0 16px rgba(255, 215, 106, 0.5);
}

/* Alerts / Payment Panel */

.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  color: var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 54px;
  margin: 16px 0 0 28px;
}

.alerts-copy {
  margin: -68px 20px 24px 118px;
  color: #eee8dc;
  font-size: 18px;
  line-height: 1.42;
}

.alert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.alert-card,
.payment-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 15, 15, 0.75);
  border-radius: 5px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.alert-icon {
  width: 70px;
  min-width: 70px;
  height: 58px;
  color: var(--gold2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.alert-card h3,
.payment-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.alert-card p,
.payment-card p {
  font-size: 13px;
  color: var(--muted);
}

.payment-card {
  margin-top: 22px;
  justify-content: space-between;
}

.payment-card img {
  width: 50px;
  height: 58px;
  object-fit: contain;
}

.cards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cards span {
  background: #10245f;
  color: #ffffff;
  border-radius: 3px;
  padding: 8px 12px;
  font-weight: 900;
  min-width: 58px;
  text-align: center;
}

.cards span:nth-child(2) {
  background: linear-gradient(90deg, #d71518 0 50%, #e5a126 50%);
}

.cards span:nth-child(3) {
  background: #2e72bc;
  font-size: 12px;
}

.cards span:nth-child(4) {
  background: #111111;
  border: 1px solid #777777;
  font-size: 12px;
}

/* Gallery */

.gallery-section {
  padding: 52px 72px 64px;
  background: #030303;
  border-bottom: 1px solid rgba(215, 164, 49, 0.26);
}

.section-heading {
  text-align: center;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  color: var(--gold2);
  font-weight: 500;
  margin-bottom: 10px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 14px 15px;
  color: #f3eee1;
  font-weight: 700;
}

/* Security Banner */

.security-banner {
  min-height: 138px;
  display: grid;
  grid-template-columns: 170px 1fr 1px 1.1fr 340px;
  gap: 30px;
  align-items: center;
  padding: 18px 72px;
  background:
    radial-gradient(circle at 12% 25%, rgba(215, 164, 49, 0.16), transparent 20%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0 6px, transparent 6px 14px),
    #080808;
  border-bottom: 1px solid rgba(215, 164, 49, 0.3);
}

.bottom-logo img {
  width: 126px;
  height: 126px;
  margin: 0 auto;
  object-fit: contain;
}

.security-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.security-banner p {
  color: var(--gold2);
  font-size: 24px;
  margin-top: 8px;
}

.divider {
  height: 92px;
  width: 1px;
  background: var(--line);
}

.banner-copy {
  color: #eee8dc !important;
  font-size: 18px !important;
  line-height: 1.45;
  margin: 0 !important;
}

.security-banner .secure-reservation {
  display: inline-flex;
  text-align: center;
  text-decoration: none;
}

/* Contact */

.contact-section {
  padding: 60px 24px 80px;
  text-align: center;
  background: #020202;
}

.contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  color: var(--gold2);
  margin-bottom: 15px;
}

.contact-section p {
  color: var(--muted);
  max-width: 780px;
  margin: 0 auto 24px;
  font-size: 18px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-actions a {
  border: 1px solid var(--gold);
  color: var(--gold2);
  padding: 14px 22px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-actions a:hover {
  background: rgba(215, 164, 49, 0.12);
}

/* Stripe Reservation Page */

.reservation-section {
  min-height: 100vh;
  padding: 70px 20px;
  background:
    radial-gradient(circle at 15% 0%, rgba(190, 139, 35, 0.12), transparent 25%),
    radial-gradient(circle at 75% 20%, rgba(255, 215, 106, 0.06), transparent 28%),
    #050505;
  color: #ffffff;
}

.reservation-container {
  max-width: 900px;
  margin: 0 auto;
  background: #101010;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.reservation-container h1 {
  color: #d4af37;
  font-size: 36px;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.reservation-container p {
  color: #dddddd;
  line-height: 1.5;
}

.reservation-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #333333;
  background: #050505;
  color: #ffffff;
  font-size: 16px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;
}

.reservation-submit {
  margin-top: 12px;
  padding: 16px 24px;
  border: none;
  border-radius: 999px;
  background: #d4af37;
  color: #000000;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.reservation-submit:hover {
  background: #f2c94c;
}

.reservation-message {
  color: #d4af37;
  font-weight: 700;
}

/* Old Modal Support */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 22px;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(540px, 100%);
  background: linear-gradient(180deg, #161616, #050505);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.75);
  position: relative;
}

.modal-card img {
  width: 82px;
  margin: 0 auto 16px;
}

.modal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  color: var(--gold2);
  margin-bottom: 12px;
}

.modal-card p {
  color: #eee8dc;
  margin-bottom: 22px;
  line-height: 1.5;
  white-space: pre-line;
}

.close-modal {
  position: absolute;
  right: 14px;
  top: 10px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 34px;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 1400px) {
  .topbar {
    padding: 0 28px;
    grid-template-columns: 210px 1fr 190px;
  }

  .brand img {
    width: 200px;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero,
  .gallery-section,
  .security-banner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .control-panel {
    grid-template-columns: 1fr;
  }

  .fleet-panel,
  .alerts-panel {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-banner {
    grid-template-columns: 120px 1fr;
  }

  .divider,
  .banner-copy,
  .secure-reservation {
    grid-column: 1 / -1;
  }

  .secure-reservation {
    width: min(440px, 100%);
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .topbar {
    height: auto;
    min-height: 82px;
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .brand img {
    width: 190px;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav,
  .reserve-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 8px 0;
  }

  .main-nav.open a {
    padding: 12px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-thumbs {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: none;
  }

  .hero-thumb img {
    height: 82px;
  }

  .control-panel,
  .alert-cards,
  .gallery-grid,
  .security-banner {
    grid-template-columns: 1fr;
  }

  .gallery-section {
    padding: 38px 18px 50px;
  }

  .vehicle-track {
    grid-template-columns: 1fr 1fr;
  }

  .alerts-copy {
    margin: 16px 0 24px;
    text-align: center;
  }

  .check-circle {
    margin: 8px auto;
  }

  .payment-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards {
    justify-content: flex-start;
  }

  .security-banner {
    text-align: center;
    padding: 24px 18px;
  }

  .bottom-logo img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .reservation-container {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-container h1 {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .vehicle-track {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 210px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .gold-btn,
  .dark-gold-btn,
  .secure-reservation {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions a {
    width: 100%;
  }
}
/* =========================================================
   BLACKSHIELD RESERVATION PAGE
   ========================================================= */

.reservation-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(192, 145, 45, 0.14), transparent 34%),
    #070707;
  color: #f5f2ea;
}

.reservation-page * {
  box-sizing: border-box;
}

.reservation-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid rgba(214, 171, 72, 0.28);
  backdrop-filter: blur(14px);
}

.reservation-brand {
  display: inline-flex;
  align-items: center;
}

.reservation-brand img {
  display: block;
  width: auto;
  max-width: 210px;
  max-height: 62px;
  object-fit: contain;
}

.reservation-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reservation-phone,
.reservation-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 4px;
  color: #f8f4ea;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.reservation-phone {
  background: linear-gradient(135deg, #d8aa43, #9e741e);
  color: #090909;
}

.reservation-home-link {
  border: 1px solid rgba(216, 170, 67, 0.55);
  background: rgba(255, 255, 255, 0.025);
}

.reservation-phone:hover,
.reservation-home-link:hover {
  transform: translateY(-2px);
}

.reservation-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) 22px;
  text-align: center;
  border-bottom: 1px solid rgba(216, 170, 67, 0.18);
  background:
    linear-gradient(rgba(4, 4, 4, 0.68), rgba(4, 4, 4, 0.92)),
    url("assets/fleet-escalade-studio-angle.png") center 42% / cover no-repeat;
}

.reservation-hero::after {
  content: "";
  position: absolute;
  inset: auto 50% 0;
  width: min(420px, 70%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, #d8aa43, transparent);
}

.reservation-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
}

.reservation-eyebrow,
.summary-eyebrow {
  margin: 0 0 12px;
  color: #d8aa43;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.reservation-hero h1 {
  max-width: 900px;
  margin: 0 auto 22px;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.06;
}

.reservation-hero p:last-child {
  max-width: 780px;
  margin: 0 auto;
  color: #d6d1c7;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.8;
}

.reservation-section {
  padding: clamp(48px, 7vw, 90px) 20px;
}

.reservation-container {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.reservation-intro {
  margin-bottom: 28px;
  text-align: center;
}

.reservation-intro h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.reservation-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: #bdb7ab;
  line-height: 1.7;
}

.reservation-form {
  display: grid;
  gap: 24px;
}

.reservation-fieldset {
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(216, 170, 67, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}

.reservation-fieldset legend {
  padding: 0 12px;
  color: #d8aa43;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  color: #f0ece3;
  font-size: 0.95rem;
  font-weight: 700;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(216, 170, 67, 0.22);
  border-radius: 5px;
  outline: none;
  background: #111111;
  color: #ffffff;
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.reservation-form textarea {
  min-height: 130px;
  resize: vertical;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: #77736c;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: #d8aa43;
  background: #141414;
  box-shadow: 0 0 0 3px rgba(216, 170, 67, 0.12);
}

.reservation-form select option {
  background: #111111;
  color: #ffffff;
}

.field-help {
  color: #8f8a80;
  font-size: 0.78rem;
  line-height: 1.45;
}

.field-active label {
  color: #e7bd62;
}

.calculate-price-button,
.reservation-submit {
  width: 100%;
  min-height: 56px;
  padding: 15px 22px;
  border: 1px solid #e1b855;
  border-radius: 5px;
  background: linear-gradient(135deg, #e1b855, #a97c22);
  color: #080808;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.035em;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(216, 170, 67, 0.16);
  transition:
    transform 0.2s ease,
    filter 0.2s ease,
    opacity 0.2s ease;
}

.calculate-price-button:hover,
.reservation-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.calculate-price-button:disabled,
.reservation-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.reservation-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: #e3be68;
  text-align: center;
  line-height: 1.5;
}

.price-summary {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(216, 170, 67, 0.48);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(216, 170, 67, 0.12), transparent 45%),
    #101010;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

.price-summary[hidden],
.payment-options-section[hidden] {
  display: none;
}

.price-summary-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(216, 170, 67, 0.22);
}

.price-summary-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.price-summary-heading > strong {
  color: #e0b34f;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  white-space: nowrap;
}

.price-summary-list {
  margin: 0;
}

.price-summary-list > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-summary-list dt {
  color: #aaa49a;
  font-weight: 700;
}

.price-summary-list dd {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  text-align: right;
}

.price-summary-note,
.payment-policy,
.secure-payment-note {
  margin: 18px 0 0;
  color: #928d84;
  font-size: 0.82rem;
  line-height: 1.65;
}

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

.payment-option-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.payment-option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.payment-option-content {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(216, 170, 67, 0.22);
  border-radius: 7px;
  background: #101010;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.payment-option-content strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.payment-option-content span {
  color: #aaa49a;
  line-height: 1.55;
}

.payment-option-content b {
  margin-top: auto;
  color: #dfb456;
  font-size: 1.05rem;
}

.payment-option-card:hover .payment-option-content {
  transform: translateY(-3px);
  border-color: rgba(216, 170, 67, 0.5);
}

.payment-option-card input:checked + .payment-option-content {
  border-color: #d8aa43;
  background:
    linear-gradient(145deg, rgba(216, 170, 67, 0.16), rgba(18, 18, 18, 1));
  box-shadow:
    0 0 0 2px rgba(216, 170, 67, 0.16),
    0 18px 35px rgba(0, 0, 0, 0.26);
}

.payment-option-card input:disabled + .payment-option-content {
  cursor: not-allowed;
  opacity: 0.38;
  filter: grayscale(0.4);
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c9c3b8;
  line-height: 1.6;
  cursor: pointer;
}

.terms-checkbox input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: #d8aa43;
}

.reservation-submit {
  min-height: 62px;
  font-size: 1rem;
}

.secure-payment-note {
  margin-top: -8px;
  text-align: center;
}

.reservation-support {
  margin-top: 34px;
  padding: clamp(26px, 5vw, 44px);
  border-left: 4px solid #d8aa43;
  background: #0e0e0e;
}

.reservation-support h2 {
  margin: 0 0 12px;
  color: #ffffff;
}

.reservation-support p {
  max-width: 760px;
  margin: 0;
  color: #aaa49a;
  line-height: 1.7;
}

.reservation-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.reservation-support-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(216, 170, 67, 0.55);
  border-radius: 4px;
  color: #e2b85b;
  font-weight: 800;
  text-decoration: none;
}

.reservation-support-actions a:first-child {
  background: #d8aa43;
  color: #080808;
}

.reservation-footer {
  padding: 30px 20px;
  border-top: 1px solid rgba(216, 170, 67, 0.18);
  background: #050505;
  color: #817c73;
  text-align: center;
}

.reservation-footer p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.82rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .payment-option-grid {
    grid-template-columns: 1fr;
  }

  .payment-option-content {
    min-height: 0;
  }

  .price-summary-heading {
    flex-direction: column;
  }

  .price-summary-heading > strong {
    white-space: normal;
  }
}

@media (max-width: 700px) {
  .reservation-header {
    position: relative;
    flex-direction: column;
    padding: 16px 20px;
  }

  .reservation-header-actions {
    width: 100%;
  }

  .reservation-phone,
  .reservation-home-link {
    flex: 1;
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .reservation-brand img {
    max-width: 180px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reservation-fieldset {
    padding: 22px 16px;
  }

  .price-summary-list > div {
    flex-direction: column;
    gap: 7px;
  }

  .price-summary-list dd {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .reservation-header-actions {
    flex-direction: column;
  }

  .reservation-phone,
  .reservation-home-link {
    width: 100%;
  }

  .reservation-hero {
    padding: 60px 18px;
  }

  .reservation-section {
    padding-inline: 12px;
  }

  .reservation-fieldset,
  .price-summary,
  .reservation-support {
    border-radius: 6px;
  }
}
/* =========================================================
   BLACKSHIELD SEO HOMEPAGE SECTIONS
   ========================================================= */

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 18px;
  background: #d8aa43;
  color: #050505;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.hero-eyebrow,
.section-eyebrow,
.event-banner-eyebrow {
  margin: 0 0 12px;
  color: #d8aa43;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust-list li {
  position: relative;
  padding-left: 18px;
  color: #bcb5aa;
  font-size: 0.9rem;
}

.hero-trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d8aa43;
  font-weight: 900;
}

.event-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 100px) 22px;
  background:
    linear-gradient(115deg, rgba(4, 4, 4, 0.96), rgba(16, 13, 7, 0.85)),
    url("assets/fleet-escalade-studio-angle.png") center / cover no-repeat;
  border-top: 1px solid rgba(216, 170, 67, 0.22);
  border-bottom: 1px solid rgba(216, 170, 67, 0.22);
}

.event-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 30%, rgba(216, 170, 67, 0.18), transparent 34%);
}

.event-banner-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.event-banner h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.event-banner p {
  max-width: 760px;
  margin: 0 auto;
  color: #d1cbc0;
  font-size: 1.03rem;
  line-height: 1.8;
}

.event-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.event-banner small {
  display: block;
  max-width: 760px;
  margin: 24px auto 0;
  color: #8e887e;
  line-height: 1.55;
}

.services-section,
.service-areas-section,
.payment-process-section,
.faq-section,
.airport-section {
  padding: clamp(62px, 8vw, 108px) 22px;
}

.services-section,
.payment-process-section,
.faq-section {
  background: #080808;
}

.service-areas-section,
.airport-section {
  background:
    radial-gradient(circle at top left, rgba(216, 170, 67, 0.09), transparent 34%),
    #0d0d0d;
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.section-heading p:last-child {
  margin: 0;
  color: #aaa49a;
  line-height: 1.75;
}

.services-grid,
.service-area-grid,
.process-grid {
  display: grid;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

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

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

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

.service-card,
.service-area-grid article,
.process-grid article {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(216, 170, 67, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: 0 20px 45px rgba(0,0,0,0.24);
}

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.service-number,
.process-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(216, 170, 67, 0.45);
  border-radius: 50%;
  color: #d8aa43;
  font-weight: 900;
}

.service-card h3,
.service-area-grid h3,
.process-grid h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.25rem;
}

.service-card p,
.service-area-grid p,
.process-grid p {
  margin: 0;
  color: #aaa49a;
  line-height: 1.7;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
  color: #d8aa43;
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover {
  color: #f0ca73;
}

.fleet-introduction {
  width: min(760px, 100%);
  margin: -8px auto 30px;
  color: #aaa49a;
  line-height: 1.7;
  text-align: center;
}

.airport-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.airport-content h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.airport-content > div:first-child > p:not(.section-eyebrow) {
  color: #aaa49a;
  line-height: 1.8;
}

.airport-content .gold-btn {
  margin-top: 18px;
}

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

.airport-benefits article {
  padding: 24px;
  border: 1px solid rgba(216, 170, 67, 0.2);
  border-radius: 8px;
  background: #111111;
}

.airport-benefits h3 {
  margin: 0 0 10px;
  color: #ffffff;
}

.airport-benefits p {
  margin: 0;
  color: #99938a;
  line-height: 1.6;
}

.centered-cta {
  margin-top: 36px;
  text-align: center;
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid rgba(216, 170, 67, 0.18);
  background: rgba(255,255,255,0.015);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 18px;
  color: #ffffff;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: #d8aa43;
  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 18px 22px;
  color: #aaa49a;
  line-height: 1.75;
}

.business-contact {
  margin-top: 24px;
  color: #99938a;
  font-style: normal;
  line-height: 1.8;
}

.business-contact a {
  color: #d8aa43;
}

.site-footer {
  padding: 56px 22px 24px;
  background: #050505;
  border-top: 1px solid rgba(216, 170, 67, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-grid img {
  width: auto;
  max-width: 210px;
  max-height: 70px;
  object-fit: contain;
}

.footer-grid p {
  max-width: 380px;
  color: #8e887f;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #aaa49a;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #d8aa43;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 100%);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-bottom p {
  margin: 0;
  color: #777169;
  font-size: 0.78rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .services-grid,
  .service-area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .airport-content {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .services-grid,
  .service-area-grid,
  .process-grid,
  .airport-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-banner-actions {
    flex-direction: column;
  }

  .event-banner-actions a {
    width: 100%;
  }

  .hero-trust-list {
    flex-direction: column;
  }

  .service-card {
    min-height: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
