/* ==========================================================================
   Star Enterprises — Scrap & Recycle Vehicle
   ========================================================================== */
:root {
  --navy: #0f1d36;
  --navy-2: #16233a;
  --navy-3: #1c2c47;
  --green: #57bbd9;
  --green-dark: #5db838;
  --ink: #131b29;
  --muted: #5c6879;
  --muted-light: rgba(255, 255, 255, .68);
  --bg-soft: #f4f6f9;
  --border: #e8ebf1;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -20px rgba(16, 26, 43, 0.18);
  --font-display: 'Roboto Condensed', sans-serif;
  --font-body: 'Roboto Slab', serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.005em;
}

a {
  text-decoration: none;
}

.text-accent {
  color: var(--green);
}

.text-light-70 {
  color: var(--muted-light);
}

section {
  padding: 96px 0;
}

@media (max-width: 767px) {
  section {
    padding: 64px 0;
  }
}

.section-head {
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 660px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 22px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--green-dark);
  transform: translateY(-50%);
}

.eyebrow-light {
  color: var(--green);
}

.eyebrow-light::before {
  background: var(--green);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, .5);
}

.navbar {
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  /* height: 44px; */
  width: 100px;
  border-radius: 10px;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .15);
}

.brand-rvsf-img {
  /* height: 38px; */
  width: 100px;
  border-radius: 6px;
  background: #fff;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, .15);
}

.navbar-nav {
  gap: 0 !important;
}

.nav-link {
  font-weight: 600;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, .85) !important;
  padding: 7px 10px !important;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}

.nav-link:hover {
  color: var(--green) !important;
  background: rgba(255, 255, 255, .06);
}

.nav-link-glow {
  position: relative;
  animation: nav-glow-pulse 2.4s ease-in-out infinite;
}

@keyframes nav-glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(126, 217, 87, 0);
    background: transparent;
  }

  50% {
    box-shadow: 0 0 12px 1px rgba(126, 217, 87, 0.3);
    background: rgba(126, 217, 87, .12);
  }
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .25) !important;
}

.navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.dropdown-menu {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .5);
  padding: 6px;
}

.dropdown-item {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  border-radius: 6px;
  padding: 8px 12px;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(255, 255, 255, .08);
  color: var(--green);
}

.btn-quote,
.btn-cta {
  background: var(--green);
  color: var(--navy) !important;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
}

.btn-quote-glow {
  animation: btn-pulse-glow 2s ease-in-out infinite;
}

@keyframes btn-pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(126, 217, 87, .55);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(126, 217, 87, 0);
  }
}

.btn-quote:hover,
.btn-cta:hover {
  background: var(--green-dark);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(124, 217, 87, 0.55);
}

.btn-cta {
  width: 100%;
  justify-content: center;
  padding: 13px 22px;
  font-size: 1.02rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 76px 0 90px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  /* background-image: radial-gradient(rgba(92, 184, 56, 0.35) 1.5px, transparent 1.5px); */
  background-size: 24px 24px;
  /* -webkit-mask-image: radial-gradient(ellipse 75% 65% at 70% 30%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse 75% 65% at 70% 30%, #000 40%, transparent 85%); */
  /* opacity: .55;
  pointer-events: none;
  z-index: 0; */
}

.hero .position-relative {
  z-index: 1;
}

.hero-visual {
  display: none;
  position: absolute;
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%);
  width: clamp(440px, 42vw, 640px);
  z-index: 0;
  pointer-events: none;
  animation: hero-visual-float 6s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 45px rgba(16, 26, 43, .18));
}

@keyframes hero-visual-float {

  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-14px);
  }
}

@media (min-width: 992px) {
  .hero-visual {
    display: block;
  }
}

@media (min-width: 1400px) {
  .hero-visual {
    left: 44%;
  }
}

.hero-title {
  font-size: clamp(2.3rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-tagline {
  margin-bottom: 18px;
}

.hero-tagline .stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-tagline .stat small {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: #eef9e6;
  border: 1px solid #d7f0c4;
  padding: 7px 14px;
  border-radius: 30px;
}

/* Premium hero trust chips — gentle continuous float, staggered */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: #eef9e6;
  border: 1px solid #d7f0c4;
  padding: 7px 14px;
  border-radius: 30px;
  animation: chip-float 3.6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.hero-trust-chip i {
  font-size: .9rem;
}

@keyframes chip-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Premium animated headline */
.hero-title-premium {
  margin-bottom: 16px;
}

.hero-line {
  display: block;
}

.hero-line-3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-recycle-icon {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-dark);
  animation: recycle-spin 5s linear infinite;
  display: inline-block;
}

@keyframes recycle-spin {
  to {
    transform: rotate(360deg);
  }
}

.text-accent-gradient {
  background: linear-gradient(100deg, var(--green-dark), var(--green), var(--green-dark));
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--green);
  animation: gradient-sheen 4s ease-in-out infinite;
}

@keyframes gradient-sheen {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

.hero-punch {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 26px;
}

/* Continuous scrolling trust marquee */
.hero-marquee {
  margin-top: 34px;
  max-width: 620px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marquee-scroll 22s linear infinite;
}

.hero-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.hero-marquee-track span i {
  color: var(--green-dark);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-trust-chip,
  .hero-recycle-icon,
  .text-accent-gradient,
  .hero-marquee-track {
    animation: none;
  }
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero-cta-group .btn {
  font-size: 0.98rem;
  padding: 13px 28px;
  border-radius: 10px;
  width: auto;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border);
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}

.btn-hero-call:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
  color: var(--navy);
}

/* Quote card */
.hero-form-col {
  position: relative;
}

.hero-form-water {
  position: absolute;
  inset: -60px -40px auto -40px;
  height: 480px;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
  color: var(--green);
}

.water-blob {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: .18;
  animation: water-float 9s ease-in-out infinite;
}

.water-blob-2 {
  color: var(--navy-3);
  opacity: .12;
  animation: water-float 11s ease-in-out infinite reverse;
  animation-delay: -3s;
}

@keyframes water-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(3%, -4%) scale(1.05) rotate(6deg);
  }

  66% {
    transform: translate(-3%, 3%) scale(0.97) rotate(-5deg);
  }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.quote-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: 0 24px 60px -20px rgba(16, 26, 43, .25);
  transform: translateY(-14px);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--border-angle),
      transparent 0%,
      transparent 68%,
      var(--green) 78%,
      #fff 82%,
      var(--green) 86%,
      transparent 96%,
      transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: border-ray-spin 3.2s linear infinite;
}

@keyframes border-ray-spin {
  to {
    --border-angle: 360deg;
  }
}

.quote-card-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.quote-card-title {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.quote-card-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.quote-card .form-label {
  font-weight: 600;
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.quote-card .form-control,
.quote-card .form-select,
.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 11px 14px;
  font-size: 0.95rem;
}

.quote-card .form-control:focus,
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(126, 217, 87, .18);
}

.phone-input {
  display: flex;
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--muted);
}

.phone-input .form-control {
  border-radius: 0 10px 10px 0;
}

.form-fineprint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 14px 0 0;
}

.form-success {
  text-align: center;
  padding: 20px 10px;
}

.form-success i {
  font-size: 2.4rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   Cities (dark)
   ========================================================================== */
.cities-section {
  background: var(--navy);
}

.chat-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 1.3rem;
}

.city-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 230px;
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, .5);
}

.city-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(.65) saturate(1.05);
  transform: scale(1.15);
  transition: filter .5s ease, transform .5s ease;
}

.city-card:hover .city-card-bg {
  filter: blur(0) brightness(.9) saturate(1.05);
  transform: scale(1.04);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 26, 43, .92) 5%, rgba(16, 26, 43, .35) 60%, rgba(16, 26, 43, .15) 100%);
  transition: background .4s ease;
}

.city-card:hover .city-card-overlay {
  background: linear-gradient(to top, rgba(16, 26, 43, .82) 5%, rgba(16, 26, 43, .2) 65%, rgba(16, 26, 43, .05) 100%);
}

.city-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.city-pin {
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 12px;
}

.city-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.city-status {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
}

.city-status i {
  font-size: 1.4rem;
  line-height: 0;
}

/* ==========================================================================
   Offer
   ========================================================================== */
.offer-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 340px;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-image-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(16, 26, 43, .82);
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.offer-image-tag i {
  color: var(--green);
}

.offer-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-item {
  display: flex;
  gap: 20px;
}

.offer-item-box {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.offer-item-box:hover {
  transform: translateY(-4px) translateX(2px);
  box-shadow: var(--shadow-soft);
  border-color: var(--green);
}

.offer-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green-dark);
  min-width: 46px;
  transition: color .25s ease;
}

.offer-item-box:hover .offer-num {
  color: var(--navy);
}

.offer-item h3 {
  font-size: 1.22rem;
  margin-bottom: 6px;
}

.offer-item p {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
}

/* ==========================================================================
   Trust cards
   ========================================================================== */
.trust-section {
  background: var(--bg-soft);
}

.trust-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -20px rgba(16, 26, 43, .25);
  border-color: rgba(126, 217, 87, .5);
}

.trust-card-bg {
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: 9rem;
  line-height: 1;
  color: var(--green-dark);
  opacity: .06;
  filter: blur(6px);
  transform: rotate(-8deg) scale(1);
  transition: filter .45s ease, opacity .45s ease, transform .45s ease;
  z-index: 0;
  pointer-events: none;
}

.trust-card:hover .trust-card-bg {
  filter: blur(0);
  opacity: .14;
  transform: rotate(-4deg) scale(1.12);
}

.trust-card-content {
  position: relative;
  z-index: 1;
}

.trust-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #eef9e6;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.trust-card:hover .trust-icon {
  transform: rotate(-6deg) scale(1.08);
  background: var(--green);
  color: var(--navy);
}

.trust-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.trust-card p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

/* ==========================================================================
   How it works
   ========================================================================== */
.how-section {
  background: var(--navy);
  padding: 90px 0;
}

.process-track {
  position: relative;
  margin-top: 40px;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}

/* Connector: spans exactly from this node's right edge to the next
   node's left edge, so it always sits precisely between the two
   circles regardless of screen width. Node radius = 44px. */
.process-step:not(:last-child)::after {
  content: "";
  display: none;
  position: absolute;
  top: 44px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  height: 1px;
  background: linear-gradient(90deg, rgba(126, 217, 87, .55), rgba(126, 217, 87, .55));
  z-index: 0;
}

@media (min-width: 992px) {
  .process-step:not(:last-child)::after {
    display: block;
  }
}

.process-node {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(126, 217, 87, .06), 0 0 20px 2px rgba(126, 217, 87, .35);
  transition: box-shadow .3s ease, transform .3s ease;
  position: relative;
  z-index: 1;
}

.process-step:hover .process-node {
  box-shadow: 0 0 0 6px rgba(126, 217, 87, .1), 0 0 32px 6px rgba(126, 217, 87, .55);
  transform: scale(1.05);
}

.process-node span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: #fff;
}

.process-step h3 {
  color: #fff;
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted-light);
  font-size: 0.96rem;
  margin: 0 auto;
  max-width: 270px;
}

/* ==========================================================================
   About (dark)
   ========================================================================== */
.about-section {
  background: var(--navy);
}

.about-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .6);
}

.about-photo img {
  width: 100%;
  height: 340px;
  /* object-fit: cover; */
  display: block;
}

.about-photo-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(16, 26, 43, .85);
  border: 1px solid rgba(126, 217, 87, .4);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-photo-tag i {
  color: var(--green);
}

.about-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 217, 87, .4);
}

.about-card i {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.about-card h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
}

.about-card p {
  color: var(--muted-light);
  font-size: 0.88rem;
  margin: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  background: var(--bg-soft);
}

.testimonial-swiper {
  padding-bottom: 46px;
  position: relative;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #f5b301;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.testimonial-card .quote {
  color: var(--ink);
  font-size: 0.98rem;
  min-height: 96px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

.swiper-pagination-bullet-active {
  background: var(--green-dark) !important;
}

.swiper-nav-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
  z-index: 5;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.swiper-nav-btn:hover {
  background: var(--navy);
  color: var(--green);
  transform: translateY(-50%) scale(1.06);
}

.swiper-nav-prev {
  left: -6px;
}

.swiper-nav-next {
  right: -6px;
}

@media (min-width: 1300px) {
  .swiper-nav-prev {
    left: -54px;
  }

  .swiper-nav-next {
    right: -54px;
  }
}

.swiper-nav-btn.swiper-button-disabled {
  opacity: .35;
  cursor: default;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  background: #fff;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 20px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #eef9e6;
  color: var(--green-dark);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  color: var(--muted);
  font-size: 0.94rem;
  padding: 4px 22px 22px;
}

/* ==========================================================================
   Page banner (contact page)
   ========================================================================== */
.page-banner {
  background: var(--navy);
  padding: 80px 0 70px;
}

.page-banner .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-section {
  background: #fff;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.blog-card-cover {
  height: 150px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 2.6rem;
}

.blog-card-body {
  padding: 22px 22px 24px;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: #eef9e6;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Blog / Guide detail (post) pages
   ========================================================================== */
.post-banner {
  padding: 60px 0 50px;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
  transition: color .15s ease;
}

.post-back-link:hover {
  color: var(--green);
}

.post-title {
  margin-top: 12px;
  max-width: 780px;
}

.post-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-light);
  font-size: 0.85rem;
  margin-top: 12px;
}

.post-section {
  background: #fff;
  padding-bottom: 90px;
}

.post-cover {
  height: 220px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 4rem;
  margin-bottom: 32px;
}

.post-body p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.post-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  margin-top: 20px;
}

.post-cta h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.post-cta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.post-sidebar {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  position: sticky;
  top: 100px;
}

.post-sidebar h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.post-sidebar-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.post-sidebar-item:first-of-type {
  border-top: none;
}

.post-sidebar-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1rem;
}

.post-sidebar-item h5 {
  font-size: 0.86rem;
  color: var(--ink);
  margin: 4px 0 0;
  line-height: 1.3;
}

.post-sidebar-item .blog-card-tag {
  margin-bottom: 4px;
  padding: 2px 8px;
  font-size: 0.62rem;
}

.post-sidebar-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background .2s ease;
}

.post-sidebar-cta:hover {
  background: var(--navy-3);
  color: var(--green);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  height: 100%;
}

.contact-info-card i {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: block;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-info-card a {
  color: var(--ink);
  font-weight: 600;
}

.contact-info-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 6px 0 0;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.contact-form-card h2 {
  font-size: 1.5rem;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

.cities-mini {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.cities-mini h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.cities-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cities-mini-list span {
  font-size: 0.85rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 20px;
}

.cities-mini-list i {
  color: var(--green-dark);
  margin-right: 4px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  padding: 70px 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  /* height: 52px;
  width: auto; */
  width: 155px;
  border-radius: 10px;
}

.footer-about {
  color: var(--muted-light);
  font-size: 0.9rem;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-2);
  color: #fff;
  transition: background .15s ease;
}

.footer-social a:hover {
  background: var(--green-dark);
  color: var(--navy);
}

.footer-heading {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-light);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-contact a {
  color: var(--muted-light);
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-contact i {
  color: var(--green);
  margin-top: 3px;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 40px;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-light);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rvsf-badge-img {
  height: 24px;
  width: auto;
  border-radius: 3px;
  background: #fff;
  padding: 2px;
}

@media (max-width: 991.98px) {

  .footer-top .col-lg-4,
  .footer-top .col-lg-2,
  .footer-top .col-lg-3 {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-about {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-heading {
    margin-top: 8px;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-legal {
    justify-content: center;
  }
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .6);
  z-index: 998;
  transition: transform .15s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
}

.whatsapp-fab-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .6;
  animation: whatsapp-ping 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-ping {
  0% {
    transform: scale(1);
    opacity: .55;
  }

  70% {
    transform: scale(1.9);
    opacity: 0;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.call-fab {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 24px -6px rgba(16, 26, 43, .6);
  z-index: 998;
  transition: transform .15s ease;
}

.call-fab:hover {
  transform: scale(1.08);
  color: var(--green);
}

.call-fab-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--navy);
  opacity: .55;
  animation: whatsapp-ping 2.2s ease-out infinite;
  animation-delay: 1.1s;
  z-index: -1;
}

@media (min-width: 992px) {
  .call-fab {
    display: none;
  }
}

/* ==========================================================================
   Custom brand cursor (pointer devices only)
   ========================================================================== */
html.has-custom-cursor,
html.has-custom-cursor a,
html.has-custom-cursor button,
html.has-custom-cursor input,
html.has-custom-cursor textarea,
html.has-custom-cursor label {
  cursor: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: opacity .2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--navy);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 2px solid var(--green);
  transition: width .2s ease, height .2s ease, margin .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.cursor-ring.is-active {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  background: rgba(126, 217, 87, 0.15);
  border-color: var(--green-dark);
}

@media (max-width: 991.98px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
.trust-highlights {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 20px auto 35px;
  max-width: 1100px;
}

.trust-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.trust-highlights i {
  color: #198754;
  font-size: 16px;
}

@media (max-width: 767px) {
  .trust-highlights {
      flex-direction: column;
      align-items: flex-start;
      padding: 0 15px;
      gap: 10px;
  }

  .trust-highlights span {
      font-size: 14px;
  }
}
.visitor-counter-box {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 6px 8px;
  background: linear-gradient(135deg, #02609d, #013d65);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(2, 96, 157, .25);
}

.visitor-counter-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.15);
  font-size: 20px;
}

.visitor-counter-info small {
    font-size: 9px;
    letter-spacing: 1.5px;
    opacity: .7;
}

.visitor-counter-info h4 {
  margin: 1px 0;
  font-size: 25px;
  font-weight: 800;
  color : #fff;
}

.visitor-counter-info p {
  margin: 0;
  font-size: 11px;
  opacity: .75;
}