.rvcm-theme {
  --rvcm-deep-forest: #123c2e;
  --rvcm-camp-green: #2e8b57;
  --rvcm-sunset-orange: #f59e0b;
  --rvcm-soft-sand: #f7f2e8;
  --rvcm-charcoal: #1f2933;
  --rvcm-white: #fff;
  --rvcm-border: #e6dfd2;
  --rvcm-muted: #65717d;
  --rvcm-card-shadow: 0 10px 40px -10px rgba(18, 60, 46, 0.18);
  --rvcm-soft-shadow: 0 4px 20px -2px rgba(18, 60, 46, 0.1);
  --rvcm-cta-shadow: 0 8px 24px -6px rgba(245, 158, 11, 0.45);
  color: var(--rvcm-charcoal);
  background: var(--rvcm-white);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}
.rvcm-theme *,
.rvcm-theme *::before,
.rvcm-theme *::after {
  box-sizing: border-box;
}
.rvcm-theme a {

  text-decoration: none;
}
.rvcm-theme svg {
  display: inline-block;
  vertical-align: middle;
}
.rvcm-theme img {
  max-width: 100%;
  height: auto;
}
.rvcm-theme .container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}
.rvcm-theme .row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}
.rvcm-theme [class*="col-"] {
  padding-inline: 12px;
  width: 100%;
}
.rvcm-theme .g-3 {
  row-gap: 16px;
}
.rvcm-theme .g-4 {
  row-gap: 24px;
}
.rvcm-theme .g-5 {
  row-gap: 48px;
}
.rvcm-theme .align-items-center {
  align-items: center;
}
.rvcm-theme .align-items-stretch {
  align-items: stretch;
}
.rvcm-theme h1,
.rvcm-theme h2,
.rvcm-theme h3,
.rvcm-theme h4 {
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--rvcm-deep-forest);
  letter-spacing: -0.03em;
  line-height: 60px;
  margin: 0;
}

/* ========================================= */
/* RESPONSIVE PIXEL-BASED LINE HEIGHT SYSTEM */
/* Enhanced version with mobile breakpoints */
/* ========================================= */

.rvcm-theme h1 {
  line-height: 44px;
}

.rvcm-theme h2 {
  line-height: 36px;
}

.rvcm-theme h3,
.rvcm-theme h4 {
  line-height: 28px;
}

/* Tablet devices */
@media (min-width: 768px) {
  .rvcm-theme h1 {
    line-height: 52px;
  }
  
  .rvcm-theme h2 {
    line-height: 42px;
  }
  
  .rvcm-theme h3,
  .rvcm-theme h4 {
    line-height: 30px;
  }
}

/* Desktop devices */
@media (min-width: 1024px) {
  .rvcm-theme h1 {
    line-height: 60px;
  }
  
  .rvcm-theme h2 {
    line-height: 48px;
  }
  
  .rvcm-theme h3,
  .rvcm-theme h4 {
    line-height: 32px;
  }
}

/* Large desktop screens */
@media (min-width: 1440px) {
  .rvcm-theme h1 {
    line-height: 70px;
  }
  
  .rvcm-theme h2 {
    line-height: 70px;
  }
  
  .rvcm-theme h3,
  .rvcm-theme h4 {
    line-height: 36px;
  }
}

/* Very small mobile devices */
@media (max-width: 480px) {
  .rvcm-theme h1 {
    line-height: 38px;
  }
  
  .rvcm-theme h2 {
    line-height: 32px;
  }
  
  .rvcm-theme h3,
  .rvcm-theme h4 {
    line-height: 26px;
  }
}

.rvcm-theme p {

  color: rgba(31, 41, 51, 0.74);
  
}
.rvcm-main {
  background: #fff;
}
.gradient-hero {
  background:
    radial-gradient(
      ellipse at top right,
      rgba(245, 158, 11, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(46, 139, 87, 0.2),
      transparent 50%
    ),
    var(--rvcm-soft-sand);
}
.gradient-forest {
  background: linear-gradient(135deg, var(--rvcm-deep-forest), #1d6c4d);
}
.rvcm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.25s ease;
  background: transparent;
}
.rvcm-header.rvcm-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rvcm-border);
  box-shadow: var(--rvcm-soft-shadow);
}
.rvcm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.rvcm-brand,
.rvcm-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope";
  font-weight: 800;
  color: var(--rvcm-deep-forest);
  font-size: 18px;
}
.rvcm-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--rvcm-deep-forest),
    var(--rvcm-camp-green)
  );
  color: #fff;
  flex: none;
}
.rvcm-logo-mark svg {
  width: 21px;
  height: 21px;
}
.rvcm-logo-sunset {
  background: var(--rvcm-sunset-orange);
  color: var(--rvcm-charcoal);
}
.rvcm-nav {
  display: none;
  align-items: center;
  gap: 26px;
}
.rvcm-nav a {
  font-size: 14px;
  font-weight: 700;
  color: rgba(31, 41, 51, 0.78);
  transition: 0.2s;
}
.rvcm-nav a:hover {
  color: var(--rvcm-deep-forest);
}
.rvcm-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rvcm-header-cta {
  display: none !important;
}
.rvcm-menu-toggle {
  border: 1px solid var(--rvcm-border);
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 8px;
}
.rvcm-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--rvcm-charcoal);
  margin: 2px 0;
  border-radius: 5px;
  transition: 0.2s;
}
.rvcm-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.rvcm-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.rvcm-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.rvcm-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 0 18px;
  border-top: 1px solid var(--rvcm-border);
  background: #fff;
}
.rvcm-mobile-nav.is-open {
  display: flex;
}
.rvcm-mobile-nav a {
  padding: 10px 0;
  font-weight: 700;
  color: rgba(31, 41, 51, 0.8);
}
.rvcm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}
.rvcm-btn:hover {
  transform: translateY(-1px);
}
.rvcm-btn svg {
  width: 17px;
  height: 17px;
}
.rvcm-btn-primary {
  background: var(--rvcm-sunset-orange);
  color: var(--rvcm-charcoal);
  box-shadow: var(--rvcm-cta-shadow);
}
.rvcm-btn-outline {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--rvcm-deep-forest);
  color: var(--rvcm-deep-forest);
}
.rvcm-btn-outline:hover {
  background: var(--rvcm-deep-forest);
  color: #fff;
}
.rvcm-btn-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}
.rvcm-btn-light:hover {
  background: rgba(255, 255, 255, 0.14);
}
.rvcm-card {
  background: #fff;
  border: 1px solid var(--rvcm-border);
  border-radius: 24px;
  box-shadow: var(--rvcm-soft-shadow);
  overflow: hidden;
}
.rvcm-section {
	padding: clamp(40px, 8vw, 40px) 0;
}
.rvcm-sand-section {
  background: var(--rvcm-soft-sand);
}
.rvcm-section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.rvcm-eyebrow,
.rvcm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: var(--rvcm-camp-green);
}
.rvcm-badge {
  border: 1px solid rgba(46, 139, 87, 0.22);
  background: rgba(255, 255, 255, 0.72);
  padding: 7px 12px;
  border-radius: 999px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rvcm-deep-forest);
  box-shadow: var(--rvcm-soft-shadow);
}
.rvcm-badge svg {
  width: 15px;
  height: 15px;
  color: var(--rvcm-sunset-orange);
}
.rvcm-section-header h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin-top: 12px;
}
.rvcm-section-header p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-top: 16px;
  line-height: 1.7;
}
.rvcm-hero {
  position: relative;
  padding: clamp(72px, 8vw, 110px) 0 72px;
  overflow: hidden;
}
.rvcm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 60, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 46, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}
.rvcm-hero .container {
  position: relative;
}
.rvcm-hero h1 {
  font-size: clamp(2.6rem, 6vw, 3.75rem);
  max-width: 720px;
  margin-top: 20px;
}
.rvcm-highlight {
  position: relative;
  color: var(--rvcm-sunset-orange);
  white-space: nowrap;
}
.rvcm-highlight svg {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 8px;
}
.rvcm-hero-lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 24px;
}
.rvcm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.rvcm-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  font-size: 13px;
  color: rgba(31, 41, 51, 0.72);
}
.rvcm-trust-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rvcm-trust-bullets svg {
  width: 15px;
  color: var(--rvcm-camp-green);
}
.rvcm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(230, 223, 210, 0.9);
  padding-top: 24px;
  margin-top: 34px;
}
.rvcm-stats strong {
  display: block;
  font-family: "Manrope";
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: var(--rvcm-deep-forest);
}
.rvcm-stats span {
  font-size: 12px;
  color: rgba(31, 41, 51, 0.64);
}
.rvcm-map-mockup-wrap {
  position: relative;
  max-width: 590px;
  margin-inline: auto;
}
.rvcm-floating-pill,
.rvcm-site-tooltip {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--rvcm-border);
  box-shadow: var(--rvcm-card-shadow);
  backdrop-filter: blur(12px);
}
.rvcm-floating-pill {
  top: 34px;
  left: -8px;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 800;
}
.rvcm-floating-pill span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rvcm-camp-green);
  box-shadow: 0 0 0 5px rgba(46, 139, 87, 0.12);
  margin-right: 6px;
}
.rvcm-floating-pill b {
  color: var(--rvcm-camp-green);
}
.rvcm-site-tooltip {
  right: -10px;
  top: 112px;
  width: 220px;
  border-radius: 16px;
  padding: 13px;
}
.rvcm-site-tooltip div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rvcm-site-tooltip strong {
  font-family: "Manrope";
  color: var(--rvcm-deep-forest);
}
.rvcm-site-tooltip em {
  font-style: normal;
  border-radius: 999px;
  background: rgba(46, 139, 87, 0.12);
  color: var(--rvcm-camp-green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 2px 8px;
}
.rvcm-site-tooltip p {
  font-size: 11px;
  margin-top: 3px;
}
.rvcm-mini-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 9px 0;
}
.rvcm-mini-tags span {
  background: var(--rvcm-soft-sand);
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 10px;
}
.rvcm-site-tooltip a {
  display: block;
  text-align: center;
  background: var(--rvcm-sunset-orange);
  border-radius: 8px;
  padding: 7px;
  font-size: 11px;
  font-weight: 900;
}
.rvcm-browser-card {
  border-radius: 22px;
}
.rvcm-browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 242, 232, 0.8);
  border-bottom: 1px solid var(--rvcm-border);
  padding: 11px 13px;
}
.rvcm-browser-top > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e36b5c;
}
.rvcm-browser-top > span:nth-child(2) {
  background: var(--rvcm-sunset-orange);
}
.rvcm-browser-top > span:nth-child(3) {
  background: var(--rvcm-camp-green);
}
.rvcm-browser-top div {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--rvcm-border);
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--rvcm-muted);
}
.rvcm-map-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--rvcm-border);
  padding: 9px 12px;
  font-size: 11px;
  overflow-x: auto;
}
.rvcm-map-toolbar span,
.rvcm-map-toolbar b,
.rvcm-map-toolbar button {
  white-space: nowrap;
  border: 1px solid var(--rvcm-border);
  background: #fff;
  border-radius: 7px;
  padding: 6px 8px;
  font-size: 11px;
}
.rvcm-map-toolbar span {
  flex: 1;
  color: var(--rvcm-muted);
  background: rgba(247, 242, 232, 0.45);
}
.rvcm-map-toolbar b:nth-of-type(2) {
  background: var(--rvcm-deep-forest);
  color: #fff;
}
.rvcm-map-toolbar b:nth-of-type(3) {
  background: rgba(46, 139, 87, 0.12);
  border-color: rgba(46, 139, 87, 0.3);
  color: var(--rvcm-camp-green);
}
.rvcm-hero-map-canvas {
  background: #eaf2e6;
}
.rvcm-inline-map {
  width: 100%;
  height: auto;
  display: block;
}
.rvcm-map-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--rvcm-border);
  background: #fff;
  padding: 10px 12px;
  font-size: 11px;
  color: rgba(31, 41, 51, 0.72);
  flex-wrap: wrap;
}
.rvcm-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.rvcm-map-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.rvcm-map-legend .available {
  background: var(--rvcm-camp-green);
}
.rvcm-map-legend .booked {
  background: #3f4750;
}
.rvcm-map-legend .maintenance {
  background: var(--rvcm-sunset-orange);
}
.rvcm-map-legend strong {
  margin-left: auto;
  color: var(--rvcm-camp-green);
}
.rvcm-phone-overlay {
  position: absolute;
  bottom: -34px;
  left: -12px;
  z-index: 2;
  width: 120px;
  border: 6px solid var(--rvcm-charcoal);
  border-radius: 22px;
  background: #eaf2e6;
  box-shadow: var(--rvcm-card-shadow);
  overflow: hidden;
}
.rvcm-phone-overlay > span {
  display: block;
  width: 34px;
  height: 4px;
  background: rgba(31, 41, 51, 0.42);
  border-radius: 10px;
  margin: 6px auto 0;
}
.rvcm-phone-overlay svg {
  display: block;
  width: 100%;
  height: auto;
}
.rvcm-trustbar {
  border-block: 1px solid var(--rvcm-border);
  background: #fff;
  padding: 32px 0;
}
.rvcm-trustbar p {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 900;
  color: var(--rvcm-muted);
}
.rvcm-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
  text-align: center;
}
.rvcm-trust-grid div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(31, 41, 51, 0.7);
  font-weight: 800;
  font-size: 12px;
}
.rvcm-trust-grid svg {
  width: 26px;
  height: 26px;
  color: var(--rvcm-deep-forest);
}
.rvcm-problem-card,
.rvcm-feature-card,
.rvcm-service-card,
.rvcm-pricing-card,
.rvcm-how-card {
  height: 100%;
  padding: 28px;
  transition: 0.25s;
}
.rvcm-problem-card:hover,
.rvcm-feature-card:hover,
.rvcm-service-card:hover,
.rvcm-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rvcm-card-shadow);
  border-color: rgba(46, 139, 87, 0.45);
}
.rvcm-problem-card > span,
.rvcm-feature-card > span,
.rvcm-service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--rvcm-deep-forest),
    var(--rvcm-camp-green)
  );
  color: #fff;
}
.rvcm-problem-card > span {
  background: rgba(245, 158, 11, 0.15);
  color: var(--rvcm-sunset-orange);
  font-family: "Manrope";
  font-weight: 900;
  font-size: 20px;
}
.rvcm-feature-card svg,
.rvcm-service-icon svg {
  width: 23px;
  height: 23px;
}
.rvcm-problem-card h3,
.rvcm-feature-card h3,
.rvcm-service-card h3,
.rvcm-pricing-card h3 {
  font-size: 20px;
  margin-top: 18px;
}
.rvcm-feature-card h3 {
  font-size: 17px;
}
.rvcm-problem-card p,
.rvcm-feature-card p,
.rvcm-service-card p,
.rvcm-pricing-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
}
.rvcm-before-after {
  margin-top: 52px;
}
.rvcm-before-card,
.rvcm-after-card {
  padding: 18px;
  height: 100%;
  position: relative;
}
.rvcm-ba-label {
  display: inline-flex;
  font-weight: 900;
  font-size: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 14px;
}
.rvcm-ba-old {
  background: #eee;
  color: #69717b;
}
.rvcm-ba-new {
  background: rgba(46, 139, 87, 0.14);
  color: var(--rvcm-camp-green);
}
.rvcm-paper-map,
.rvcm-after-map {
  position: relative;
  border: 1px solid var(--rvcm-border);
  border-radius: 18px;
  overflow: hidden;
  background: #f6f0e5;
}
.rvcm-paper-map svg {
  width: 100%;
  display: block;
  filter: blur(1.1px);
  opacity: 0.82;
}
.rvcm-before-card p,
.rvcm-after-card p {
  font-size: 14px;
  margin-top: 14px;
  text-align: center;
}
.rvcm-after-map {
  background: #eaf2e6;
}
.rvcm-after-tip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: #fff;
  border: 1px solid var(--rvcm-border);
  box-shadow: var(--rvcm-card-shadow);
  border-radius: 14px;
  padding: 12px;
  width: 210px;
}
.rvcm-after-tip strong {
  display: block;
  color: var(--rvcm-deep-forest);
  font-family: "Manrope";
}
.rvcm-after-tip small {
  display: block;
  color: rgba(31, 41, 51, 0.7);
  font-size: 11px;
}
.rvcm-after-tip a {
  display: block;
  margin-top: 8px;
  background: var(--rvcm-sunset-orange);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-weight: 900;
  font-size: 12px;
}
.rvcm-interactive-map {
  margin-top: 48px;
  border-radius: 24px;
}
.rvcm-demo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: rgba(247, 242, 232, 0.7);
  border-bottom: 1px solid var(--rvcm-border);
  padding: 14px;
}
.rvcm-demo-controls input,
.rvcm-demo-controls select,
.rvcm-demo-form input,
.rvcm-demo-form textarea {
  width: 100%;
  border: 1px solid var(--rvcm-border);
  background: #fff;
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  font-size: 14px;
  outline: none;
}
.rvcm-demo-controls input:focus,
.rvcm-demo-controls select:focus,
.rvcm-demo-form input:focus,
.rvcm-demo-form textarea:focus {
  border-color: var(--rvcm-camp-green);
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
}
.rvcm-search-field {
  flex: 1 1 180px;
}
.rvcm-demo-controls select {
  width: auto;
  min-width: 160px;
}
.rvcm-amp-filter {
  display: inline-flex;
  border: 1px solid var(--rvcm-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.rvcm-amp-filter button,
.rvcm-filter-btn,
.rvcm-filter-reset,
.rvcm-zoom-controls button {
  border: 0;
  background: #fff;
  padding: 11px 13px;
  font-weight: 800;
  color: rgba(31, 41, 51, 0.78);
  cursor: pointer;
}
.rvcm-amp-filter button.is-active,
.rvcm-filter-btn.is-active {
  background: var(--rvcm-deep-forest);
  color: #fff;
}
.rvcm-filter-btn,
.rvcm-filter-reset {
  border: 1px solid var(--rvcm-border);
  border-radius: 12px;
}
.rvcm-filter-reset {
  color: var(--rvcm-camp-green);
}
.rvcm-zoom-controls {
  display: flex;
  border: 1px solid var(--rvcm-border);
  border-radius: 12px;
  overflow: hidden;
  margin-left: auto;
}
.rvcm-zoom-controls button {
  font-size: 18px;
  line-height: 1;
  min-width: 40px;
}
.rvcm-demo-map-stage {
  position: relative;
  background: #eaf2e6;
  overflow: auto;
  min-height: 460px;
}
.rvcm-demo-svg {
  width: 100%;
  min-width: 760px;
  height: auto;
  display: block;
}
.rvcm-site {
  cursor: pointer;
  transition: 0.2s;
}
.rvcm-site rect {
  transition: 0.2s;
}
.rvcm-site:hover rect,
.rvcm-site.is-selected rect {
  stroke: var(--rvcm-sunset-orange);
  stroke-width: 3;
}
.rvcm-site.is-dimmed {
  opacity: 0.18;
}
.rvcm-site-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  background: #fff;
  border: 1px solid var(--rvcm-border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--rvcm-card-shadow);
}
.rvcm-site-panel > button {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  background: var(--rvcm-soft-sand);
  border-radius: 50%;
  cursor: pointer;
}
.rvcm-site-panel > span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rvcm-camp-green);
  font-weight: 900;
}
.rvcm-site-panel h3 {
  font-size: 22px;
  margin-top: 6px;
}
.rvcm-site-panel p {
  font-size: 13px;
  margin-top: 6px;
}
.rvcm-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.rvcm-panel-tags span {
  border-radius: 999px;
  background: var(--rvcm-soft-sand);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
}
.rvcm-map-legend-large {
  font-size: 12px;
}
.rvcm-map-legend-large strong {
  margin-left: auto;
}
.rvcm-flagship-card {
  padding: 32px;
  margin: 50px 0 24px;
  background: linear-gradient(135deg, var(--rvcm-deep-forest), #1f7555);
  color: #fff;
}
.rvcm-flagship-card h3,
.rvcm-flagship-card p {
  color: #fff;
}
.rvcm-flagship-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-top: 16px;
}
.rvcm-flagship-card p {
  opacity: 0.8;
  margin-top: 12px;
}
.rvcm-dark-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--rvcm-sunset-orange);
}
.rvcm-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.rvcm-check-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(31, 41, 51, 0.78);
  font-size: 14px;
}
.rvcm-check-list svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--rvcm-camp-green);
  margin-top: 2px;
}
.rvcm-flagship-card .rvcm-check-list li {
  color: rgba(255, 255, 255, 0.86);
}
.rvcm-flagship-card .rvcm-check-list svg {
  color: var(--rvcm-sunset-orange);
}
.rvcm-two-col-list {
  grid-template-columns: 1fr;
}
.rvcm-website-preview {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  box-shadow: var(--rvcm-card-shadow);
}
.rvcm-website-preview > div:first-child {
  height: 160px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(245, 158, 11, 0.55),
      transparent 35%
    ),
    linear-gradient(135deg, #e3eedb, #a9d6e8);
}
.rvcm-website-preview h4 {
  color: #fff;
  margin-top: 18px;
}
.rvcm-website-preview p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-top: 6px;
}
.rvcm-preview-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.rvcm-preview-grid span {
  display: block;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
}
.rvcm-service-grid {
  margin-top: 0;
}
.rvcm-service-card .rvcm-check-list {
  gap: 7px;
}
.rvcm-service-card .rvcm-check-list li {
  font-size: 13px;
}
.rvcm-how {
  color: #fff;
}
.rvcm-how .rvcm-section-header h2,
.rvcm-how .rvcm-section-header p {
  color: #fff;
}
.rvcm-how .rvcm-eyebrow {
  color: var(--rvcm-sunset-orange);
}
.rvcm-how-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  padding: 28px;
  color: #fff;
  height: 100%;
  backdrop-filter: blur(10px);
}
.rvcm-step-number {
  display: block;
  font-family: "Manrope";
  font-size: 13px;
  color: var(--rvcm-sunset-orange);
  font-weight: 900;
  letter-spacing: 0.14em;
}
.rvcm-how-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--rvcm-sunset-orange);
  margin-top: 18px;
}
.rvcm-how-card h3 {
  color: #fff;
  font-size: 20px;
  margin-top: 18px;
}
.rvcm-how-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-top: 8px;
}
.rvcm-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.rvcm-plan-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(245, 158, 11, 0.16);
  color: var(--rvcm-sunset-orange);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
}
.rvcm-pricing-card.is-featured {
  background: var(--rvcm-deep-forest);
  border-color: var(--rvcm-deep-forest);
  transform: translateY(-8px);
}
.rvcm-pricing-card.is-featured h3,
.rvcm-pricing-card.is-featured p,
.rvcm-pricing-card.is-featured .rvcm-check-list li {
  color: #fff;
}
.rvcm-pricing-card.is-featured .rvcm-price span {
  color: rgba(255, 255, 255, 0.7);
}
.rvcm-price {
  margin: 18px 0;
}
.rvcm-price strong {
  display: block;
  font-family: "Manrope";
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--rvcm-deep-forest);
}
.rvcm-pricing-card.is-featured .rvcm-price strong {
  color: var(--rvcm-sunset-orange);
}
.rvcm-price span {
  font-size: 13px;
  color: var(--rvcm-muted);
}
.rvcm-pricing-card .rvcm-btn {
  margin-top: auto;
  width: 100%;
}
.rvcm-guarantee-box {
  margin: 32px auto 0;
  max-width: 780px;
  padding: 22px;
  text-align: center;
}
.rvcm-guarantee-box strong {
  display: block;
  font-family: "Manrope";
  font-size: 18px;
  color: var(--rvcm-deep-forest);
}
.rvcm-guarantee-box span {
  display: block;
  margin-top: 6px;
  color: rgba(31, 41, 51, 0.7);
}
.rvcm-form-section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 10px;
}
.rvcm-form-section p {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 18px;
}
.rvcm-demo-form {
  padding: 28px;
}
.rvcm-demo-form label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--rvcm-charcoal);
  margin-bottom: 7px;
}
.rvcm-demo-form textarea {
  resize: vertical;
}
.rvcm-file-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: 2px dashed var(--rvcm-border);
  border-radius: 16px;
  background: rgba(247, 242, 232, 0.45);
  padding: 28px 18px;
  color: rgba(31, 41, 51, 0.75);
  font-weight: 700;
}
.rvcm-file-box svg {
  width: 28px;
  height: 28px;
  color: var(--rvcm-camp-green);
}
.rvcm-file-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.rvcm-submit-btn {
  width: 100%;
  margin-top: 22px;
  border: 0;
}
.rvcm-form-alert {
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 14px;
}
.rvcm-form-alert-success {
  background: rgba(46, 139, 87, 0.12);
  color: var(--rvcm-camp-green);
}
.rvcm-form-alert-error {
  background: rgba(192, 75, 62, 0.12);
  color: #a4332a;
}
.rvcm-ai-section {
  position: relative;
  overflow: hidden;
  background: var(--rvcm-charcoal);
  color: #fff;
}
.rvcm-ai-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 20%,
      rgba(46, 139, 87, 0.48),
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(245, 158, 11, 0.32),
      transparent 55%
    );
  opacity: 0.5;
}
.rvcm-ai-section .container {
  position: relative;
}
.rvcm-ai-section h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-top: 20px;
}
.rvcm-ai-section p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
  margin-top: 20px;
}
.rvcm-ai-badge {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--rvcm-sunset-orange);
}
.rvcm-ai-section ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 13px;
}
.rvcm-ai-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.87);
}
.rvcm-ai-section li svg {
  width: 18px;
  color: var(--rvcm-sunset-orange);
}
.rvcm-chat-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  backdrop-filter: blur(10px);
  display: grid;
  gap: 14px;
}
.rvcm-chat {
  border-radius: 18px;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.55;
}
.rvcm-chat-user {
  justify-self: end;
  max-width: 82%;
  background: var(--rvcm-sunset-orange);
  color: var(--rvcm-charcoal);
  font-weight: 700;
  border-top-right-radius: 4px;
}
.rvcm-chat-user.small {
  max-width: 60%;
}
.rvcm-chat-bot {
  justify-self: start;
  max-width: 88%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-top-left-radius: 4px;
}
.rvcm-chat-bot span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--rvcm-camp-green);
  border-radius: 50%;
  margin-right: 6px;
}
.rvcm-chat-bot svg {
  width: 15px;
}
.rvcm-chat-bot strong {
  color: var(--rvcm-sunset-orange);
}
.rvcm-typing {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}
.rvcm-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rvcm-camp-green);
  animation: rvcmPulse 1s infinite;
}
.rvcm-typing i:nth-child(2) {
  animation-delay: 0.15s;
}
.rvcm-typing i:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes rvcmPulse {
  50% {
    opacity: 0.35;
    transform: translateY(-2px);
  }
}
.rvcm-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  margin-top: 28px;
  color: var(--rvcm-muted);
}
.rvcm-narrow {
  width: min(100% - 32px, 780px) !important;
}
.rvcm-faq-list {
  display: grid;
  gap: 12px;
}
.rvcm-faq-item {
  border: 1px solid var(--rvcm-border);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--rvcm-soft-shadow);
  overflow: hidden;
}

.rvcm-narrow.rvcm-section-head {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 10px;
}
.rvcm-faq-item button {
  width: 100%;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  text-align: left;
  font-family: "Manrope";
  font-weight: 800;
  color: var(--rvcm-deep-forest);
  cursor: pointer;
}
.rvcm-faq-item button svg {
  width: 21px;
  height: 21px;
  color: var(--rvcm-camp-green);
  transition: 0.2s;
}
.rvcm-faq-item.is-open button svg {
  transform: rotate(180deg);
}
.rvcm-faq-answer {
  display: none;
  padding: 0 20px 20px;
}
.rvcm-faq-item.is-open .rvcm-faq-answer {
  display: block;
}
.rvcm-faq-answer p {
  font-size: 14px;
  line-height: 1.7;
}
.rvcm-final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: clamp(76px, 9vw, 120px) 0;
}
.rvcm-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    var(--rvcm-sunset-orange),
    transparent 55%
  );
  opacity: 0.25;
}
.rvcm-final-cta .container {
  position: relative;
}
.rvcm-final-cta h2 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  max-width: 900px;
  margin-inline: auto;
}
.rvcm-final-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  margin: 24px auto 0;
  max-width: 660px;
  line-height: 1.7;
}
.rvcm-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.rvcm-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}
.rvcm-contact-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rvcm-contact-row svg {
  width: 17px;
}
.rvcm-footer {
  background: var(--rvcm-deep-forest);
  color: #fff;
  border-top: 1px solid var(--rvcm-border);
}
.rvcm-footer .container {
  padding: 56px 0;
}
.rvcm-footer-brand {
  color: #fff;
}
.rvcm-footer p {
  max-width: 460px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}
.rvcm-footer h4 {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.rvcm-footer ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.rvcm-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}
.rvcm-footer a:hover {
  color: var(--rvcm-sunset-orange);
}
.rvcm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  text-align: center;
}
.rvcm-footer-bottom p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}
.rvcm-content-container {
  max-width: 900px;
}
.rvcm-content-card {
  padding: 36px;
}
.rvcm-content-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.rvcm-content {
  line-height: 1.75;
}
.rvcm-post-card {
  padding: 28px;
  margin-bottom: 24px;
}
.rvcm-post-card h1 {
  font-size: 28px;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
@media (min-width: 576px) {
  .rvcm-theme .col-sm-6 {
    width: 50%;
  }
  .rvcm-trust-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .rvcm-header-cta {
    display: inline-flex !important;
  }
  .rvcm-two-col-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .rvcm-theme .col-md-4 {
    width: 33.333333%;
  }
  .rvcm-theme .col-md-6 {
    width: 50%;
  }
  .rvcm-after-tip {
    display: block;
  }
  .rvcm-demo-map-stage {
    overflow: hidden;
  }
}


/* ========================================================================== */
/* COHESIVE HEADER NAVIGATION & DROP-DOWN FOCUS FIXES                         */
/* ========================================================================== */

/* The Fix: Bridges the visual gap between parent link and child box container */
.rvcm-theme .rvcm-menu-list .sub-menu {
    position: absolute;
    display: none;
    min-width: 220px;
    list-style: none;
    margin: 0; /* Reset margins */
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--rvcm-border);
    border-radius: 14px;
    box-shadow: var(--rvcm-card-shadow);
    top: 100%; /* Positions box perfectly relative to header height line */
    left: 0;
}

/* Pseudo-element cushion ensuring hover continuity */
.rvcm-theme .rvcm-menu-list li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px; /* Creates the invisible hover bridge zone */
    height: 15px;
    display: block;
}

.rvcm-theme .rvcm-menu-list li {
    position: relative;
    padding-bottom: 10px; /* Extends active hover surface area zone fields */
}

/* Safer sub-menu tracking parameters matching active mouse hover paths */
.rvcm-theme .rvcm-menu-list li:hover > .sub-menu,
.rvcm-theme .rvcm-menu-list li .sub-menu:hover {
    display: block !important;
}

.rvcm-theme .rvcm-menu-list .sub-menu a {
    display: block;
    padding: 8px 12px !important;
    color: var(--rvcm-charcoal) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    transition: color 0.15s ease;
}

.rvcm-theme .rvcm-menu-list .sub-menu a:hover {
    color: var(--rvcm-camp-green) !important;
}

/* ========================================================================== */
/* ADVANCED EARLY RESPONSIVE BREAKPOINT SWITCH OVER ENGINE (FIXES 1138px BUG) */
/* ========================================================================== */

/* CRITICAL SCREEN RE-ALIGNED BOUNDS: Swapped out max-width: 991px rules 
   and forced mobile grid execution targets up to 1140px viewport frames */
@media (max-width: 1140px) {
    .rvcm-nav {
        display: none !important; /* Hides desktop tracking paths early */
    }

    .rvcm-menu-toggle {
        display: grid !important; /* Forces mobile menu toggle button to appear */
    }

    .rvcm-theme .rvcm-header {
        padding-top: 0;
    }
    
    /* Safely handles overall padding height shifts across theme layouts */
    .rvcm-theme {
        padding-top: 72px !important;
    }
    
    .rvcm-theme section[id],
    .rvcm-theme [id] {
        scroll-margin-top: 92px !important;
    }
    
    /* Refactors base layout cards grids structure cleanly */
    .rvcm-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }
}

@media (max-width: 767px) {
    .rvcm-blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Re-adjust desktop constraints to trigger safely above the new mobile breakpoint */
@media (min-width: 1141px) {
    .rvcm-nav {
        display: flex !important;
    }
    .rvcm-menu-toggle {
        display: none !important;
    }
    .rvcm-mobile-nav {
        display: none !important;
    }
}








@media (min-width: 992px) {
  .rvcm-theme .col-lg-3 {
    width: 25%;
  }
  .rvcm-theme .col-lg-4 {
    width: 33.333333%;
  }
  .rvcm-theme .col-lg-5 {
    width: 41.666667%;
  }
  .rvcm-theme .col-lg-6 {
    width: 50%;
  }
  .rvcm-theme .col-lg-7 {
    width: 58.333333%;
  }
  .rvcm-nav {
    display: flex;
  }
  .rvcm-menu-toggle {
    display: none;
  }
  .rvcm-mobile-nav {
    display: none !important;
  }
  .rvcm-hero .row {
    gap: 0;
  }
  .rvcm-pricing-grid {
    align-items: stretch;
  }
}
@media (max-width: 991px) {
  .rvcm-floating-pill,
  .rvcm-site-tooltip,
  .rvcm-phone-overlay {
    display: none;
  }
  .rvcm-map-mockup-wrap {
    max-width: 640px;
  }
  .rvcm-hero {
    text-align: left;
  }
  .rvcm-pricing-card.is-featured {
    transform: none;
  }
  .rvcm-map-legend strong {
    margin-left: 0;
  }
  .rvcm-demo-svg {
    min-width: 700px;
  }
}
@media (max-width: 767px) {
  .rvcm-theme .container {
    width: min(100% - 24px, 1180px);
  }
  .rvcm-hero-actions .rvcm-btn {
    width: 100%;
    font-weight: 500;
  }
  .rvcm-stats {
    /* grid-template-columns: 1fr; */
    gap: 12px;
  }
  .rvcm-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rvcm-after-tip {
    position: static;
    width: auto;
    margin: 10px;
  }
  .rvcm-demo-controls {
    align-items: stretch;
  }
  .rvcm-demo-controls select,
  .rvcm-filter-btn,
  .rvcm-filter-reset,
  .rvcm-amp-filter,
  .rvcm-zoom-controls {
    width: 100%;
  }
  .rvcm-amp-filter button {
    flex: 1;
  }
  .rvcm-zoom-controls {
    margin-left: 0;
  }
  .rvcm-zoom-controls button {
    flex: 1;
  }
  .rvcm-map-legend {
    align-items: flex-start;
  }
  .rvcm-map-legend strong {
    width: 100%;
  }
  .rvcm-demo-map-stage {
    min-height: 360px;
  }
  .rvcm-site-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 12px;
  }
  .rvcm-demo-svg {
    min-width: 620px;
  }
  .rvcm-chat-user,
  .rvcm-chat-bot {
    max-width: 100%;
  }
  .rvcm-footer .container {
    padding: 42px 0;
  }
  .rvcm-content-card {
    padding: 24px;
  }
  .rvcm-highlight {
    white-space: normal;
  }
  .rvcm-highlight svg {
    display: none;
  }
}
@media (max-width: 420px) {
  .rvcm-hero h1 {
    font-size: 2.35rem;
  }
  .rvcm-section {
    padding: 64px 0;
  }
  .rvcm-card {
    border-radius: 20px;
  }
  .rvcm-problem-card,
  .rvcm-feature-card,
  .rvcm-service-card,
  .rvcm-pricing-card {
    padding: 22px;
  }
  .rvcm-demo-svg {
    min-width: 560px;
  }
  .rvcm-btn {
    font-size: 14px;
    padding: 12px 16px;
  }
  .rvcm-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rvcm-browser-top div {
    display: none;
  }
  .rvcm-map-toolbar {
    font-size: 10px;
  }
  .rvcm-hero-map-canvas {
    overflow: auto;
  }
}

/* Fixed editable WordPress menu header */
.rvcm-theme {
  padding-top: 74px;
  scroll-behavior: smooth;
}
.rvcm-theme section[id],
.rvcm-theme [id] {
  scroll-margin-top: 104px;
}
.rvcm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 223, 210, 0.68);
}
.rvcm-header.rvcm-scrolled {
  background: rgba(255, 255, 255, 0.94);
}
body.admin-bar .rvcm-header {
  top: 32px;
}
.rvcm-menu-list,
.rvcm-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.rvcm-menu-list li,
.rvcm-mobile-menu-list li {
  margin: 0;
}
.rvcm-menu-list .current-menu-item > a,
.rvcm-menu-list .current_page_item > a {
  color: var(--rvcm-deep-forest);
}
.rvcm-mobile-menu-list {
  display: grid;
  gap: 0;
}
.rvcm-mobile-menu-list a {
  display: block;
}
.rvcm-mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  box-shadow: var(--rvcm-card-shadow);
  padding-inline: 16px;
}
.rvcm-header .sub-menu {
  list-style: none;
  margin: 10px 0 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--rvcm-border);
  border-radius: 14px;
  box-shadow: var(--rvcm-card-shadow);
}

/* Blog, archive, and single post design */
.rvcm-blog-hero {
  padding: clamp(72px, 8vw, 112px) 0 clamp(52px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.rvcm-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 60, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 46, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}
.rvcm-blog-hero .container {
  position: relative;
}
.rvcm-blog-hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  max-width: 920px;
  margin-top: 14px;
}
.rvcm-blog-hero p {
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.75;
  margin-top: 18px;
}
.rvcm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.rvcm-blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.rvcm-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rvcm-card-shadow);
}
.rvcm-blog-card-media {
  display: block;
  aspect-ratio: 16/10;
  background: linear-gradient(
    135deg,
    rgba(18, 60, 46, 0.11),
    rgba(245, 158, 11, 0.18)
  );
  overflow: hidden;
}
.rvcm-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rvcm-blog-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--rvcm-camp-green);
}
.rvcm-blog-placeholder svg {
  width: 52px;
  height: 52px;
}
.rvcm-blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.rvcm-blog-card h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.18;
}
.rvcm-blog-card h2 a:hover {
  color: var(--rvcm-camp-green);
}
.rvcm-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--rvcm-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rvcm-post-meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rvcm-sunset-orange);
  margin-left: 12px;
  vertical-align: middle;
}
.rvcm-blog-excerpt p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(31, 41, 51, 0.72);
}
.rvcm-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 900;
  color: var(--rvcm-deep-forest);
}
.rvcm-read-more svg {
  width: 16px;
  height: 16px;
  color: var(--rvcm-sunset-orange);
  transition: transform 0.2s ease;
}
.rvcm-read-more:hover svg {
  transform: translateX(3px);
}
.rvcm-pagination {
  margin-top: 38px;
}
.rvcm-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.rvcm-pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rvcm-border);
  border-radius: 12px;
  background: #fff;
  font-weight: 900;
  color: var(--rvcm-deep-forest);
  padding: 0 13px;
}
.rvcm-pagination .current,
.rvcm-pagination .page-numbers:hover {
  background: var(--rvcm-deep-forest);
  color: #fff;
}
.rvcm-search-form {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 620px;
  margin-top: 22px;
}
.rvcm-search-form input {
  min-height: 52px;
  flex: 1;
  border: 1px solid var(--rvcm-border);
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
  background: #fff;
}
.rvcm-single-hero {
  padding: clamp(68px, 8vw, 108px) 0 clamp(52px, 7vw, 78px);
  position: relative;
  overflow: hidden;
}
.rvcm-single-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 60, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 60, 46, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}
.rvcm-single-hero-inner {
  position: relative;
  max-width: 980px;
}
.rvcm-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  font-weight: 900;
  color: var(--rvcm-camp-green);
}
.rvcm-single-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  max-width: 960px;
  margin: 14px 0 18px;
}
.rvcm-single-intro {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.75;
  max-width: 820px;
  margin-top: 18px;
}
.rvcm-single-image-wrap {
  margin-top: -44px;
  position: relative;
  z-index: 2;
}
.rvcm-single-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--rvcm-card-shadow);
  border: 1px solid var(--rvcm-border);
}
.rvcm-single-content-section {
  padding-top: clamp(54px, 7vw, 84px);
}
.rvcm-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.rvcm-single-content {
  padding: clamp(26px, 5vw, 52px);
}
.rvcm-single-sidebar {
  position: sticky;
  top: 112px;
}
.rvcm-sidebar-card {
  padding: 24px;
}
.rvcm-sidebar-card h3 {
  font-size: 1.35rem;
  margin-top: 10px;
}
.rvcm-sidebar-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 14px 0 20px;
}
.rvcm-content h2,
.rvcm-content h3,
.rvcm-content h4 {
  margin: 1.35em 0 0.55em;
}
.rvcm-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}
.rvcm-content h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}
.rvcm-content p,
.rvcm-content li {
  font-size: 17px;
  line-height: 1.82;
  color: rgba(31, 41, 51, 0.78);
}
.rvcm-content p {
  margin: 0 0 1.15em;
}
.rvcm-content ul,
.rvcm-content ol {
  padding-left: 1.25em;
  margin: 0 0 1.35em;
}
.rvcm-content blockquote {
  margin: 2em 0;
  padding: 24px;
  border-left: 5px solid var(--rvcm-sunset-orange);
  background: var(--rvcm-soft-sand);
  border-radius: 18px;
}
.rvcm-content a {
  color: var(--rvcm-camp-green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rvcm-content img {
  border-radius: 18px;
  box-shadow: var(--rvcm-soft-shadow);
}
.rvcm-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.rvcm-post-tags a {
  border: 1px solid var(--rvcm-border);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 900;
  color: var(--rvcm-deep-forest);
  background: var(--rvcm-soft-sand);
}
.rvcm-post-navigation-section {
  padding: 0 0 58px;
}
.rvcm-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rvcm-post-nav a {
  display: block;
  border: 1px solid var(--rvcm-border);
  border-radius: 18px;
  padding: 18px 20px;
  font-weight: 900;
  color: var(--rvcm-deep-forest);
  background: #fff;
  box-shadow: var(--rvcm-soft-shadow);
}
.rvcm-post-nav div:last-child {
  text-align: right;
}
.rvcm-comments-wrap {
  margin-bottom: 70px;
}
.rvcm-comments {
  padding: 28px;
}
.rvcm-comment-list {
  padding-left: 22px;
}
.rvcm-comment-form input:not([type="submit"]),
.rvcm-comment-form textarea {
  width: 100%;
  border: 1px solid var(--rvcm-border);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
}
.rvcm-empty-state {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.rvcm-page-featured-image {
  margin: 0 0 24px;
}
.rvcm-page-featured-image img {
  border-radius: 18px;
}

@media (max-width: 991px) {
  .rvcm-theme {
    padding-top: 72px;
  }
  .rvcm-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rvcm-single-layout {
    grid-template-columns: 1fr;
  }
  .rvcm-single-sidebar {
    position: static;
  }
  .rvcm-mobile-nav {
    top: 100%;
  }
  body.admin-bar .rvcm-header {
    top: 32px;
  }
}
@media (max-width: 782px) {
  body.admin-bar .rvcm-header {
    top: 46px;
  }
}
@media (max-width: 767px) {
  .rvcm-theme {
    padding-top: 68px;
  }
  .rvcm-theme section[id],
  .rvcm-theme [id] {
    scroll-margin-top: 88px;
  }
  .rvcm-blog-grid {
    grid-template-columns: 1fr;
  }
  .rvcm-blog-card-body {
    padding: 22px;
  }
  .rvcm-search-form {
    flex-direction: column;
    align-items: stretch;
  }
  .rvcm-post-nav {
    grid-template-columns: 1fr;
  }
  .rvcm-post-nav div:last-child {
    text-align: left;
  }
  .rvcm-single-image-wrap {
    margin-top: -26px;
  }
  .rvcm-single-image {
    border-radius: 20px;
  }
  .rvcm-single-content {
    padding: 24px;
  }
  .rvcm-content p,
  .rvcm-content li {
    font-size: 16px;
  }
  .rvcm-menu-list {
    gap: 16px;
  }
}

/* RV Camp Map Elementor theme shell fixes */
.rvcm-theme .rvcm-header.rvcm-header-scrolled,
.rvcm-theme .rvcm-header.rvcm-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 223, 210, 0.9);
  box-shadow: 0 12px 35px -22px rgba(18, 60, 46, 0.35);
}
.rvcm-theme .rvcm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 223, 210, 0.72);
}
body.admin-bar .rvcm-theme .rvcm-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .rvcm-theme .rvcm-header {
    top: 46px;
  }
}
.rvcm-theme .rvcm-main {
  min-height: 50vh;
}
.rvcm-theme .rvcm-page-content > .elementor {
  width: 100%;
}
.rvcm-theme .rvcm-logo-img {
  max-width: 42px;
  max-height: 42px;
  border-radius: 12px;
  display: block;
}
.rvcm-theme .rvcm-header-cta {
  white-space: nowrap;
}
.rvcm-theme .rvcm-mobile-nav .rvcm-btn {
  margin-top: 10px;
  width: 100%;
}


/* ========================================================================== */
/* COHESIVE HEADER NAVIGATION & DROP-DOWN FOCUS FIXES                         */
/* ========================================================================== */

/* The Fix: Bridges the visual gap between parent link and child box container */
.rvcm-theme .rvcm-menu-list .sub-menu {
    position: absolute;
    display: none;
    min-width: 220px;
    list-style: none;
    margin: 0; /* Reset margins */
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--rvcm-border);
    border-radius: 14px;
    box-shadow: var(--rvcm-card-shadow);
    top: 100%; /* Positions box perfectly relative to header height line */
    left: 0;
}

/* Pseudo-element cushion ensuring hover continuity */
.rvcm-theme .rvcm-menu-list li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px; /* Creates the invisible hover bridge zone */
    height: 15px;
    display: block;
}

.rvcm-theme .rvcm-menu-list li {
    position: relative;
    padding-bottom: 10px; /* Extends active hover surface area zone fields */
}

/* Safer sub-menu tracking parameters matching active mouse hover paths */
.rvcm-theme .rvcm-menu-list li:hover > .sub-menu,
.rvcm-theme .rvcm-menu-list li .sub-menu:hover {
    display: block !important;
}

.rvcm-theme .rvcm-menu-list .sub-menu a {
    display: block;
    padding: 8px 12px !important;
    color: var(--rvcm-charcoal) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    transition: color 0.15s ease;
}

.rvcm-theme .rvcm-menu-list .sub-menu a:hover {
    color: var(--rvcm-camp-green) !important;
}
.rvcm-theme .rvcm-menu-list li {
  position: relative;
}
.rvcm-theme .rvcm-menu-list li:hover > .sub-menu {
  display: block;
}

.rvcm-theme .rvcm-skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.rvcm-theme .rvcm-skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: #123c2e;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 10001;
}

/* Elementor section helpers */
.rvcm-theme .rvcm-elem-section {
  position: relative;
  overflow: hidden;
}
.rvcm-theme .rvcm-code-note {
  padding: 18px;
  border: 1px dashed var(--rvcm-border);
  border-radius: 18px;
  background: var(--rvcm-soft-sand);
  font-weight: 700;
  color: var(--rvcm-deep-forest);
}
.rvcm-theme .rvcm-form-shortcode {
  margin-top: 24px;
}
.rvcm-theme .rvcm-form-card {
  padding: clamp(24px, 4vw, 34px);
}
.rvcm-theme .rvcm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rvcm-theme .rvcm-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.rvcm-theme .rvcm-form-field label {
  font-weight: 900;
  font-size: 13px;
  color: var(--rvcm-deep-forest);
}
.rvcm-theme .rvcm-form-field input,
.rvcm-theme .rvcm-form-field textarea {
  border: 1px solid var(--rvcm-border);
  border-radius: 14px;
  min-height: 52px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  color: var(--rvcm-charcoal);
  width: 100%;
}
.rvcm-theme .rvcm-form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.rvcm-theme .rvcm-form-message {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 800;
}
.rvcm-theme .rvcm-form-message.is-success {
  background: rgba(46, 139, 87, 0.12);
  color: var(--rvcm-camp-green);
  border: 1px solid rgba(46, 139, 87, 0.22);
}
.rvcm-theme .rvcm-form-message.is-error {
  background: rgba(245, 158, 11, 0.16);
  color: #8a5200;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.rvcm-theme .rvcm-form-help {
  font-size: 12px;
  color: rgba(31, 41, 51, 0.64);
}
@media (max-width: 767px) {
  .rvcm-theme .rvcm-form-row {
    grid-template-columns: 1fr;
  }
}

/* 4-column editable footer */
.rvcm-theme .rvcm-footer {
  background: var(--rvcm-deep-forest);
  color: #fff;
  overflow: hidden;
}
.rvcm-theme .rvcm-footer .container {
  padding: clamp(54px, 7vw, 78px) 0 26px;
}
.rvcm-theme .rvcm-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) 1fr 1fr minmax(230px, 1.05fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}
.rvcm-theme .rvcm-footer-col {
  min-width: 0;
}
.rvcm-theme .rvcm-footer-brand {
  color: #fff;
  margin-bottom: 15px;
}
.rvcm-theme .rvcm-footer-title {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
}
.rvcm-theme .rvcm-footer-description {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 18px;
}
.rvcm-theme .rvcm-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}
.rvcm-theme .rvcm-footer-contact:hover {
  color: var(--rvcm-sunset-orange);
}
.rvcm-theme .rvcm-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.rvcm-theme .rvcm-footer-menu li {
  margin: 0;
  padding: 0;
}
.rvcm-theme .rvcm-footer-menu a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
}
.rvcm-theme .rvcm-footer-menu a:hover {
  color: var(--rvcm-sunset-orange);
  transform: translateX(2px);
}
.rvcm-theme .rvcm-footer-widget {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}
.rvcm-theme .rvcm-footer-widget :where(p, ul, ol) {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.74);
}
.rvcm-theme .rvcm-footer-widget a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(245, 158, 11, 0.55);
  text-underline-offset: 3px;
}
.rvcm-theme .rvcm-footer-cta {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.rvcm-theme .rvcm-footer-cta strong {
  display: block;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.16rem;
  line-height: 1.25;
  margin-bottom: 12px;
}
.rvcm-theme .rvcm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: clamp(34px, 5vw, 54px);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}
.rvcm-theme .rvcm-footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
}
.rvcm-theme .rvcm-footer-bottom a:hover {
  color: var(--rvcm-sunset-orange);
}
@media (max-width: 1024px) {
  .rvcm-theme .rvcm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .rvcm-theme .rvcm-footer-grid {
    grid-template-columns: 1fr;
  }
  .rvcm-theme .rvcm-footer-bottom {
    display: grid;
    text-align: left;
  }
  .rvcm-theme .rvcm-footer .container {
    width: min(100% - 28px, 1180px);
  }
}

/* Elementor-safe alternative class names */
.rvcm-theme .rvcm-how {
  background: linear-gradient(135deg, var(--rvcm-deep-forest), #1d6c4d);
}
.rvcm-theme .rvcm-ai-section {
  background: #182229;
  color: #fff;
}
.rvcm-theme .rvcm-ai-section h2,
.rvcm-theme .rvcm-how h2,
.rvcm-theme .rvcm-how h3,
.rvcm-theme .rvcm-final-cta h2 {
  color: #fff;
}
.rvcm-theme .rvcm-ai-section p,
.rvcm-theme .rvcm-how p,
.rvcm-theme .rvcm-final-cta p {
  color: rgba(255, 255, 255, 0.76);
}
.rvcm-theme .rvcm-demo-svg .rvcm-site {
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    filter 0.2s ease,
    transform 0.2s ease;
  outline: none;
}
.rvcm-theme .rvcm-demo-svg .rvcm-site.is-dimmed {
  opacity: 0.22;
  filter: grayscale(0.6);
}
.rvcm-theme .rvcm-demo-svg .rvcm-site.is-selected {
  filter: drop-shadow(0 0 0 #f59e0b)
    drop-shadow(0 8px 10px rgba(245, 158, 11, 0.35));
}
.rvcm-theme .rvcm-filter-btn.is-active,
.rvcm-theme .rvcm-amp-filter button.is-active {
  background: var(--rvcm-deep-forest);
  color: #fff;
  border-color: var(--rvcm-deep-forest);
}

/* v1.1 Customizer/Elementor setup fixes */
/* .rvcm-theme {
  padding-top: 72px;
} */
.rvcm-theme .rvcm-elementor-page-content {
  width: 100%;
  min-height: 35vh;
}
.rvcm-theme .rvcm-setup-section {
  background: var(--rvcm-soft-sand);
  min-height: 58vh;
  display: flex;
  align-items: center;
}
.rvcm-theme .rvcm-setup-card {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}
.rvcm-theme .rvcm-setup-card h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 14px 0 16px;
}
.rvcm-theme .rvcm-setup-card p {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1.05rem;
}
.rvcm-theme .rvcm-setup-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
@media (max-width: 767px) {
  .rvcm-theme {
    padding-top: 68px;
  }
  .rvcm-theme .rvcm-setup-card {
    text-align: left;
  }
  .rvcm-theme .rvcm-setup-actions {
    justify-content: flex-start;
  }
  .rvcm-theme .rvcm-setup-actions .rvcm-btn {
    width: 100%;
  }
}

/* v1.2 Elementor widgets + stronger footer/customizer support */
.rvcm-theme .rvcm-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.rvcm-theme .rvcm-testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rvcm-theme .rvcm-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: rgba(46, 139, 87, 0.12);
  color: var(--rvcm-camp-green);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 16px;
}
.rvcm-theme .rvcm-elementor-testimonials-widget .rvcm-note {
  margin-top: 26px;
}
.rvcm-theme .rvcm-elementor-accordion-widget .rvcm-faq-answer p:last-child {
  margin-bottom: 0;
}
.rvcm-theme .rvcm-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1fr;
  gap: 34px;
  align-items: start;
}
.rvcm-theme .rvcm-footer-title {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.rvcm-theme .rvcm-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}
.rvcm-theme .rvcm-footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}
.rvcm-theme .rvcm-footer-contact svg {
  width: 17px;
  height: 17px;
}
.rvcm-theme .rvcm-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.rvcm-theme .rvcm-footer-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition: 0.2s;
}
.rvcm-theme .rvcm-footer-menu a:hover {
  color: var(--rvcm-sunset-orange);
  transform: translateX(2px);
}
.rvcm-theme .rvcm-footer-cta {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 14px;
}
.rvcm-theme .rvcm-footer-cta strong {
  font-family: "Manrope", sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}
.rvcm-theme .rvcm-footer-widget {
  color: rgba(255, 255, 255, 0.76);
}
.rvcm-theme .rvcm-footer-widget a {
  color: #fff;
}
.rvcm-theme .rvcm-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 44px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.rvcm-theme .rvcm-footer .container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}
@media (max-width: 991px) {
  .rvcm-theme .rvcm-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rvcm-theme .rvcm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .rvcm-theme .rvcm-testimonial-grid,
  .rvcm-theme .rvcm-footer-grid {
    grid-template-columns: 1fr;
  }
  .rvcm-theme .rvcm-footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }
  .rvcm-theme .rvcm-footer-bottom {
    align-items: center;
  }
}

/* v1.3 — Original-style Testimonials / Why Choose Elementor widget + slider */
.rvcm-theme.rvcm-why-section,
.rvcm-theme .rvcm-why-section {
  background: #fff;
 padding: clamp(40px, 8vw, 40px) 0;
  overflow: hidden;
}
.rvcm-theme .rvcm-testimonial-head,
.rvcm-theme.rvcm-why-section .rvcm-section-header {
  max-width: 820px;
  margin: 0 auto clamp(38px, 5vw, 56px);
  text-align: center;
}
.rvcm-theme .rvcm-testimonial-head .rvcm-eyebrow,
.rvcm-theme.rvcm-why-section .rvcm-eyebrow {
  justify-content: center;
  color: var(--rvcm-camp-green);
  letter-spacing: 0.22em;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 16px;
}
.rvcm-theme .rvcm-testimonial-head h2,
.rvcm-theme.rvcm-why-section .rvcm-section-header h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--rvcm-deep-forest);
  font-size: clamp(2.25rem, 4.8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.rvcm-theme .rvcm-testimonial-head p,
.rvcm-theme.rvcm-why-section .rvcm-section-header p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(31, 41, 51, 0.76);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.72;
}
.rvcm-theme .rvcm-testimonial-grid {
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.rvcm-theme .rvcm-testimonial-slider {
  --rvcm-per-view: 3;
  max-width: 1216px;
  margin: 0 auto;
  position: relative;
}
.rvcm-theme .rvcm-testimonial-viewport {
  overflow: hidden;
  padding: 2px 0 16px;
}
.rvcm-theme .rvcm-testimonial-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  will-change: transform;
  transition: transform 0.46s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.rvcm-theme .rvcm-testimonial-slide {
  flex: 0 0
    calc((100% - (24px * (var(--rvcm-per-view) - 1))) / var(--rvcm-per-view));
}
.rvcm-theme .rvcm-testimonial-card {
  min-height: 258px;
  padding: 31px 28px;
  border-radius: 20px;
  border: 1px solid rgba(209, 198, 180, 0.85);
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 60, 46, 0.07);
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}
.rvcm-theme .rvcm-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(18, 60, 46, 0.11);
}
.rvcm-theme .rvcm-testimonial-card.is-featured {
  border-color: var(--rvcm-camp-green);
  box-shadow: 0 20px 58px rgba(46, 139, 87, 0.13);
}
.rvcm-theme .rvcm-testimonial-card .rvcm-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: inline-grid;
  place-items: center;
  background: var(--rvcm-deep-forest);
  color: #fff;
  font-size: 23px;
  line-height: 1;
  font-weight: 900;
  margin: 0 0 24px;
  box-shadow: 0 14px 30px rgba(18, 60, 46, 0.16);
}
.rvcm-theme .rvcm-testimonial-card h3 {
  margin: 0;
  color: var(--rvcm-deep-forest);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
  font-weight: 900;
}
.rvcm-theme .rvcm-testimonial-card p {
  margin: 14px 0 0;
  color: rgba(31, 41, 51, 0.72);
  font-size: 15px;
  line-height: 1.65;
}
.rvcm-theme .rvcm-testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.rvcm-theme .rvcm-slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 60, 46, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--rvcm-deep-forest);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(18, 60, 46, 0.08);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s,
    opacity 0.2s;
}
.rvcm-theme .rvcm-slider-arrow:hover:not(:disabled) {
  background: var(--rvcm-deep-forest);
  color: #fff;
  transform: translateY(-2px);
}
.rvcm-theme .rvcm-slider-arrow:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.rvcm-theme .rvcm-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 14px;
}
.rvcm-theme .rvcm-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(18, 60, 46, 0.24);
  padding: 0;
  cursor: pointer;
  transition:
    width 0.2s,
    background 0.2s;
}
.rvcm-theme .rvcm-slider-dot.is-active {
  width: 24px;
  background: var(--rvcm-camp-green);
}
.rvcm-theme .rvcm-testimonial-slider.is-static .rvcm-testimonial-controls {
  display: none;
}
.rvcm-theme.rvcm-why-section .rvcm-note,
.rvcm-theme .rvcm-elementor-testimonials-widget .rvcm-note {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 15px;
  font-style: italic;
  color: rgba(31, 41, 51, 0.72);
}
@media (max-width: 1023px) {
  .rvcm-theme .rvcm-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rvcm-theme .rvcm-testimonial-slider {
    --rvcm-per-view: 2;
  }
}
@media (max-width: 700px) {
  .rvcm-theme.rvcm-why-section,
  .rvcm-theme .rvcm-why-section {
    padding: 72px 0;
  }
  .rvcm-theme .rvcm-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .rvcm-theme .rvcm-testimonial-slider {
    --rvcm-per-view: 1;
  }
  .rvcm-theme .rvcm-testimonial-track {
    gap: 18px;
  }
  .rvcm-theme .rvcm-testimonial-slide {
    flex-basis: 100%;
  }
  .rvcm-theme .rvcm-testimonial-card {
    min-height: auto;
    padding: 26px 22px;
  }
}

/* RVCM v1.4 testimonial icon rendering */
.rvcm-theme .rvcm-testimonial-card .rvcm-card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  flex: 0 0 auto;
}
.rvcm-theme .rvcm-testimonial-card .rvcm-card-icon i {
  font-size: 22px;
  line-height: 1;
  color: currentColor;
}
.rvcm-theme .rvcm-testimonial-card .rvcm-card-icon img {
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
  display: block;
}


/* the single page right side design  */
