/*
Theme Name: MLG RV Rentals & Deliveries
Theme URI: https://rvrentalssd.com
Description: Child theme for MLG RV Rentals & Deliveries — built on Twenty Twenty-Four
Template: twentytwentyfour
Version: 1.0.0
Author: MLG RV Rentals & Deliveries
Text Domain: rvrentalssd
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:        #1B3A5C;
  --navy-dark:   #0f2440;
  --navy-light:  #2a5580;
  --coral:       #E8652A;
  --coral-dark:  #d0541a;
  --bg:          #FAFAF8;
  --white:       #ffffff;
  --text:        #2D2D2D;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --bg-light:    #F3F4F6;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.16);
  --radius:      8px;
  --radius-lg:   12px;
  --transition:  0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral-dark); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.2rem; color: var(--text-muted); line-height: 1.7; }
.text-white  { color: var(--white) !important; }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-navy   { color: var(--navy); }
.text-coral  { color: var(--coral); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-title   { margin-bottom: 0.75rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.0625rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.col-2-3 { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.col-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary { background: var(--coral); color: var(--white); border-color: var(--coral); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-secondary:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-lg { padding: 1.125rem 2.75rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none !important;
}
.site-logo .logo-rd { color: var(--coral); }
.site-logo small {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav li a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
}
.main-nav li a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-book {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
}
.nav-book:hover { background: var(--coral-dark) !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  height: 120%;
  background: rgba(255,255,255,0.03);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-visual {
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,101,42,0.15);
  color: var(--coral);
  border: 1px solid rgba(232,101,42,0.35);
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .lead { color: rgba(255,255,255,0.82); margin-bottom: 2.5rem; font-size: 1.1875rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
  line-height: 1;
}
.hero-stat span { color: rgba(255,255,255,0.65); font-size: 0.875rem; }

/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.photo-ph {
  background: linear-gradient(135deg, #c5d0dc 0%, #a8b8cc 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #5a7a99;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  padding: 2rem;
}
.photo-ph svg { opacity: 0.5; }
.photo-ph-hero    { min-height: 420px; border-radius: var(--radius-lg); }
.photo-ph-card    { min-height: 220px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.photo-ph-lg      { min-height: 480px; }
.photo-ph-thumb   { min-height: 160px; }
.photo-ph-wide    { min-height: 360px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-dark);
  padding: 1rem 0;
  border-top: 3px solid var(--coral);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   FLEET CARDS
   ============================================================ */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.fleet-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.fleet-card-img { position: relative; }
.fleet-card-type {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fleet-card-type.is-trailer { background: var(--coral); }
.fleet-card-body { padding: 1.5rem; flex: 1; }
.fleet-card-name { font-size: 1.1875rem; margin-bottom: 0.375rem; }
.fleet-card-tagline { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; }
.fleet-specs {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.spec { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; font-weight: 700; color: #4B5563; }
.spec-icon { font-size: 1rem; }
.fleet-card-price { font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.fleet-card-price small { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }
.fleet-card-footer {
  padding: 1.125rem 1.5rem;
  background: #f9fafb;
  border-top: 1px solid var(--border);
}

/* Fleet filter */
.fleet-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(27,58,92,0.06);
}
.filter-btn[data-filter="all"].active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.locations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.location-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.location-card-img { position: relative; }
.location-exclusive {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.location-card-body { padding: 1.5rem; flex: 1; }
.location-card-name { font-size: 1.25rem; margin-bottom: 0.5rem; }
.location-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
}
.location-meta-item { display: flex; align-items: center; gap: 0.375rem; }
.location-card-desc { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.location-nearby { font-size: 0.875rem; color: var(--text-muted); }
.location-nearby strong { color: var(--text); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 3px;
  background: linear-gradient(to right, var(--coral), var(--navy));
  border-radius: 3px;
}
.step-item {
  padding: 0 2rem 2rem;
  text-align: center;
}
.step-num {
  width: 5.5rem;
  height: 5.5rem;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--bg);
  box-shadow: 0 0 0 3px var(--coral);
  position: relative;
  z-index: 1;
}
.step-item h3 { margin-bottom: 0.5rem; }
.step-item p  { color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--coral);
}
.t-stars { color: #F59E0B; font-size: 1.125rem; margin-bottom: 0.875rem; letter-spacing: 0.05em; }
.t-text { color: #374151; font-style: italic; font-size: 1rem; line-height: 1.7; margin-bottom: 1.25rem; }
.t-author { font-weight: 700; color: var(--navy); }
.t-meta { font-size: 0.8125rem; color: var(--text-muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--coral) 0%, #c0501e 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,0.88); font-size: 1.1875rem; margin-bottom: 2rem; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0;
}
.page-header h1  { color: var(--white); margin-bottom: 0.5rem; }
.page-header .lead { color: rgba(255,255,255,0.78); font-size: 1.1rem; }
.breadcrumb { color: rgba(255,255,255,0.55); font-size: 0.875rem; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }

/* ============================================================
   SPECS & SINGLE FLEET
   ============================================================ */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}
.specs-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.875rem 1.125rem;
  text-align: left;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.specs-table td { padding: 0.75rem 1.125rem; border-bottom: 1px solid var(--border); }
.specs-table tr:nth-child(even) td { background: #f9fafb; }
.specs-table td:first-child { font-weight: 700; color: #4B5563; width: 40%; }

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  color: #374151;
}
.feature-check { color: var(--coral); font-weight: 800; flex-shrink: 0; }

.price-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 90px;
}
.price-amount { font-size: 2.75rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-per    { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.5rem; }
.price-note   { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }
.price-box .btn { margin-top: 0.75rem; }

.gallery-main { margin-bottom: 1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }

/* FooGallery override: match gallery-grid 4-column layout on fleet detail pages */
.foogallery-embed .foogallery-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0.5rem !important;
  flex-wrap: unset !important;
  justify-content: unset !important;
  align-items: unset !important;
  --fg-gutter: 0px !important;
}
.foogallery-embed .fg-item {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.foogallery-embed .fg-item-inner,
.foogallery-embed figure.fg-item-inner { width: 100% !important; margin: 0 !important; }
.foogallery-embed .fg-thumb { display: block !important; width: 100% !important; }
.foogallery-embed .fg-image-wrap { display: block !important; width: 100% !important; }
.foogallery-embed .fg-image {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  border-radius: var(--radius) !important;
  display: block !important;
}

/* ============================================================
   PROCESS STEPS (Campsite Delivery page)
   ============================================================ */
.process-list { border-left: 3px solid var(--coral); padding-left: 0; margin-left: 1.5rem; }
.process-item {
  position: relative;
  padding: 0 0 3rem 2.5rem;
}
.process-item:last-child { padding-bottom: 0; }
.process-item::before {
  content: attr(data-step);
  position: absolute;
  left: -1.75rem;
  top: 0;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  border: 4px solid var(--bg);
}
.process-item h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.25rem; }
.process-item p  { color: var(--text-muted); }
.process-item .process-detail {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   BENEFIT CARDS (Consignment)
   ============================================================ */
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.benefit-icon { font-size: 2.75rem; margin-bottom: 1rem; }
.benefit-card h3 { margin-bottom: 0.5rem; }
.benefit-card p  { color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}
.faq-q .faq-icon { color: var(--coral); font-size: 1.5rem; font-weight: 400; flex-shrink: 0; line-height: 1; }
.faq-a { display: none; padding: 0 0 1.25rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); display: inline-block; }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap { max-width: 700px; margin: 0 auto; }
.form-group { margin-bottom: 1.375rem; }
.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
  color: #374151;
}
.form-control {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
}
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-note { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.375rem; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-ph {
  background: linear-gradient(135deg, #c5d0dc, #a8b8cc);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: #5a7a99;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   INCLUDE BOX (what's included list)
   ============================================================ */
.include-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.include-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.include-icon { font-size: 1.75rem; flex-shrink: 0; }
.include-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.include-item p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   RELATED UNITS
   ============================================================ */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: rgba(232,101,42,0.07);
  border: 1.5px solid rgba(232,101,42,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.highlight-box h3 { color: var(--coral); margin-bottom: 0.75rem; }
.navy-box {
  background: rgba(27,58,92,0.06);
  border: 1.5px solid rgba(27,58,92,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.contact-info-icon { font-size: 2.25rem; margin-bottom: 0.875rem; }
.contact-info-card h4 { margin-bottom: 0.5rem; }
.contact-info-card a { color: var(--coral); font-size: 1.0625rem; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-logo {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none !important;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-logo .logo-rd { color: var(--coral); }
.footer-desc { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.footer-contact-item { margin-bottom: 0.5rem; font-size: 0.9375rem; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--coral); }
.footer-heading {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}
.footer-badge {
  background: rgba(232,101,42,0.2);
  color: var(--coral);
  padding: 0.25rem 0.875rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8125rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .fleet-grid  { grid-template-columns: repeat(2, 1fr); }
  .col-2-3, .col-1-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section    { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }
  .hero       { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .fleet-grid         { grid-template-columns: 1fr; }
  .locations-grid     { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .steps-wrap         { grid-template-columns: 1fr; }
  .steps-wrap::before { display: none; }
  .features-list      { grid-template-columns: 1fr; }
  .include-grid       { grid-template-columns: 1fr; }
  .team-values        { grid-template-columns: 1fr; }
  .contact-info-grid  { grid-template-columns: 1fr; }
  .related-grid       { grid-template-columns: 1fr; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
  .foogallery-embed .foogallery-container { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .form-row           { grid-template-columns: 1fr; }
  .trust-bar-inner    { gap: 1rem; }
  .hero-stats         { gap: 1.5rem; }
  .btn-group          { flex-direction: column; }
  .btn-group .btn     { text-align: center; }
  .price-box          { position: static; }
  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .main-nav.is-open { display: flex; }
  .main-nav li a {
    display: block;
    padding: 0.875rem 1.5rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-book { margin-left: 0; }
  .menu-toggle { display: flex; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1   { font-size: 1.75rem; }
}
