  html, body {
  margin: 0;
  padding: 0;
  font-family: "Lato", Arial, sans-serif;
  }

      .list-inline {
      padding-left: 0;
      list-style: none;
      margin: 0;
    }

    .list-inline > li {
      display: inline-block;
      vertical-align: middle;
      margin-right: 10px;
    }
    
    .lazy-bg {
  background-color: #000; /* fallback */
  background-size: cover;
  background-position: center;
  }
  
  @font-face {
  font-family: "Lato";
  src: url("fonts/lato-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/lato-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

  @media (min-width: 992px) {
    /* Keep top menu items + arrows on one line */
    .gentlevan-navbar .gv-nav > li {
      display: flex;
      align-items: center;
      white-space: nowrap;
    }

    /* Reset any old arrow styling first */
    .gentlevan-navbar .gv-nav > li::before,
    .gentlevan-navbar .gv-nav > li::after {
      content: none !important;
    }

    /* Our clean arrow BETWEEN items */
    .gentlevan-navbar .gv-nav > li + li::before {
      content: "›" !important;
      display: inline-block;
      margin: 0 6px 0 2px;
      font-size: 0.9em;
      line-height: 1;
      position: static; /* prevents it dropping under the item */
    }
  }

/* --- Desktop header "Get a Quote" button FIX --- */
@media (min-width: 992px) {
  .gentlevan-navbar .button.button-sm.button-secondary,
  .gv-navbar-right .button.button-sm.button-secondary {
    font-size: 0.95rem !important;
    padding: 14px 30px !important;     /* 🔹 increased padding (not flat) */
    border-radius: 30px !important;    /* 🔹 smooth pill shape */
    line-height: 1.2 !important;
    width: auto !important;            /* 🔹 prevents stretched width */
    min-width: unset !important;       /* 🔹 removes forced width from theme */
    height: auto !important;
    display: inline-flex !important;   /* 🔹 ensures natural height */
    align-items: center !important;
    justify-content: center !important;
  }
}

.h2-twoline{
  position: relative;
  text-align: center;
  margin: 36px auto;
  max-width: 1100px;
}

.h2-twoline::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:50%;
  height:1px;
  background:#000;
  opacity:.18;
}

.h2-twoline span{
  position: relative;
  display:inline-block;
  padding: 12px 22px;
  background:#111;
  color:#fff;
  border-radius: 18px;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
}

.h2-twoline em{
  display:block;
  margin-top:4px;
  font-style: normal;
  font-weight: 400;
  opacity:.85;
}

/* ===== Intro section after hero ===== */

.gv-intro {
  max-width: 1280px;
  margin: 48px auto 56px;
  padding: 0;
  text-align: center;
}

.gv-intro__lead {
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 18px auto 10px;
  max-width: 820px;
  color: rgba(0,0,0,0.85);
}

.gv-intro__text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto 22px;
  max-width: 820px;
  color: rgba(0,0,0,0.75);
}

.gv-intro__points {
  list-style: none;
  padding: 0;
  margin: 0 auto 26px;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  text-align: left;
}

.gv-intro__points li {
  background: rgba(0,0,0,0.04);
  border-radius: 14px;
  padding: 12px 14px;
  line-height: 1.45;
}

.gv-intro__cta {
  margin-top: 12px;
}

.gv-intro__secondary {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.7);
}

.gv-intro__secondary a {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 700px) {
  .gv-intro__points {
    grid-template-columns: 1fr;
  }
}

.gv-intro__cta .button {
  min-width: 220px;
  padding: 12px 26px !important;
  border-radius: 26px !important;
  font-size: 0.95rem !important;
}

@media (max-width: 700px) {
  .gv-intro__cta .button {
    width: 100%;
    min-width: unset;
  }
}

.gv-intro__cards {
  margin: 0 auto 26px;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  text-align: left;
}

.gv-intro__card {
  display: block;
  background: rgba(0,0,0,0.04);
  border-radius: 14px;
  padding: 12px 14px;
  line-height: 1.45;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.gv-intro__card:hover {
  background: rgba(0,0,0,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

.gv-intro__card:focus-visible {
  outline: 3px solid rgba(0,130,200,0.35);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .gv-intro__cards { grid-template-columns: 1fr; }
}

.gv-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 24px;
  border-radius: 999px;

  font-weight: 700;
  text-decoration: none;

  background: transparent;
  border: 2px solid rgba(0,130,200,0.85);
  color: rgba(0,130,200,1);

  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.gv-cta-outline:hover {
  background: rgba(0,130,200,1);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}


/* ===== Interactive service cards ===== */

.gv-intro__cards {
  margin: 0 auto 30px;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}

.gv-intro__card {
  position: relative;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  font-weight: 500;

  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Accent bar */
.gv-intro__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 4px;
  background: var(--accent);
}

/* Accent colours */
.gv-intro__card[data-accent="blue"]   { --accent: #0082c8; }
.gv-intro__card[data-accent="green"]  { --accent: #16a34a; }
.gv-intro__card[data-accent="orange"] { --accent: #f59e0b; }
.gv-intro__card[data-accent="purple"] { --accent: #7c3aed; }

.gv-intro__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

/* Keyboard accessibility */
.gv-intro__card:focus-visible {
  outline: 3px solid rgba(0,130,200,0.35);
  outline-offset: 4px;
}

/* Mobile */
@media (max-width: 700px) {
  .gv-intro__cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Soft background band on intro section ===== */

.pwidth {
  background:
    linear-gradient(
      180deg,
      rgba(248,250,252,1) 0%,
      rgba(241,245,249,1) 100%
    );

  padding: 64px 20px 72px;   /* replaces previous margins */
  margin: 0 auto;            /* remove vertical margins */
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.pwidth{
  max-width: 1280px;
  width: 92%;
  margin: 0 auto;
}

/* Soft band wrapper (full width) */
.fullpwidth {
  position: relative;
  padding: 56px 0 60px; /* controls band height */
  background: linear-gradient(180deg, rgba(248,250,252,1) 0%, rgba(241,245,249,1) 100%);
  overflow: hidden;
}

/* Soft highlight texture (no image) */
.fullpwidth::before {
  content: "";
  position: absolute;
  inset: -40px 0 auto 0;
  height: 220px;
  background: radial-gradient(circle at 50% 0%,
    rgba(0,130,200,0.10) 0%,
    rgba(0,130,200,0.00) 60%);
  pointer-events: none;
}

/* Blend the band edges into surrounding sections */
.fullpwidth::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 18%),
    linear-gradient(0deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0) 18%);
  pointer-events: none;
}

/* Ensure your content sits above the effects */
.fullpwidth > * {
  position: relative;
  z-index: 1;
}

/* Mobile spacing */
@media (max-width: 700px) {
  .fullpwidth { padding: 44px 0 50px; }
}

.gv-intro__card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
      font-size: 1.3rem;
  padding: 16px 16px;
}

.gv-intro__card:hover {
  border-color: rgba(0,130,200,0.18);
}


.pwidth {
  padding-top: 0;
}

/* ===== Readability boost for intro ===== */

.gv-intro {
  /* keep your band background on pwidth, this just controls text area */
  text-align: center;
}

.gv-intro__lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #111827;
  max-width: 740px;     /* narrower = easier to read */
  margin: 18px auto 12px;
  font-weight: 600;     /* slightly stronger */
}

.gv-intro__text {
  font-size: 1.06rem;
  line-height: 1.75;
  color: #374151;
  max-width: 740px;
  margin: 0 auto 26px;
}

/* Mobile: still readable */
@media (max-width: 700px) {
  .gv-intro__lead { font-size: 1.08rem; }
  .gv-intro__text { font-size: 1rem; }
}
/* Soft panel behind the text only */
.gv-intro__panel {
  max-width: 980px;
  margin: 0 auto 22px;
  padding: 18px 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.gv-intro__lead {
  text-wrap: balance;
}

.gv-services__grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)); /* 5 cards in one row */
  gap: 14px;
  align-items: stretch;
}

/* IMPORTANT: remove the old span rules */
.gv-service{
  /* grid-column: span 4;  <-- DELETE/REMOVE */
}

/* Tablet */
@media (max-width: 1100px){
  .gv-services__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 620px){
  .gv-services__grid{
    grid-template-columns: 1fr;
  }
}




.gv-service:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.12);
  border-color: rgba(0,130,200,0.25);
}

.gv-service__media{
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
}

.gv-service__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .25s ease;
}

.gv-service:hover .gv-service__media img{
  transform: scale(1.06);
}

.gv-service__body{
  padding: 14px 14px 16px;
}

.gv-service__h{
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.gv-service__h a{
  color: #111827;
  text-decoration: none;
}

.gv-service__h a:hover{
  text-decoration: underline;
}

.gv-service__p{
  margin: 0 0 12px;
  color: rgba(0,0,0,0.72);
  line-height: 1.55;
  font-size: 0.98rem;
}

.gv-inline{
  text-decoration: underline;
}

.gv-service__actions{
  margin-top: 10px;
}

/* Button */
.gv-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.gv-btn--soft{
  background: rgba(0,130,200,0.10);
  border: 1px solid rgba(0,130,200,0.28);
  color: rgba(0,130,200,1);
}

.gv-btn--soft:hover{
  background: rgba(0,130,200,1);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
}

/* Responsive */
@media (max-width: 992px){
  .gv-service{ grid-column: span 6; }
}

@media (max-width: 620px){
  .gv-services{ padding-top: 18px; }
  .gv-service{ grid-column: span 12; }
  .gv-services__inner{ padding: 0 14px; }
}


/* Compact service cards for single-row layout */
.gv-service{
  border-radius: 16px;
}

.gv-service__media{
  aspect-ratio: 16 / 9;   /* slightly shorter */
}

.gv-service__body{
  padding: 12px 12px 14px;
}

.gv-service__h{
  font-size: 0.95rem;
}

.gv-service__p{
  font-size: 0.9rem;
  line-height: 1.45;
}

.gv-btn{
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* Tablet */
@media (max-width: 1100px){
  .gv-services__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 620px){
  .gv-services__grid{
    grid-template-columns: 1fr;
  }
}



/* ===== Gentlevan Services section (scoped) ===== */
#services.gv-services .gv-services-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

#services.gv-services .gv-service-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

/* Float image to wrap text around it */
#services.gv-services .gv-service-img{
  float: left;
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  margin: 2px 12px 10px 0;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

/* Make sure the card contains the float */
#services.gv-services .gv-service-card::after{
  content: "";
  display: block;
  clear: both;
}

#services.gv-services .gv-service-card h3{
  margin: 0 0 6px 0;
  font-size: 18px;
  line-height: 1.2;
}

#services.gv-services .gv-service-card p{
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: .85;
}

#services.gv-services .gv-service-link{
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  margin-top: 2px;
}

/* Hover (subtle, safe for your existing palette) */
#services.gv-services .gv-service-card:hover{
  transform: translateY(-1px);
  transition: transform .12s ease;
}

/* Responsive: 5 → 3 → 2 → 1 */
@media (max-width: 1200px){
  #services.gv-services .gv-services-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px){
  #services.gv-services .gv-services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px){
  #services.gv-services .gv-services-grid{ grid-template-columns: 1fr; }
  #services.gv-services .gv-service-img{ width: 48px; height: 48px; }
}

/* Strong, clean divider */
.gv-divider{
  height: 1px;
  width: 100%;
  margin: 48px 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.18),
    rgba(0,0,0,0)
  );
}

/* Strong, visible divider */
.gv-divider-strong{
  height: 6px;
  width: 100%;
  margin: 56px 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
  border-radius: 6px;
}

/* Elegant, light but visible divider */
.gv-divider-elegant{
  position: relative;
  height: 1px;
  margin: 56px 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,0.18),
    rgba(0,0,0,0)
  );
}

.gv-divider-elegant::after{
  content:"";
  position:absolute;
  left:50%;
  top:-2px;
  transform:translateX(-50%);
  width:90px;
  height:5px;
  background: radial-gradient(
    ellipse at center,
    rgba(0,130,200,0.35),
    rgba(0,130,200,0)
  );
}

/* Elegant blue-tinted divider */
.gv-divider-blue-soft{
  height: 2px;
  width: 100%;
  margin: 56px 0;
  background: linear-gradient(
    to right,
    rgba(0,130,200,0.08),
    rgba(0,130,200,0.28),
    rgba(0,130,200,0.08)
  );
  border-radius: 2px;
}

/* ===== Why Gentlevan section ===== */
.gv-why{
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f6fbff 100%
  );
}

.gv-why-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

/* Left text */
.gv-why-intro h2{
  margin-bottom: 12px;
}

.gv-why-sub{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b647a;
}

/* Right list */
.gv-why-list{
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.gv-why-list ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.gv-why-list li{
  position: relative;
  padding-left: 34px;
  font-weight: 600;
  color: #1b2b38;
  line-height: 1.4;
}

/* Blue tick */
.gv-why-list li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,130,200,0.12);
  color: #0082c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .gv-why-grid{
    grid-template-columns: 1fr;
  }
  .gv-why-list{
    margin-top: 8px;
  }
}

/* ===== Real Moves gallery (Gentlevan compatible) ===== */
.gv-gallery .gv-gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Each tile */
.gv-gallery .gv-gallery-item{
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

/* When you switch to real images, this styles them */
.gv-gallery .gv-gallery-item img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Placeholder block (use until images exist) */
.gv-gallery .gv-gallery-ph{
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  background:
    linear-gradient(135deg, rgba(0,130,200,.10), rgba(0,0,0,.03));
}

/* Caption */
.gv-gallery .gv-gallery-item figcaption{
  padding: 12px 14px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(0,0,0,.75);
}

/* Subtle hover (optional) */
.gv-gallery .gv-gallery-item:hover{
  transform: translateY(-1px);
  transition: transform .12s ease;
}

/* Responsive */
@media (max-width: 1100px){
  .gv-gallery .gv-gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px){
  .gv-gallery .gv-gallery-grid{
    grid-template-columns: 1fr;
  }
  .gv-gallery .gv-gallery-item img,
  .gv-gallery .gv-gallery-ph{
    height: 200px;
  }
}

/* ===== European Removals section ===== */
.gv-europe{
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f7fbff 100%
  );
}

.gv-europe-inner{
  max-width: 1000px;
}

.gv-europe-text h2{
  margin-bottom: 12px;
}

.gv-europe-desc{
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.6;
}

.gv-europe-actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile spacing tweak */
@media (max-width: 600px){
  .gv-europe-actions{
    gap: 10px;
  }
}

/* ===== Advice / Blog section ===== */
.gv-advice .gv-advice-grid{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gv-advice .gv-advice-card{
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.gv-advice .gv-advice-card:hover{
  transform: translateY(-1px);
  transition: transform .12s ease, background .12s ease;
}

.gv-advice .gv-advice-title{
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.25;
  color: rgba(0,0,0,.88);
}

.gv-advice .gv-advice-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,.62);
}

.gv-advice .gv-advice-cta{
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 1000px){
  .gv-advice .gv-advice-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px){
  .gv-advice .gv-advice-grid{
    grid-template-columns: 1fr;
  }
}


/* ===== Final CTA / Contact section ===== */
.gv-contact{
  background: linear-gradient(
    to bottom,
    #f7fbff 0%,
    #ffffff 100%
  );
}

.gv-contact-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.gv-contact-text h2{
  margin-bottom: 6px;
}

.gv-contact-desc{
  margin: 0;
  max-width: 56ch;
}

.gv-contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px){
  .gv-contact-inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .gv-contact-actions{
    margin-top: 8px;
  }
}

/* ===== Intro split layout ===== */
.gv-intro__panel--split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: center;
}

/* Keep your existing text styles, just add spacing */
.gv-intro__actions{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Slider ===== */
.gv-slider{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  min-height: 320px;
}

.gv-slides{
  position: relative;
  height: 100%;
}

.gv-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  margin: 0;
}

.gv-slide.is-active{
  opacity: 1;
  position: relative;
}

.gv-slide img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Overlay: text + optional button */
.gv-slide__overlay{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  color: #fff;
}

.gv-slide__text{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
}

.gv-slide__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: rgba(0,130,200,.95);
  color: #fff;
  white-space: nowrap;
}

.gv-slide__btn:hover{
  filter: brightness(1.05);
}

/* Dots */
.gv-slider__dots{
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.gv-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.25);
  cursor: pointer;
  padding: 0;
}

.gv-dot.is-active{
  background: rgba(255,255,255,.95);
}

/* Responsive */
@media (max-width: 950px){
  .gv-intro__panel--split{
    grid-template-columns: 1fr;
  }
  .gv-slider{
    min-height: 260px;
  }
  .gv-slide img{
    height: 260px;
  }
}

/* Slides base */
.gv-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;       /* IMPORTANT */
  pointer-events: none;     /* IMPORTANT */
  transition: opacity .45s ease, visibility .45s ease;
  margin: 0;
}

/* Active slide only */
.gv-slide.is-active{
  opacity: 1;
  visibility: visible;      /* IMPORTANT */
  pointer-events: auto;     /* IMPORTANT */
  position: relative;
}

/* ===== CLEAN MANUAL SLIDER (SINGLE SOURCE OF TRUTH) ===== */

.gv-slider{
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.gv-slides{
  position: relative;
  height: 320px;
}

/* ALL slides hidden by default */
.gv-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease;
  margin: 0;
}

/* ONLY active slide visible */
.gv-slide.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gv-slide img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Overlay */
.gv-slide__overlay{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.45);
  color: #fff;
}

.gv-slide__text{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
}

.gv-slide__btn{
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0,130,200,.95);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

/* Dots */
.gv-slider__dots{
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.gv-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.25);
  cursor: pointer;
}

.gv-dot.is-active{
  background: #fff;
}

/* Mobile */
@media (max-width: 950px){
  .gv-slides,
  .gv-slide img{
    height: 260px;
  }
}

/* ===== Mini intro slider (isolated) ===== */
.gv-mini-slider{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.gv-mini-slides{
  position: relative;
  height: 320px;
}

.gv-mini-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  margin: 0;
}

.gv-mini-slide.is-active{
  opacity: 1;
  visibility: visible;
}

.gv-mini-slide img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Caption overlay */
.gv-mini-slide figcaption{
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0,0,0,.45);
  border-radius: 14px;
  color: #fff;
}

.gv-mini-slide figcaption span{
  font-weight: 700;
  font-size: 14px;
}

.gv-mini-slide figcaption a{
  background: #0082c8;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* Arrows */
.gv-mini-prev,
.gv-mini-next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.gv-mini-prev{ left: 10px; }
.gv-mini-next{ right: 10px; }

/* Dots */
.gv-mini-dots{
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}

.gv-mini-dots button{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.25);
  cursor: pointer;
}

.gv-mini-dots button.is-active{
  background: #fff;
}

/* Responsive */
@media (max-width: 950px){
  .gv-mini-slides,
  .gv-mini-slide img{
    height: 260px;
  }
}



/* ===== Compact homepage buttons (intro section) ===== */
.gv-intro__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Base button */
.gv-intro__actions .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;              /* smaller */
  border-radius: 18px;            /* softer, not pill */
  font-weight: 600;               /* calmer */
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  transition: background-color .15s ease,
              color .15s ease,
              box-shadow .15s ease,
              transform .15s ease;
}

/* Primary – softer blue */
.gv-intro__actions .btn-primary{
  background: rgba(0,130,200,0.12);
  color: #006fa9;
}

.gv-intro__actions .btn-primary:hover{
  background: #0082c8;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
  transform: translateY(-1px);
}

/* Secondary – very subtle outline */
.gv-intro__actions .btn-secondary{
  background: transparent;
  color: #006fa9;
  border: 1px solid rgba(0,130,200,0.35);
}

.gv-intro__actions .btn-secondary:hover{
  background: rgba(0,130,200,0.08);
}



/* Additional accent colours */
.gv-intro__card[data-accent="teal"]{
  --accent: #0f766e;   /* storage / calm / trustworthy */
}

.gv-intro__card[data-accent="red"]{
  --accent: #dc2626;   /* shared load / cost-focused */
}

/* Optional safety fallback if accent is empty */
.gv-intro__card[data-accent=""]{
  --accent: #0082c8;   /* Gentlevan blue */
}

/* ===== European section split layout ===== */
.gv-europe--split{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

/* Image on the right */
.gv-europe-media img{
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Buttons: SAME style as intro actions */
.gv-europe-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gv-europe-actions .btn{
  padding: 9px 18px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  transition: background-color .15s ease,
              color .15s ease,
              transform .15s ease,
              box-shadow .15s ease;
}

/* Primary */
.gv-europe-actions .btn-primary{
  background: rgba(0,130,200,0.12);
  color: #006fa9;
}

.gv-europe-actions .btn-primary:hover{
  background: #0082c8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

/* Secondary */
.gv-europe-actions .btn-secondary{
  background: transparent;
  color: #006fa9;
  border: 1px solid rgba(0,130,200,0.35);
}

.gv-europe-actions .btn-secondary:hover{
  background: rgba(0,130,200,0.08);
}

/* Responsive */
@media (max-width: 900px){
  .gv-europe--split{
    grid-template-columns: 1fr;
  }
  .gv-europe-media{
    order: -1; /* image first on mobile (optional, feels nice) */
  }
}

/* ===== European section spacing ===== */
.gv-europe{
  padding: 64px 0; /* vertical breathing room */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f7fbff 100%
  );
}

/* Split layout */
.gv-europe--split{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* Text block */
.gv-europe-text h2{
  margin-bottom: 14px;
}

.gv-europe-desc{
  max-width: 60ch;
  line-height: 1.65;
}

/* Image container (card-style) */
.gv-europe-media-inner{
  padding: 14px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
}

.gv-europe-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Buttons spacing */
.gv-europe-actions{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 900px){
  .gv-europe{
    padding: 48px 0;
  }

  .gv-europe--split{
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .gv-europe-media{
    order: 2; /* image after text */
  }
}

/* ===== Advice cards with images ===== */
.gv-advice-card{
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
  transition: transform .15s ease, box-shadow .15s ease;
}

.gv-advice-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

/* Image */
.gv-advice-img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* Text spacing */
.gv-advice-title{
  margin: 14px 16px 6px;
  font-size: 1rem;
  line-height: 1.3;
  color: #111827;
}

.gv-advice-desc{
  margin: 0 16px 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(0,0,0,.65);
}


/* ===== Contact section buttons – match intro actions ===== */
.gv-contact-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gv-contact-actions .btn{
  padding: 9px 18px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
  transition: background-color .15s ease,
              color .15s ease,
              transform .15s ease,
              box-shadow .15s ease;
}

/* Primary (soft blue, not hero-heavy) */
.gv-contact-actions .btn-primary{
  background: rgba(0,130,200,0.12);
  color: #006fa9;
  border: 1px solid rgba(0,130,200,0.25);
}

.gv-contact-actions .btn-primary:hover{
  background: #0082c8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

/* Secondary (outline style) */
.gv-contact-actions .btn-secondary{
  background: transparent;
  color: #006fa9;
  border: 1px solid rgba(0,130,200,0.35);
}

.gv-contact-actions .btn-secondary:hover{
  background: rgba(0,130,200,0.08);
}

/* Link button – subtle */
.gv-contact-actions .btn-link{
  padding: 9px 10px;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
  text-decoration: underline;
}

.gv-contact-actions .btn-link:hover{
  color: #006fa9;
}


/* Menu's css */

/* ==================================================
   GENTLEVAN NAVBAR – CLEAN & FIXED (NO DUPLICATES)
   ================================================== */

/* ---------- BASE / DESKTOP ---------- */

.gv-navbar{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:9999;
}

.gv-navbar-inner{
  max-width:1200px;
  margin:0 auto;
  padding:8px 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */
.gv-navbar-left img{ display:block; }

/* Center nav */
.gv-navbar-center{ flex:1; margin:0 15px; }

/* Quote button */
.gv-navbar-right{ margin-left:15px; }

/* Main nav */
.gv-nav{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:32px;
}

.gv-nav > li{ position:relative; }

.gv-nav > li > a{
  text-decoration:none;
  padding:8px 4px;
  color:#333;
  font-size:15px;
  font-weight:500;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.gv-nav > li > a:hover{ color:#000; }

/* Desktop dividers */
@media (min-width:993px){
  .gv-nav > li:not(:last-child)::after{
    content:"|";
    margin:0 16px;
    color:#777;
    opacity:.6;
  }
}

/* ---------- DROPDOWNS (DESKTOP) ---------- */

.gv-dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid #e2e2e2;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
  margin-top:6px;
  padding:8px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(5px);
  transition:.15s;
  z-index:1000;
}

.gv-has-dropdown:hover > .gv-dropdown{
  opacity:1;
  visibility:visible;
  transform:none;
}

.gv-dropdown a{
  display:block;
  padding:6px 14px;
  font-size:14px;
  color:#333;
  text-decoration:none;
}

.gv-dropdown a:hover{
  background:#f5f5f5;
  color:#0082c8;
}

/* ---------- MEGA MENU ---------- */

.gv-mega > .gv-dropdown{
  min-width:760px;
  padding:16px 20px;
}

.gv-mega-row{
  display:flex;
  gap:24px;
}

.gv-mega-col{ flex:1; }

.gv-mega-heading{
  font-weight:700;
  color:#0082c8;
  margin-bottom:6px;
}

.gv-mega-links a{
  padding:4px 0;
  display:block;
}

/* ---------- HAMBURGER ---------- */

.gv-nav-toggle{
  display:none;
  width:34px;
  height:28px;
  background:none;
  border:none;
  cursor:pointer;
}

.gv-nav-toggle span{
  display:block;
  height:2px;
  background:#333;
  margin:4px 0;
}

/* ---------- SUB TOGGLE ---------- */

.gv-sub-toggle{
  display:none;
  background:none;
  border:none;
  width:22px;
  height:22px;
  cursor:pointer;
  position:relative;
}

.gv-sub-toggle::before,
.gv-sub-toggle::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:12px;
  height:2px;
  background:#555;
}

.gv-sub-toggle::before{ transform:translate(-50%,-50%) rotate(90deg); }
.gv-sub-toggle::after{ transform:translate(-50%,-50%); }

.gv-has-dropdown.gvm-open .gv-sub-toggle::before{
  transform:translate(-50%,-50%);
}

/* ---------- BUTTON ---------- */

.gv-navbar-right .button{
  background:#0082c8;
  color:#fff;
  padding:8px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.gv-navbar-right .button:hover{ background:#006ba3; }

/* ==================================================
   MOBILE / TABLET
   ================================================== */

@media (max-width:992px){

  .gv-navbar-inner{
    flex-wrap:wrap;
    row-gap:8px;
  }

  .gv-navbar-left{ order:1; }
  .gv-navbar-right{
    order:2;
    flex:1;
    display:flex;
    justify-content:center;
    margin:0;
  }

  .gv-nav-toggle{
    display:block;
    order:3;
  }

  /* FIXED MOBILE PANEL */
  .gv-navbar-center{
    order:4;
    position:fixed;
    left:0;
    right:0;
    top:var(--gv-header-h,110px);
    background:#fff;
    max-height:calc(100vh - var(--gv-header-h,110px));
    overflow:auto;
    border-top:1px solid #eee;
    opacity:0;
    pointer-events:none;
    transform:translateY(-6px);
    transition:.15s;
    z-index:99999;
  }

  .gv-navbar-center.gvm-open{
    opacity:1;
    pointer-events:auto;
    transform:none;
  }

  .gv-nav{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    gap:0;
    padding:8px 0;
  }

  .gv-nav > li{
    width:100%;
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #f2f2f2;
  }

  .gv-nav > li > a{
    padding:12px;
    width:100%;
  }

  /* Mobile dropdowns */
  .gv-dropdown{
    position:static;
    border:none;
    box-shadow:none;
    padding:6px 0 10px 14px;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .gv-has-dropdown.gvm-open > .gv-dropdown{ display:block; }

  .gv-sub-toggle{ display:inline-block; }

  .gv-mega-row{ display:block; }
  .gv-mega-col{ margin-bottom:10px; }
}

/* =========================
   RESTORE: Old Quote Button
   ========================= */
.gv-navbar-right .button{
  display:inline-block;
  padding:10px 26px;            /* old bigger pill */
  background:#0082C8;
  color:#fff !important;
  border-radius:999px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  letter-spacing:0.02em;
  white-space:nowrap;
  transition: background .2s ease, transform .15s ease;
}

.gv-navbar-right .button:hover{
  background:#006ba3;
  transform: translateY(-1px);
}

/* Tablet / phones sizing like before */
@media (max-width:1024px){
  .gv-navbar-right .button{ padding:8px 20px; font-size:15px; }
}
@media (max-width:600px){
  .gv-navbar-right .button{ padding:6px 16px; font-size:14px; }
}


/* =======================================
   RESTORE: Striped dropdown/mega menu rows
   (Desktop only, as you had before)
   ======================================= */
@media (min-width: 993px){

  /* Normal dropdown ULs: stripe <li> backgrounds */
  .gv-dropdown li:nth-child(odd) a{
    background:#f9fbfd;
  }
  .gv-dropdown li:nth-child(even) a{
    background:#f3f6fb;
  }

  /* Mega menu: stripe the links inside each column */
  .gv-mega-links a:nth-child(odd){
    background:#f9fbfd;
    padding:4px 6px;
    border-radius:3px;
  }
  .gv-mega-links a:nth-child(even){
    background:#f3f6fb;
    padding:4px 6px;
    border-radius:3px;
  }

  /* Keep hover punchy */
  .gv-dropdown a:hover,
  .gv-mega-links a:hover{
    background:#e4f1fb;
    color:#0082c8;
  }
}




/* ===== FORCE header CTA to fit on very small screens ===== */
@media (max-width: 420px) {

  /* Target ONLY the Get a Quote button in header */
  .gv-navbar .btn-primary,
  .gv-header .btn-primary {
    font-size: 11px !important;
    padding: 2px 4px !important;
    line-height: 1.1 !important;
    min-height: unset !important;
    max-width: 80px !important;
    white-space: nowrap !important;
  }

  /* Prevent header row from wrapping */
  .gv-navbar-inner,
  .gv-header-inner {
    flex-wrap: nowrap !important;
  }

}

      
      /* ===== HARD mobile overflow fix (iPhone 390px) ===== */
*, *::before, *::after { box-sizing: border-box; }

html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
.page { width: 100%; max-width: 100%; overflow-x: hidden; }

/* Anything that uses 100vw often creates overflow when scrollbars/padding exist */
@media (max-width: 420px) {

  /* Kill common width offenders */
  [style*="width:100vw"], [style*="width: 100vw"] { width: 100% !important; }

  /* Media must never exceed container */
  img, video, iframe, svg { max-width: 100% !important; height: auto !important; display: block; }

  /* Long strings (URLs, phone numbers, etc.) */
  p, li, a, h1, h2, h3, h4, span, strong, em {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Buttons and small UI: prevent “min-width” pushing layout */
  .btn, button, input, select, textarea {
    max-width: 100%;
    min-width: 0 !important;
  }

  /* Your common split layouts should stack */
  .gv-intro__panel--split,
  .gv-europe--split,
  .gv-why-grid { display: block !important; }

  /* Force all your grids to single column */
  .gv-services-grid,
  .gv-gallery-grid,
  .gv-advice-grid,
  .gv-intro__cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  /* Mini slider: these often overflow because of track width/positioning */
  .gv-mini-slider,
  .gv-mini-slides,
  .gv-mini-slide,
  .gv-mini-slide img {
    max-width: 100% !important;
  }
  .gv-mini-slides { overflow: hidden !important; }
  .gv-mini-slide { width: 100% !important; }

  /* Wrappers padding */
  .wrap, .pwidth { padding-left: 12px !important; padding-right: 12px !important; }

  /* Tables: scroll instead of overflow */
  table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}












