:root {
  --rv-blue: #123c69;
  --rv-green: #b2d82e;
  --rv-green-dark: #8fb51f;
  --rv-green-soft: #f1fad4;
  --rv-red: var(--rv-green);
  --rv-brown: var(--rv-green);
  --rv-blue-soft: #eaf2fb;
  --rv-brown-soft: var(--rv-green-soft);
  --rv-ink: #25313b;
  --rv-muted: #66737d;
  --rv-line: #dce9a8;
  --rv-soft: #f8fce9;
  --rv-navy: var(--rv-blue);
  --rv-teal: var(--rv-brown);
  --rv-mint: var(--rv-blue-soft);
  --rv-coral: var(--rv-green);
  --accent-color: var(--rv-green);
  --nav-hover-color: var(--rv-green);
  --nav-dropdown-hover-color: var(--rv-green);
}

.rv-site {
  color: var(--rv-ink);
}

.rv-header {
  border-bottom: 1px solid rgba(18, 60, 105, 0.12);
}

.rv-header .logo img {
  display: block;
  max-height: 34px;
  margin-right: 10px;
  width: auto;
}

.rv-header .sitename {
  color: var(--rv-blue);
  font-weight: 800;
  letter-spacing: 0;
}

.rv-header-cta,
.rv-btn {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  transition: 0.2s ease;
}

.rv-header-cta,
.rv-btn-primary {
  background: var(--rv-green);
  color: #fff;
}

.rv-header-cta:hover,
.rv-btn-primary:hover {
  background: var(--rv-green-dark);
  color: #fff;
}

.rv-btn-light {
  background: #fff;
  color: var(--rv-blue);
}

.rv-btn-light:hover {
  background: var(--rv-blue-soft);
  color: var(--rv-blue);
}

.rv-hero {
  min-height: calc(100vh - 84px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rv-hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.rv-hero-overlay {
  background: linear-gradient(90deg, rgba(18, 42, 76, 0.92), rgba(143, 181, 31, 0.62) 48%, rgba(178, 216, 46, 0.26));
  inset: 0;
  position: absolute;
}

.rv-hero-content {
  color: #fff;
  max-width: 1180px;
  padding-bottom: 8vh;
  padding-top: 8vh;
  position: relative;
}

.rv-eyebrow,
.rv-section-kicker {
  color: var(--rv-green);
  display: inline-block;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.rv-hero .rv-eyebrow {
  color: #ecff9a;
}

.rv-hero h1 {
  color: #fff;
  font-family: Raleway, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.9rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
  max-width: 840px;
}

.rv-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.7;
  margin: 22px 0 0;
  max-width: 710px;
}

.rv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.rv-intro h2,
.rv-split h2,
.rv-page-copy h2 {
  color: var(--rv-blue);
  font-family: Raleway, sans-serif;
  font-weight: 800;
  line-height: 1.18;
}

.rv-intro p,
.rv-split p,
.rv-card p,
.rv-reach-item p,
.rv-page-copy p,
.rv-process-step p {
  color: var(--rv-muted);
  line-height: 1.72;
}

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

.rv-stats-grid div,
.rv-card,
.rv-reach-item,
.rv-form-panel,
.rv-info-panel,
.rv-testimonial,
.rv-process-step {
  background: #fff;
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(71, 49, 32, 0.08);
}

.rv-stats-grid div {
  padding: 28px;
}

.rv-stats-grid strong {
  color: var(--rv-brown);
  display: block;
  font-family: Raleway, sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.rv-stats-grid span {
  color: var(--rv-muted);
  font-weight: 600;
}

.rv-card {
  height: 100%;
  padding: 30px;
}

.rv-card i,
.rv-reach-item i,
.rv-process-step i {
  color: var(--rv-brown);
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 18px;
}

.rv-card h3,
.rv-reach-item h3,
.rv-process-step h3,
.rv-info-panel h3 {
  color: var(--rv-blue);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

.rv-card-accent {
  background: var(--rv-blue);
  border-color: var(--rv-blue);
}

.rv-card-accent h3,
.rv-card-accent p,
.rv-card-accent i {
  color: #fff;
}

.rv-image {
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(71, 49, 32, 0.2);
}

.rv-check-list p {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.rv-check-list i {
  color: var(--rv-brown);
  margin-top: 3px;
}

.rv-link {
  color: var(--rv-green);
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  margin-top: 14px;
}

.rv-reach-item {
  height: 100%;
  padding: 30px;
}

.rv-cta {
  background: linear-gradient(135deg, var(--rv-blue), var(--rv-green-dark));
  color: #fff;
  padding: 76px 0;
  text-align: center;
}

.rv-cta h2 {
  color: #fff;
  font-family: Raleway, sans-serif;
  font-weight: 800;
}

.rv-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin: 12px auto 28px;
  max-width: 680px;
}

.rv-footer {
  background: var(--rv-soft);
}

.rv-footer .footer-about .logo img {
  display: block;
  height: 280px;
  margin-right: 0;
  max-height: none;
  max-width: 100%;
  object-fit: contain;
  width: 280px;
}

.page-title {
  background: var(--rv-blue);
}

.page-title h1,
.page-title p {
  color: #fff;
}

.rv-list {
  column-gap: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: 0;
}

.rv-list li {
  color: var(--rv-muted);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.rv-list li::before {
  color: var(--rv-brown);
  content: "\F26E";
  font-family: bootstrap-icons;
  left: 0;
  position: absolute;
}

.rv-form-panel,
.rv-info-panel,
.rv-testimonial,
.rv-process-step {
  padding: 28px;
}

.rv-form-panel input,
.rv-form-panel select,
.rv-form-panel textarea {
  border: 1px solid var(--rv-line);
  border-radius: 6px;
  min-height: 46px;
}

.rv-form-panel input:focus,
.rv-form-panel select:focus,
.rv-form-panel textarea:focus {
  border-color: var(--rv-green);
  box-shadow: 0 0 0 0.2rem rgba(178, 216, 46, 0.22);
}

.rv-gallery-img {
  border-radius: 8px;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.rv-testimonial {
  height: 100%;
}

.rv-stars {
  color: var(--rv-brown);
  letter-spacing: 2px;
}

.rv-mini-hero {
  background: linear-gradient(135deg, var(--rv-blue), #6f8d24 72%, var(--rv-green));
  padding: 92px 0 58px;
}

.rv-mini-hero h1 {
  color: #fff;
  font-family: Raleway, sans-serif;
  font-weight: 800;
}

.rv-mini-hero p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 760px;
}

.rv-table-list {
  display: grid;
  gap: 14px;
}

.rv-table-list div {
  align-items: flex-start;
  background: var(--rv-soft);
  border-left: 4px solid var(--rv-brown);
  border-radius: 6px;
  display: flex;
  gap: 12px;
  padding: 16px;
}

.rv-table-list i {
  color: var(--rv-brown);
}

.scroll-top {
  background: var(--rv-green);
}

.scroll-top:hover {
  background: var(--rv-green-dark);
}

@media (max-width: 991px) {
  .rv-hero {
    min-height: 720px;
  }

  .rv-hero-overlay {
    background: linear-gradient(180deg, rgba(18, 42, 76, 0.94), rgba(143, 181, 31, 0.62));
  }
}

@media (max-width: 575px) {
  .rv-actions,
  .rv-stats-grid,
  .rv-list {
    grid-template-columns: 1fr;
  }

  .rv-btn {
    width: 100%;
  }

  .rv-hero {
    min-height: 680px;
  }

  .rv-gallery-img {
    height: 240px;
  }
}

.rv-export-logistics {
  background: linear-gradient(180deg, #fff, var(--rv-brown-soft));
}

.rv-export-logistics h2 {
  color: var(--rv-blue);
  font-family: Raleway, sans-serif;
  font-weight: 800;
  line-height: 1.18;
}

.rv-export-logistics p {
  color: var(--rv-muted);
  line-height: 1.72;
}

.rv-vehicle-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.rv-vehicle-grid div {
  background: #fff;
  border: 1px solid var(--rv-line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(71, 49, 32, 0.08);
  min-height: 172px;
  padding: 22px;
}

.rv-vehicle-grid i {
  align-items: center;
  background: var(--rv-blue-soft);
  border-radius: 8px;
  color: var(--rv-green);
  display: inline-flex;
  font-size: 1.8rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 16px;
  width: 48px;
}

.rv-vehicle-grid strong {
  color: var(--rv-blue);
  display: block;
  font-weight: 800;
  margin-bottom: 7px;
}

.rv-vehicle-grid span {
  color: var(--rv-muted);
  display: block;
  font-size: 0.93rem;
  line-height: 1.5;
}

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

  .rv-vehicle-grid div {
    min-height: 0;
  }
}

/* Header alignment and responsive refinements */
.rv-header .container {
  gap: 14px;
}

.rv-header .logo {
  min-width: 0;
  flex-shrink: 0;
}

.rv-header .sitename {
  white-space: nowrap;
}

.rv-header-cta {
  flex: 0 0 auto;
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 10px;
  min-height: 38px;
  padding: 9px 14px;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .rv-header .navmenu {
    flex: 0 1 auto;
  }

  .rv-header .navmenu ul {
    align-items: center;
  }

  .rv-header .navmenu a,
  .rv-header .navmenu a:focus {
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }
}

@media (max-width: 1320px) {
  .rv-header-cta {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .rv-header .container {
    min-height: 64px;
  }

  .rv-header .logo img {
    max-height: 30px;
  }

  .rv-header .sitename {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 52px 0;
  }

  .rv-hero {
    min-height: 640px;
  }

  .rv-hero-content {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .rv-hero h1 {
    font-size: clamp(2.1rem, 8vw, 3.4rem);
    max-width: 720px;
  }

  .rv-hero p {
    font-size: 1.04rem;
    max-width: 640px;
  }

  .rv-mini-hero {
    padding: 72px 0 46px;
  }

  .rv-mini-hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .rv-card,
  .rv-reach-item,
  .rv-form-panel,
  .rv-info-panel,
  .rv-testimonial,
  .rv-process-step {
    padding: 24px;
  }

  .rv-image {
    width: 100%;
  }

  .rv-gallery-img {
    height: 280px;
  }

  .rv-cta {
    padding: 58px 0;
  }
}

@media (max-width: 767px) {
  .rv-header .container {
    min-height: 60px;
  }

  .rv-header .logo img {
    max-height: 28px;
    margin-right: 8px;
  }

  .rv-footer .footer-about .logo img {
    height: 240px;
    margin-right: 0;
    max-height: none;
    max-width: 100%;
    width: 240px;
  }

  .rv-header .sitename {
    font-size: 21px;
  }

  .rv-eyebrow,
  .rv-section-kicker {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .rv-hero {
    min-height: 600px;
  }

  .rv-hero-content {
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .rv-hero h1 {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .rv-hero p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .rv-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .rv-btn {
    min-height: 42px;
    padding: 11px 16px;
  }

  .rv-intro h2,
  .rv-split h2,
  .rv-page-copy h2,
  .rv-export-logistics h2,
  .rv-cta h2 {
    font-size: 1.75rem;
  }

  .rv-stats-grid div {
    padding: 22px;
  }

  .rv-list {
    grid-template-columns: 1fr;
  }

  .rv-table-list div {
    display: block;
  }

  .rv-table-list i {
    display: inline-block;
    margin-bottom: 8px;
  }

  .rv-form-panel .row {
    --bs-gutter-y: 0.9rem;
  }
}

@media (max-width: 575px) {
  body {
    overflow-x: hidden;
  }

  .rv-header .sitename {
    font-size: 19px;
  }

  .rv-header .logo img {
    max-height: 26px;
    max-width: 96px;
  }

  .rv-footer .footer-about .logo img {
    height: 210px;
    max-height: none;
    max-width: 100%;
    width: 210px;
  }

  .rv-hero {
    min-height: 560px;
  }

  .rv-hero h1 {
    font-size: 2rem;
  }

  .rv-hero p {
    font-size: 0.96rem;
  }

  .rv-mini-hero {
    padding: 58px 0 38px;
  }

  .rv-mini-hero h1 {
    font-size: 1.9rem;
  }

  .rv-card,
  .rv-reach-item,
  .rv-form-panel,
  .rv-info-panel,
  .rv-testimonial,
  .rv-process-step {
    padding: 20px;
  }

  .rv-gallery-img {
    height: 220px;
  }

  .rv-vehicle-grid div {
    padding: 20px;
  }

  .rv-cta {
    padding: 48px 0;
  }
}
