
:root{
  --wrap: 1100px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(10, 20, 40, .10);
  --ink: #0b2b4a;
  --muted: #3d5870;
  --brand: #1E96C8;
  --brand2: #37AEE2;
  --card: #ffffff;
  --bg: #f3f6fb;

  --banner-h: 112px;
  --nav-h: 62px;
}

@media (max-width: 800px){
  :root{
    --banner-h: 78px;
    --nav-h: 56px;
  }
}

html, body { height: 100%; }
body{
  background: var(--bg) !important;
  color: var(--ink) !important;
  text-align: left; /* override old centered body */
  padding-top: calc(var(--banner-h) + var(--nav-h));
  padding-bottom: var(--banner-h);
}

/* ---- Fixed banners ---- */
.fixed-banner{
  position: fixed;
  left: 0; right: 0;
  height: var(--banner-h);
  z-index: 999;
  pointer-events: none;
}
.fixed-banner--top{ top: 0; }
.fixed-banner--bottom{ bottom: 0; }

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

/* ---- Header / nav ---- */
.site-header{
  position: sticky;
  top: var(--banner-h);
  z-index: 998;
}

.site-nav{
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10,20,40,.08);
}

.nav-inner{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 16px;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mini{
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--ink) !important;
  text-decoration: none !important;
  white-space: nowrap;
}

/* Keep your existing menu markup but modernise the look */
.cssmenu ul{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.cssmenu li{ margin: 0; padding: 0; }
.cssmenu a{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  color: var(--ink) !important;
  border: 1px solid transparent;
}

.cssmenu a:hover{
  background: rgba(30,150,200,.08);
  border-color: rgba(30,150,200,.22);
  text-decoration: none !important;
}

.cssmenu .nav-cta{
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color: #fff !important;
  border: 0;
}

/* Mobile: let it wrap nicely */
@media (max-width: 800px){
  .nav-inner{ align-items: flex-start; }
  .cssmenu ul{ gap: 8px; }
  .cssmenu a{ padding: 9px 10px; }
}

/* ---- Hero ---- */
.hero{
  position: relative;
  min-height: 54vh;
  display: grid;
  align-items: end;
  margin: 0;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6,18,30,.50), rgba(6,18,30,.70)),
    url("https://www.shropshirejetwash.co.uk/gifs/Driveway-After.jpg");
  background-size: cover;
  background-position: center;
}

.hero-inner{
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 44px 16px 28px;
  color: #fff;
  text-align: left;
}

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  color: #fff !important;
  text-align: left;
}

.hero-lead{
  margin: 0 0 18px;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.92) !important;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 14px;
}

.hero-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.badge{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}


/* ===========================
   Callout strip (under hero)
   =========================== */

.callouts{
  position: relative;
  z-index: 1;
  margin-top: -18px; /* gently overlaps hero for a premium look */
  padding: 0 16px;
}

.callouts-inner{
  max-width: var(--wrap);
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(10,20,40,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  align-items: stretch;
}

.callout{
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(243,246,251,.70);
  border: 1px solid rgba(10,20,40,.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.callout-title{
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .2px;
}

.callout-text{
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
  font-size: 14px;
}

/* CTA block inside the strip */
.callout-cta{
  background: rgba(255,255,255,.60);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.callout-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color: #fff !important;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(10,20,40,.14);
}

.callout-link{
  font-weight: 900;
  color: var(--ink) !important;
  text-decoration: none !important;
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.75);
}

/* Responsive */
@media (max-width: 950px){
  .callouts-inner{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 520px){
  .callouts{
    margin-top: -12px;
  }
  .callouts-inner{
    grid-template-columns: 1fr;
  }
  .callout-cta{
    flex-direction: column;
  }
  .callout-btn,
  .callout-link{
    width: 100%;
  }
}


/* ---- Wrap + cards ---- */
.wrap{
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px 16px 60px;
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 16px 0;
}

.intro h2,
.cta h2{
  margin: 0 0 8px;
  color: var(--ink) !important;
  text-align: left;
  font-size: 24px;
}

.intro p,
.cta p{
  margin: 8px 0;
  color: var(--muted) !important;
  font-size: 17px;
  line-height: 1.65;
  text-align: left;
}

/* ---- Service grid ---- */
.grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
}
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
}

.service-card{
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none !important;
  border: 1px solid rgba(10,20,40,.06);
}

.service-media img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.service-body{
  padding: 16px;
}

.service-body h3{
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
}

.service-body p{
  margin: 0 0 10px;
  color: var(--muted) !important;
  font-size: 16px;
  line-height: 1.55;
}

.service-link{
  font-weight: 800;
  color: var(--brand);
}


/* ===========================
   Reviews
   =========================== */

.reviews.wrap{
  padding-top: 0;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0 30px;
}

@media (max-width: 1000px){
  .reviews-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 650px){
  .reviews-grid{ grid-template-columns: 1fr; }
}

.review{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,20,40,.06);
  padding: 18px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

/* subtle quote mark */
.review::before{
  content: "“";
  position: absolute;
  top: -18px;
  left: 12px;
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
  color: rgba(30,150,200,.16);
  pointer-events: none;
}

.review blockquote{
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* footer name */
.review figcaption{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(10,20,40,.08);
  font-weight: 900;
  color: var(--ink);
}

.review figcaption span{
  display: block;
  font-weight: 700;
  color: rgba(11,43,74,.70);
  margin-top: 3px;
}

/* featured card */
.review--featured{
  border-color: rgba(30,150,200,.22);
  box-shadow: 0 14px 34px rgba(10,20,40,.14);
  background: linear-gradient(180deg, rgba(55,174,226,.10), rgba(255,255,255,1) 60%);
}

/* little lift on hover */
@media (hover:hover){
  .review{
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .review:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(10,20,40,.16);
  }
}


/* ---- Buttons (fix old <button><a> nesting) ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary{
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  color: #fff !important;
}

.btn-ghost{
  background: rgba(255,255,255,.10);
  color: #fff !important;
  border-color: rgba(255,255,255,.25);
}

.cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cta-icons{
  margin-top: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ===========================
   Enhanced CTA with image strip
   =========================== */

.cta-enhanced{
  position: relative;
  overflow: hidden;
  padding: 0;                 /* remove big white padding */
}

/* Background image strip */
.cta-enhanced .cta-bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(11,43,74,.88) 0%,
      rgba(11,43,74,.78) 40%,
      rgba(11,43,74,.35) 65%,
      rgba(11,43,74,.10) 100%
    ),
    url("https://www.shropshirejetwash.co.uk/gifs/wall-before2.jpg");
  background-size: cover;
  background-position: right center;
}

/* Content sits on top */
.cta-enhanced .cta-content{
  position: relative;
  padding: 26px 26px;
  max-width: 760px;
}

/* Text contrast */
.cta-enhanced h2{
  color: #fff !important;
  margin-bottom: 8px;
}

.cta-enhanced p{
  color: rgba(255,255,255,.92) !important;
  margin-bottom: 14px;
}

/* Buttons spacing tweak */
.cta-enhanced .cta-actions{
  margin-top: 12px;
}

/* Icons row toned down */
.cta-enhanced .cta-icons{
  margin-top: 14px;
  opacity: .92;
}

/* Ghost button tweak on dark background */
.cta-enhanced .btn-ghost{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  color: #fff !important;
}

/* Mobile tuning */
@media (max-width: 700px){
  .cta-enhanced .cta-bg{
    background-position: center;
  }

  .cta-enhanced .cta-content{
    padding: 22px 18px;
  }
}


/* ---- Footer ---- */
.site-footer{
  margin-bottom: 24px;
}

.footer-line{
  margin: 0 0 12px;
  text-align: left;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  align-items: start;
}

@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr; }
}

.footer-small{
  margin: 0 0 8px;
  color: var(--muted) !important;
  line-height: 1.6;
}

.footer-phone a{
  font-weight: 900;
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* ---- Neutralise some legacy widths that fight responsiveness ---- */
.maincontent,
.textblockinner2,
.textblockinner,
.footer{
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

/* Hide the old duplicate bottom banner if it still exists in other pages */
img.toplogo{ max-width: 1299px; }


/* ===========================
   2026.css override
   Banners should NOT be fixed — just present at top & bottom
   =========================== */

/* Undo the padding that was compensating for fixed banners */
body{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* If your HTML uses .fixed-banner wrappers, turn them into normal blocks */
.fixed-banner{
  position: static !important;     /* was fixed */
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  height: auto !important;
  z-index: auto !important;
  pointer-events: auto !important;
  display: block;
  width: 100%;
  margin: 0;
}

/* Make the banner image responsive */
.fixed-banner img{
  display: block;
  width: 100%;
  height: auto !important;         /* was forced to banner height */
  object-fit: initial !important;  /* was cover */
  max-width: 1299px;               /* keep your original max if desired */
  margin: 0 auto;                  /* centers the image if max-width applies */
}

/* If you kept a sticky header, it should now stick to the top of the viewport */
.site-header{
  position: sticky;
  top: 0 !important;               /* was top: var(--banner-h) */
  z-index: 100;
}

/* Optional: small visual separation below top banner */
.fixed-banner--top{
  border-bottom: 1px solid rgba(10,20,40,.08);
}

/* Optional: small visual separation above bottom banner */
.fixed-banner--bottom{
  border-top: 1px solid rgba(10,20,40,.08);
}

/* If any older pages still use the original topbarlogo wrapper, make it behave nicely too */
.topbarlogo,
.topbarlogosleeve{
  width: 100%;
  margin: 0;
  padding: 0;
}
.topbarlogosleeve img.toplogo{
  display: block;
  width: 100%;
  height: auto;
  max-width: 1299px;
  margin: 0 auto;
}

/* ===========================
   2026.css — Nav bullets off + subtle pill style
   Works with your existing #cssmenu <ul><li><a>...</a>
   =========================== */

/* Remove bullets + tidy list spacing */
#cssmenu ul,
#cssmenu li{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Lay items out nicely */
#cssmenu ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Subtle pill look in normal (loaded) state */
#cssmenu li a{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none !important;

  /* pill effect */
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(10,20,40,.10);
  box-shadow: 0 6px 18px rgba(10,20,40,.06);

  /* typography */
  color: #0b2b4a !important;
  font-weight: 800;
  letter-spacing: .2px;

  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

/* Hover/keyboard focus: slightly stronger */
#cssmenu li a:hover,
#cssmenu li a:focus{
  background: rgba(255,255,255,.92);
  border-color: rgba(30,150,200,.25);
  box-shadow: 0 10px 24px rgba(10,20,40,.10);
  transform: translateY(-1px);
  outline: none;
}

/* "Active" item - your HTML uses class='active' on every li right now.
   So this will apply to all unless you change markup (recommended below). */
#cssmenu li.active > a{
  background: rgba(30,150,200,.10);
  border-color: rgba(30,150,200,.28);
}

/* Mobile tweaks */
@media (max-width: 800px){
  #cssmenu ul{ gap: 8px; }
  #cssmenu li a{ padding: 9px 12px; }
}

/* ===========================
   2026.css — remove duplicate site name above nav
   =========================== */

.brand-mini{
  display: none !important;
}

/* ===========================
   2026.css — strengthen site name in nav
   =========================== */

/* Target the first menu item if it's the site name */
#cssmenu ul li:first-child a{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: none;

  /* Stronger pill */
  background: linear-gradient(
    135deg,
    rgba(30,150,200,.18),
    rgba(55,174,226,.22)
  );
  border: 1px solid rgba(30,150,200,.35);
  box-shadow: 0 10px 26px rgba(10,20,40,.14);

  color: #00325a !important;
}

/* Hover keeps authority but not shouty */
#cssmenu ul li:first-child a:hover{
  background: linear-gradient(
    135deg,
    rgba(30,150,200,.28),
    rgba(55,174,226,.32)
  );
  box-shadow: 0 14px 30px rgba(10,20,40,.18);
}

/* Mobile: slightly reduce size */
@media (max-width: 800px){
  #cssmenu ul li:first-child a{
    font-size: 16px;
  }
}

/* ===========================
   2026.css — remove site name from top nav completely
   =========================== */

/* Hide any brand / site-name element in the nav */
.brand-mini,
.site-header .brand,
.site-header .brand-mini{
  display: none !important;
}

/* Ensure nav stays centred and tidy without the brand */
.site-nav .nav-inner{
  justify-content: center;
}

/* Slightly tighten spacing now the brand is gone */
#cssmenu ul{
  justify-content: center;
}

/* =========================================
   2026.css — REMOVE site name above nav pills
   ========================================= */

/* Hide any text elements inside the nav that are NOT the menu */
.site-header h1,
.site-header h2,
.site-header p,
.site-header .brand,
.site-header .brand-mini,
.site-header .site-title,
.site-header .logo-text{
  display: none !important;
}

/* Older structure support */
.navblock h1,
.navblock h2,
.navblock p{
  display: none !important;
}

/* Ensure menu itself remains visible */
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a{
  display: inline-flex;
}
/* ==================================================
   2026.css — DEFINITIVE: remove any stray text above nav pills
   Keep ONLY the menu (#cssmenu) visible inside the nav bar
   ================================================== */

/* Kill any pseudo-element text in the header/nav area */
.site-header::before, .site-header::after,
.site-nav::before, .site-nav::after,
.nav-inner::before, .nav-inner::after,
#cssmenu::before, #cssmenu::after{
  content: none !important;
  display: none !important;
}

/* In the nav bar, hide EVERYTHING inside nav-inner except the menu */
.site-nav .nav-inner > :not(#cssmenu){
  display: none !important;
}

/* (Backup) If your template uses .navbar instead of .nav-inner anywhere */
.navbar > :not(#cssmenu){
  display: none !important;
}

/* Ensure the menu is definitely visible and laid out */
#cssmenu{
  display: block !important;
}
#cssmenu ul{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
#cssmenu li{ list-style: none !important; }
