@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES — Color palette pulled from live 3steptrailerrentals.com
   ============================================================ */
:root {
  /* Dark backgrounds */
  --navy:        #0D0D0D;
  --navy-mid:    #1A1A1A;
  --navy-light:  #2A2A2A;

  /* Brand accent — crimson */
  --cyan:        #8B1A28;
  --cyan-dark:   #6E1520;

  /* Buttons / CTA — unified to crimson */
  --orange:      #8B1A28;
  --orange-alt:  #A3202F;

  /* Text on dark */
  --slate:       #7A6E6E;
  --slate-light: #A89E9E;

  /* Light surfaces */
  --surface:     #F0E9DF;
  --surface2:    #DDD6CC;
  --white:       #FFFFFF;

  /* Text on light */
  --ink:         #1C1C1C;
  --ink2:        #4A3D36;
  --ink3:        #6B6055;

  /* Status */
  --green:       #157351;
  --green-bg:    #D6F3E6;
  --red:         #dc3232;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.05;
}

.section-sub {
  color: var(--ink3);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 560px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo .logo-accent { color: var(--orange); }
.nav-logo .logo-step { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 7px 18px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--orange-alt) !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  background: var(--navy);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a.active,
.nav-drawer a:hover { color: var(--white); }
.nav-drawer .drawer-cta {
  margin-top: 14px;
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
}

/* Desktop dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.15s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown-caret { font-size: 10px; transition: transform 0.15s; }
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  overflow: hidden;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(139,26,40,0.2); color: var(--white); }

/* Mobile drawer dropdown */
.drawer-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.15s;
}
.drawer-dropdown-toggle:hover { color: var(--white); }
.drawer-dropdown-caret { font-size: 12px; transition: transform 0.15s; }
.drawer-dropdown.open .drawer-dropdown-caret { transform: rotate(180deg); }

.drawer-dropdown-menu {
  display: none;
  padding-left: 14px;
}
.drawer-dropdown.open .drawer-dropdown-menu { display: block; }
.drawer-dropdown-menu a {
  display: block;
  padding: 9px 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.drawer-dropdown-menu a:last-child { border-bottom: none; }
.drawer-dropdown-menu a:hover { color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--orange-alt); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.btn-cyan {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}
.btn-cyan:hover { background: var(--cyan-dark); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
}
.btn-white:hover { opacity: 0.9; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--cyan);
  padding: 10px 40px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
}
.trust-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 12px;
  border-right: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }

/* ============================================================
   PAGE HERO (small, dark — used on inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 64px 40px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 35%;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 8px,
    rgba(139,26,40,0.04) 8px, rgba(139,26,40,0.04) 9px
  );
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero .section-title { color: var(--white); font-size: 52px; }
.page-hero .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 24px; }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section {
  padding: 56px 40px;
}
.section-dark {
  background: var(--navy);
  padding: 56px 40px;
}
.section-tint {
  background: var(--surface);
  padding: 56px 40px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   TRAILER CARDS
   ============================================================ */
.trailers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trailer-card {
  background: var(--white);
  border: 1px solid var(--surface2);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}
.trailer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(6,22,58,0.12);
}

.trailer-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.trailer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.trailer-img-icon {
  height: 150px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.trailer-img-icon img {
  max-height: 100px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.9);
}

.trailer-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

.trailer-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 5px;
}
.trailer-badge {
  display: inline-block;
  background: rgba(139,26,40,0.1);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.trailer-desc {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 14px;
  line-height: 1.55;
  flex: 1;
}
.trailer-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.price-from { font-size: 11px; color: var(--ink3); text-transform: uppercase; letter-spacing: 0.06em; }
.price-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.price-unit { font-size: 12px; color: var(--ink3); }

.trailer-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.trailer-link:hover { gap: 8px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 32px;
}
.step-line {
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.step-line::after {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translateX(-50%);
}
.step { padding: 0 24px; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  color: var(--white);
  margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   WHY CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--surface2);
  border-radius: 8px;
  padding: 22px;
}
.why-icon {
  width: 40px; height: 40px;
  background: rgba(139,26,40,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--ink); margin-bottom: 6px;
}
.why-desc { font-size: 13px; color: var(--ink3); line-height: 1.6; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.reviews-score { display: flex; align-items: center; gap: 16px; }
.big-score {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 56px;
  line-height: 1; color: var(--ink);
}
.score-stars { color: #F5A623; font-size: 20px; letter-spacing: 2px; }
.score-count { font-size: 13px; color: var(--ink3); margin-top: 2px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--surface2);
  border-radius: 8px;
  padding: 18px;
}
.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--white); flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-date { font-size: 12px; color: var(--ink3); }
.review-stars { color: #F5A623; font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: var(--ink2); line-height: 1.6; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--orange);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-band-text .section-title { color: var(--white); font-size: 32px; }
.cta-band-sub { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.cta-band-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-label .req { color: var(--orange); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--surface2);
  border-radius: 5px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--cyan); }
.form-input.error,
.form-select.error,
.form-textarea.error { border-color: var(--red); }
.form-error { font-size: 12px; color: var(--red); display: none; }
.form-error.show { display: block; }

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

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2362718D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit-wrap { margin-top: 8px; }

/* Success message */
.form-success {
  display: none;
  background: var(--green-bg);
  border: 1.5px solid var(--green);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  color: var(--green); margin-bottom: 6px;
}
.form-success p { font-size: 14px; color: var(--ink2); }

/* ============================================================
   SPECS TABLE
   ============================================================ */
.specs-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin: 14px 0;
}
.specs-list li {
  font-size: 13px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 7px;
}
.specs-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Trailer detail page — 2-col layout (photos | info) */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Pricing table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 14px;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.price-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--surface2);
  color: var(--ink2);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .bold { font-weight: 600; color: var(--ink); }
.price-table .highlight td { background: rgba(139,26,40,0.06); }

/* ============================================================
   FAQ STRIP
   ============================================================ */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--surface2);
  padding: 0;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--cyan);
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CONTACT CARD
   ============================================================ */
.contact-card {
  background: var(--navy);
  border-radius: 10px;
  padding: 32px;
  color: var(--white);
}
.contact-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--white); margin-bottom: 20px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(139,26,40,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-value { font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 500; }
.contact-value a { color: var(--cyan); }

/* Google Map embed */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--surface2);
  margin-top: 28px;
}
.map-wrap iframe { display: block; width: 100%; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img { border-radius: 8px; overflow: hidden; }
.about-img img { width: 100%; height: 320px; object-fit: cover; }

/* Service area grid — 4 columns desktop, 2 on mobile */
.service-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Us page — form + sidebar layout */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}
.sidebar-sticky { position: sticky; top: 80px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px;
}
.stat-item {
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 36px;
  color: var(--cyan);
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 40px 40px 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .nav-logo { margin-bottom: 10px; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 260px; }

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--white); }
.footer-col a.highlight { color: var(--cyan); }

.footer-bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.3); }

.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { color: rgba(255,255,255,0.4); transition: color 0.2s; display: flex; align-items: center; }
.footer-social a:hover { color: var(--white); }

/* ============================================================
   INLINE STAR BADGE
   ============================================================ */
.stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.stars-badge .stars { color: #F5C842; font-size: 14px; letter-spacing: 1px; }
.stars-badge .stars-text { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s, background 0.15s;
}
.float-call-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-call-btn:hover { background: var(--orange-alt); color: var(--white); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-cyan { color: var(--cyan); }
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-muted { color: var(--ink3); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .section, .section-dark, .section-tint { padding: 48px 24px; }
  .site-nav { padding: 0 24px; }
  .trust-bar { padding: 10px 24px; }
  .cta-band { padding: 40px 24px; }
  .site-footer { padding: 32px 24px 20px; }
  .trailers-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .section, .section-dark, .section-tint { padding: 40px 20px; }
  .site-nav { padding: 0 20px; }
  .page-hero { padding: 44px 20px 36px; }
  .page-hero .section-title { font-size: 36px; }

  .trailers-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; gap: 28px; }
  .specs-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 28px; }
  .step-line { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-area-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-layout .sidebar-sticky { position: static; }
  .about-img { order: -1; }
  .about-img img { height: 220px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .trust-bar { flex-wrap: wrap; gap: 0; flex-direction: column; padding: 12px 20px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); min-width: unset; width: 100%; justify-content: flex-start; padding: 8px 0; white-space: normal; }
  .trust-item:last-child { border-bottom: none; }
  .section-title { font-size: 28px; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .cta-band-btns { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-white, .btn-cyan { width: 100%; justify-content: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .float-call-btn { bottom: 16px; right: 16px; font-size: 14px; padding: 11px 16px; }
}

@media (max-width: 768px) {
  .book-layout { grid-template-columns: 1fr !important; }
  .hero-img-wrap { width: 100% !important; opacity: 0.4 !important; }
  .hero-img-wrap img { object-position: center center; }
  .hero-gradient-mobile { display: block !important; }
  .page-hero .hero-img-wrap { opacity: 0.45 !important; }
}
