/*
Theme Name: Smart Car Shipping
Theme URI: https://smartcarshipping.com
Author: Smart Car Shipping
Author URI: https://smartcarshipping.com
Description: Custom WordPress theme for Smart Car Shipping — licensed auto transport broker. Features a modern responsive landing page with quote form, services, testimonials, FAQ accordion, and full Contact Form 7 integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smart-car-shipping
Tags: one-page, custom-logo, responsive, transport, auto-shipping
*/

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0B1D3A;
  --navy-deep: #061428;
  --navy-light: #132D54;
  --orange: #F5891F;
  --orange-hover: #E07510;
  --orange-glow: rgba(245, 137, 31, 0.25);
  --gold: #FFBD3D;
  --white: #FFFFFF;
  --off-white: #F6F8FB;
  --gray-100: #EEF1F6;
  --gray-200: #D8DDE6;
  --gray-400: #94A0B4;
  --gray-600: #5A6A85;
  --gray-800: #2C3A50;
  --green: #22C55E;
  --star: #FBBF24;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(11,29,58,0.08);
  --shadow-md: 0 4px 20px rgba(11,29,58,0.10);
  --shadow-lg: 0 8px 40px rgba(11,29,58,0.14);
  --shadow-xl: 0 20px 60px rgba(11,29,58,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.logo img {
  max-height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { flex-shrink: 0; }
.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(245,137,31,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(19,45,84,0.5) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  z-index: 1;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}
.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(6,20,40,0.9), transparent);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 70px 0 90px;
}
.hero-content {
  max-width: 760px;
  margin-bottom: 48px;
}
.hero-content h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 13.5px;
  font-weight: 600;
}
.hero-badge svg { color: var(--green); flex-shrink: 0; }

/* Quote Form — horizontal card below hero text */
.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(245,137,31,0.08);
  position: relative;
  width: 100%;
  max-width: 1100px;
}
.quote-form-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--orange), var(--gold), var(--orange));
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
}
.form-title {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
  text-align: center;
}
h2.form-title {margin-bottom: 30px}

.form-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== CF7 HORIZONTAL FORM LAYOUT ===== */

/* The CF7 form itself */
.quote-form-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each .quote-form-container is a row of fields */
.quote-form-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px 16px;
  align-items: end;
  margin-bottom: 14px;
}

/* Individual field wrappers */
.quote-form-filds,
.quote-form-filds-2 {
  min-width: 0;
}
.quote-form-filds p,
.quote-form-filds-2 p {
  margin: 0;
}
.quote-form-filds b,
.quote-form-filds-2 b {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* All text inputs, selects, email, date within the form card */
.quote-form-card input[type="text"],
.quote-form-card input[type="email"],
.quote-form-card input[type="tel"],
.quote-form-card input[type="date"],
.quote-form-card select,
.quote-form-card .wpcf7-form-control:not(.wpcf7-submit):not([type="radio"]):not([type="checkbox"]):not([type="hidden"]) {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.quote-form-card input:focus,
.quote-form-card select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.quote-form-card input::placeholder { color: var(--gray-400); }

/* Select dropdown arrow */
.quote-form-card select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A0B4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Transport Type / Operable radio groups — inline */
.quote-form-transport-type {
  min-width: 0;
}
.quote-form-transport-type .title p {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 5px;
}
.quote-form-transport-type .types {
  display: flex;
  gap: 8px;
}
.quote-form-transport-type .types > div {
  flex: 1;
}
.quote-form-transport-type .types p {
  margin: 0;
}
.quote-form-transport-type .types input[type="radio"] {
  display: none;
}
.quote-form-transport-type .types label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--off-white);
  transition: var(--transition);
  text-align: center;
}
.quote-form-transport-type .types input[type="radio"]:checked + label {
  border-color: var(--orange);
  background: rgba(245,137,31,0.06);
  color: var(--orange);
}

/* SMS consent checkbox area */
.quote-form-text-3 {
  grid-column: 1 / -1;
}
.quote-form-text-3 p {
  margin: 0;
  font-size: 11.5px;
  color: var(--gray-400);
  line-height: 1.5;
  display: block;
  align-items: flex-start;
  gap: 8px;
}
.quote-form-text-3 input[type="checkbox"] {
  margin-top: 2px;
  margin-right: 6px;
  flex-shrink: 0;
  accent-color: var(--orange);
}
.quote-form-text-3 a {
  color: var(--orange);
  text-decoration: underline;
}

/* Submit button row */
.quote-form-submit-button {
  grid-column: 1 / -1;
}
.quote-form-submit-button p { margin: 0; }
.quote-form-card .wpcf7-submit,
.quote-form-card input[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245,137,31,0.35);
}
.quote-form-card .wpcf7-submit:hover,
.quote-form-card input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245,137,31,0.45);
}

/* CF7 validation messages */
.wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}
.wpcf7-response-output {
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: 14px;
  margin: 16px 0 0 !important;
  text-align: center;
}

/* Spinner */
.wpcf7-spinner {
  display: none;
}

/* Legacy fallback form (if CF7 not configured) */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group { position: relative; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.quote-form-card .wpcf7-form-control:not(.wpcf7-submit):not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-800);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.quote-form-card .wpcf7-form-control:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group input::placeholder { color: var(--gray-400); }

.transport-options,
.condition-options {
  display: flex;
  gap: 10px;
}
.transport-option,
.condition-option { flex: 1; position: relative; }
.transport-option input[type="radio"],
.condition-option input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.transport-option label.radio-label,
.condition-option label.radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--off-white);
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0;
}
.transport-option input[type="radio"]:checked + label.radio-label,
.condition-option input[type="radio"]:checked + label.radio-label {
  border-color: var(--orange);
  background: rgba(245,137,31,0.06);
  color: var(--orange);
}

/* CF7 radio overrides */
.quote-form-card .wpcf7-radio {
  display: flex;
  gap: 10px;
}
.quote-form-card .wpcf7-radio .wpcf7-list-item {
  flex: 1;
  margin: 0;
}
.quote-form-card .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--off-white);
  transition: var(--transition);
  text-transform: none;
}
.quote-form-card .wpcf7-radio .wpcf7-list-item input[type="radio"] {
  display: none;
}
.quote-form-card .wpcf7-radio .wpcf7-list-item input[type="radio"]:checked + span,
.quote-form-card .wpcf7-radio .wpcf7-list-item.active label {
  border-color: var(--orange);
  background: rgba(245,137,31,0.06);
  color: var(--orange);
}

/* Buttons */
.btn-primary,
.quote-form-card .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  box-shadow: 0 4px 15px rgba(245,137,31,0.35);
}
.btn-primary:hover,
.quote-form-card .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245,137,31,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245,137,31,0.3);
}
.btn-secondary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245,137,31,0.45);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* CF7 validation */
.wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
}
.wpcf7-response-output {
  border-radius: var(--radius) !important;
  padding: 12px 16px !important;
  font-size: 14px;
  margin: 16px 0 0 !important;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
}
.trust-item svg { color: var(--orange); }

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy-deep); color: var(--white); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(245,137,31,0.1), rgba(255,189,61,0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.why-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 20%; right: 20%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
  opacity: 0.2;
  border-radius: 2px;
}
.step-card { text-align: center; position: relative; }
.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,137,31,0.3);
  position: relative;
  z-index: 2;
}
.step-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(11,29,58,0.05), rgba(11,29,58,0.02));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.service-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ===== TRUST / CREDENTIALS ===== */
.credentials-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.credentials-text p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.credential-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.credential-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
}
.credential-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,137,31,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.credential-badge-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.credentials-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.shield-graphic {
  width: 200px;
  height: 220px;
  background: linear-gradient(135deg, rgba(245,137,31,0.15), rgba(255,189,61,0.08));
  border-radius: 100px 100px 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245,137,31,0.2);
}
.shield-graphic::after {
  content: '✓';
  font-size: 72px;
  color: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg { color: var(--star); }
.testimonial-quote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.author-info strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
}
.author-info span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== PRICING FACTORS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.pricing-factor {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.pricing-factor:hover { box-shadow: var(--shadow-sm); }
.pricing-factor-icon { font-size: 24px; margin-bottom: 12px; }
.pricing-factor h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-factor p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}
.pricing-cta { text-align: center; }
.pricing-cta p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  line-height: 1.4;
  gap: 16px;
}
.faq-question:hover { color: var(--orange); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: var(--transition);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.75;
}

/* ===== POPULAR ROUTES ===== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.route-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 14px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.route-pill:hover {
  background: rgba(245,137,31,0.12);
  border-color: var(--orange);
  color: var(--white);
}
.route-arrow { color: var(--orange); font-weight: 700; }
.routes-cta { text-align: center; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 500px at 30% 50%, rgba(245,137,31,0.08), transparent),
    radial-gradient(circle 400px at 70% 50%, rgba(255,189,61,0.06), transparent);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.final-cta .hours {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
}
.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 32px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { padding: 50px 0 70px; }
  .quote-form-card { max-width: 100%; }
  .quote-form-container { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .routes-grid { grid-template-columns: repeat(3, 1fr); }
  .credentials-content { grid-template-columns: 1fr; }
  .credentials-visual { order: -1; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy-deep);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-xl);
  }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-inner { padding: 40px 0 60px; }
  .hero-content { margin-bottom: 32px; }
  .quote-form-container { grid-template-columns: 1fr; }
  .quote-form-transport-type .types { flex-direction: row; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .route-pill { font-size: 13px; padding: 12px 14px; white-space: normal; }
  .form-row { grid-template-columns: 1fr; }
  .transport-options { flex-direction: column; }
  .hero-badges { flex-direction: column; align-items: center; }
  .credential-badges { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .final-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .quote-form-card { padding: 20px 16px; }
  .routes-grid { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
