/* ===========================
   GLOBAL
=========================== */

html {
  font-size: 16px; /* Explicit base font size */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* Explicit body font size */
  color: #000;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Reusable container */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   NAVBAR — FINAL VERSION
=========================== */

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 114, 174, 0.94); /* slight opacity */
  backdrop-filter: blur(6px);
  z-index: 9999;
  padding: 12px 0;
  transition: background-color 0.3s ease,
              box-shadow 0.3s ease,
              backdrop-filter 0.3s ease;
}

/* Stronger blur + shadow when scrolling */
.navbar.scrolled {
  background-color: rgba(13, 114, 174, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT SIDE LOGO AREA */
.nav-left h1 {
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
  color: #fff;
}

.nav-subline {
  margin: 2px 0 0 0;
  font-size: 0.9rem;
  color: #e5f5ff;
  opacity: 0.9;
  letter-spacing: 0.2px;
}

.nav-subline a {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
}

.nav-subline a:hover {
  opacity: 1;
}

/* RIGHT SIDE */
.nav-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width:50%;
  /* LETS COVER THE LEFT BOTTEM AREA TOO */
  border-bottom-left-radius: 15px;
}

.phone-number {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 0 10px;
  color: #fff;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-right a {
    pointer-events: auto !important;
    position: relative;
    z-index: 9999;
}

.shine,
.shine-title,
.coverage-image::before,
.premium-image::before {
    pointer-events: none !important;
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
}

.bar {
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
  transform-origin: center;
}

/* Hamburger → X animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2);
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   MOBILE NAV
=========================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 10000;
  }

  .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(13, 114, 174, 0.97);
    text-align: center;
    padding: 15px 0 20px;
    flex-direction: column;
  }
  
  .nav-right.active {
    width: 50%;
    display: flex;
    border-bottom-left-radius: 15px;
  }

  .phone-number {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .nav-links {
    flex-direction: column;
    gap: 14px;
  }

  .nav-left {
    text-align: left;
  }

  .nav-subline {
    font-size: 0.82rem;
  }
}

/* ===========================
   HERO (HOME)
=========================== */

.hero {
  background-color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0;
}

.hero-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-text .highlight {
  color: #0d72ae;
}

.hero-text h2 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-blue {
  background-color: #0d72ae;
  color: white;
}

.btn-blue:hover {
  background-color: #095a8b;
}

.btn-green {
  background-color: #00973f;
  color: #fff;
}

.btn-green:hover {
  background-color: #6bc249;
}

.hero-buttons a {
    pointer-events: auto !important;
    position: relative;
    z-index: 20;
}

/* Hero Image */
.hero-image {
  flex: 1;
  text-align: right;
  min-width: 280px;
}

.hero-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* HERO LOGO — Float + Shine */

.logo-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  animation: heroFloat 6s ease-in-out infinite;
}

.shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.7) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shineSweep 4s linear infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0%   { left: -150%; }
  100% { left: 150%; }
}

@keyframes heroFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.hero-image img {
    pointer-events: none;
}

/* HERO DIVIDER */
.hero-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, #0d72ae, transparent);
  margin-top: 40px;
}

/* TRUSTED UK EXPERTS SECTION — FIXED & RESPONSIVE */
.trusted-experts {
  background-color: #fff;
  padding: 100px 0;
}

.trusted-experts .container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex row – exact original layout */
.experts-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap;
}

/* LEFT SIDE TEXT */

/* FORCE TITLE TO STAY ON ONE LINE ON DESKTOP */
.experts-text h2 {
  white-space: nowrap; /* prevents line break */
}

/* Allow wrapping on smaller screens */
@media (max-width: 900px) {
  .experts-text h2 {
    white-space: normal; /* wrap allowed again */
  }
}

.experts-text {
  flex: 1;
  min-width: 330px;
}

.experts-text h2 {
  font-size: 1.45rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 45px;
  line-height: 1.4;
}

.experts-text .highlight {
  color: #0d72ae;
}

/* GRID OF ICONS */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 50px;
}

.expert-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.expert-item img {
  width: 34px;
  height: 34px;
}

.expert-item p {
  margin: 0;
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
}

/* RIGHT SIDE IMAGE */
.experts-image {
  flex: 1;
  min-width: 350px;
  display: flex;
  justify-content: flex-end;
}

.experts-image img {
  width: 85%;
  max-width: 520px;
  border-radius: 10px;
  object-fit: cover;

  /* REMOVE WHITE BORDER */
  background: none;
  padding: 0;

  /* MOVE SLIGHTLY DOWN */
  margin-top: 40px;
}

/* RESPONSIVE — TABLET + MOBILE */
@media (max-width: 900px) {
  .experts-content {
    flex-direction: column;
    text-align: center;
  }

  .experts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .expert-item {
    justify-content: center;
    text-align: left;
  }

  .experts-image {
    justify-content: center;
    margin-top: 40px;
  }

  .experts-image img {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .experts-text h2 {
    font-size: 1.3rem;
  }

  .expert-item img {
    width: 28px;
    height: 28px;
  }
}

/* ===========================
   ONE STOP SHOP SECTION
=========================== */

.one-stop-shop {
  width: 100%;
  background: #ffffff;
  padding: 20px 0;      /* nice clean spacing */
  text-align: center;
}

.oss-container {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}

.one-stop-shop h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #000;
  line-height: 1.25;
}

.one-stop-shop h2 span {
  color: #0d72ae;
  font-weight: 800;
}

/* MOBILE */
@media (max-width: 768px) {
  .one-stop-shop {
    padding: 60px 0;
  }

  .one-stop-shop h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .one-stop-shop h2 {
    font-size: 1.7rem;
  }
}

/* ===========================
   VEHICLE TYPES
=========================== */

.vehicle-types {
  background-color: #f1faff;
  padding: 100px 0;
  margin-top: 100px;
  margin-bottom: 90px;
  text-align: center;
}

.vehicle-types .vehicle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vehicle-types h2 {
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.vehicle-types .highlight {
  color: #5bbf4a;
  font-weight: 700;
}

.vehicle-subtitle {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  max-width: 900px;
}

/* animated cars */
.animated-vehicles {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.track {
  display: flex;
  animation: scroll 10s linear infinite;
}

.track img {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  object-fit: contain;
  margin-right: 120px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-1120px); }
}

/* ===========================
   GRADIENT CALL BANNER
=========================== */

.gradient-banner-ultimate {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  background: linear-gradient(90deg, #0b5c8b, #0d72ae, #1390d4);
  padding: 22px 0;
  margin-top: -90px;
  margin-bottom: 80px;
  overflow: hidden;
}

.gbu-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.gbu-inner p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.gbu-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  background-color: #00973f;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
}

.gbu-btn:hover {
  background-color: #6bc249;
}

/* Shine overlay */
.gbu-shine {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: gbuShineSweep 4s linear infinite;
  z-index: 1;
}

@keyframes gbuShineSweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* ============================
   NATIONWIDE COVERAGE SECTION
============================ */

.about-coverage {
  background: #ffffff;
  padding: 30px 0;                      /* same spacing as other sections */
}

.coverage-flex {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;                       /* makes it mobile-friendly */
}

/* LEFT — TEXT SIDE */
.coverage-text {
  flex: 1;
  min-width: 320px;
}

.coverage-text h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.coverage-text .highlight {
  color: #0d72ae;
  font-weight: 700;
}

.coverage-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  max-width: 550px;
}

/* RIGHT — IMAGE SIDE */
.coverage-image {
  flex: 1;
  min-width: 320px;
  text-align: right;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.coverage-image img {
  width: 90%;
  max-width: 380px;
  height: auto;

  /* Remove borders/shadows so it blends with white background */
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* =============================
   SHINE EFFECT (Premium Gloss)
============================= */
.coverage-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: coverageShine 4s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes coverageShine {
  0%   { left: -150%; }
  100% { left: 150%; }
}

/* =============================
   MOBILE STYLING
============================= */

@media (max-width: 900px) {
  .coverage-flex {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .coverage-image {
    justify-content: center;
    text-align: center;
  }

  .coverage-image img {
    max-width: 320px;
  }

  .coverage-text h2 {
    font-size: 1.35rem;
  }

  .coverage-text p {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .coverage-image img {
    max-width: 260px;
  }

  .coverage-text h2 {
    font-size: 1.25rem;
  }

  .coverage-text p {
    font-size: 0.95rem;
  }
}

/* ===========================
   HOW IT WORKS
=========================== */

.how-it-works {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
}

.how-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  flex-wrap: nowrap;
  text-align: center;
}

.step {
  flex: 0 0 260px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(1) {
  transition-delay: 0.3s;
}
.step:nth-child(2) {
  transition-delay: 0.8s;
}
.step:nth-child(3) {
  transition-delay: 1.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0d72ae;
  margin-bottom: 15px;
}

.step p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 300px;
}

/* ===========================
   IMAGE + TEXT SECTION
=========================== */

.image-text-section {
  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 120px;
}

.image-text-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.image-side {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.image-side img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  background-color: #fff;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.text-side {
  flex: 1;
  min-width: 320px;
}

.text-side h2 {
  font-size: 1.45rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 25px;
}

.text-side .highlight {
  color: #5bbf4a;
  font-weight: 700;
}

.text-side p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.text-side .btn {
  margin-top: 25px;
}

.red-text {
  color: #e63946;
}

/* ===========================
   BLUE BANNER (simple)
=========================== */

.blue-banner {
  width: 100%;
  background-color: #0d72ae;
  padding: 25px 15px;
  text-align: center;
  margin: 0 0 75px; /* top 0, bottom 35px */
}

.blue-banner p {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 500;
}

/* ===========================
   TECHNICIANS SECTION
=========================== */

.technicians-section {
  background-color: #f1faff;
  padding: 60px 0;
  margin-top: 60px;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.technicians-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.technicians-text {
  flex: 1;
  min-width: 320px;
}

.technicians-text h2 {
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 25px;
}

.technicians-text .highlight {
  color: #0d72ae;
  font-weight: 700;
}

.technicians-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

.technicians-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.technicians-image img {
  width: 83%;
  max-width: 480px;
  border-radius: 10px;
  background-color: #fff;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  object-fit: cover;
}

.uk-blue {
  color: #0d72ae;
  font-weight: 700;
}

.technicians-normal {
  color: #000;
  font-weight: 400;
}

.diagonal-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #0d72ae;
  clip-path: polygon(0 0, 100% 20%, 100% 0, 0 0);
  z-index: 2;
}

.diagonal-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: black;
  transform: skewY(-8deg);
  transform-origin: top left;
}

/* ===========================
   COVERAGE POPUP
=========================== */

.coverage-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(13, 114, 174, 0.92);
  color: #fff;
  padding: 12px 22px 12px 26px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 3px 14px rgba(0,0,0,0.15);
  z-index: 9999;
  opacity: 0;
  transform: translateY(18px);
  animation: popupFadeIn 0.7s ease forwards 0.5s;
  /* Prevent mobile webkit issues */
  -webkit-transform: translateY(18px);
  -webkit-animation: popupFadeIn 0.7s ease forwards 0.5s;
  will-change: transform, opacity;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    -webkit-transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

@-webkit-keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    -webkit-transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
}

.close-popup {
  position: absolute;
  top: -9px;
  left: -9px;
  width: 22px;
  height: 22px;
  background: #e5e5e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: 0.25s ease;
}

.close-popup:hover {
  background: #d6d6d6;
  transform: scale(1.05);
}

/* ===========================
   COOKIE POLICY BANNER
=========================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 90, 132, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px;
  z-index: 10002;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: block;
  visibility: visible;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #115a84;
}

.cookie-link {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.cookie-link:hover {
  opacity: 0.8;
}

/* ===========================
   COOKIE POLICY PAGE
=========================== */

.cookie-policy-section {
  padding: 120px 0 80px;
  background: #f8fbff;
  min-height: calc(100vh - 200px);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.policy-header {
  background: linear-gradient(135deg, #0d72ae, #115a84);
  color: #fff;
  padding: 60px 40px 40px;
  text-align: center;
}

.policy-header h1 {
  font-size: 3rem;
  margin: 0 0 10px;
  font-weight: 700;
}

.policy-subtitle {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.9;
}

.policy-body {
  padding: 40px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  color: #115a84;
  font-size: 1.8rem;
  margin: 0 0 20px;
  font-weight: 700;
  border-bottom: 2px solid #e1f4ff;
  padding-bottom: 10px;
}

.policy-section h3 {
  color: #0d72ae;
  font-size: 1.3rem;
  margin: 25px 0 15px;
  font-weight: 600;
}

.policy-section p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.policy-section ul {
  margin: 15px 0;
  padding-left: 0;
}

.policy-section li {
  background: #f8fbff;
  margin: 8px 0;
  padding: 12px 20px;
  border-left: 4px solid #0d72ae;
  list-style: none;
  border-radius: 4px;
}

.cookie-type {
  background: #f8fbff;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #115a84;
}

.cookie-controls {
  text-align: center;
  margin: 30px 0;
}

.contact-info {
  background: #f8fbff;
  padding: 25px;
  border-radius: 8px;
  margin: 20px 0;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info a {
  color: #0d72ae;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.policy-updated {
  text-align: center;
  font-style: italic;
  color: #666;
  border-top: 1px solid #e1f4ff;
  padding-top: 20px;
  margin-top: 30px;
}

/* Mobile responsiveness for policy page */
@media (max-width: 768px) {
  .policy-header {
    padding: 40px 20px 30px;
  }
  
  .policy-header h1 {
    font-size: 2.2rem;
  }
  
  .policy-subtitle {
    font-size: 1rem;
  }
  
  .policy-body {
    padding: 30px 20px;
  }
  
  .policy-section h2 {
    font-size: 1.5rem;
  }
  
  .contact-info {
    padding: 20px;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-text p {
    font-size: 0.85rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    padding: 12px 24px;
    min-width: 100px;
  }
}

/* ============================================
   CLEAN MODERN FOOTER — UK FLEET GLASS
============================================ */

.ufg-footer {
  background: #115a84;
  padding: 70px 0 60px;
  position: relative;
}

/* Glossy top line */
.ufg-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, transparent, #acd9ff40, transparent);
}

/* Container */
.footer-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   TOP ROW — ICONS + TEXT
============================================ */

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 70px;
}

.footer-item {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.footer-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.footer-text {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin: 3px 0;
  line-height: 1.4;
}

/* ============================================
   SUSTAINABILITY — KEEP LEFT
============================================ */

.sustainability-row {
  margin-top: 0;
  display: flex;
  justify-content: flex-start;   /* LEFT ON DESKTOP */
}

.sustainability-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.sustainability-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-registration {
  font-size: 0.85rem;
  color: #ccc;
  margin: 0;
  white-space: nowrap;
}

.small-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.sustainability-text {
  color: #000;
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   BOTTOM NAVIGATION LINKS + LOGO ON SAME LINE
============================================ */

.footer-bottom {
  width: 100%;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 18px;

  display: flex;
  justify-content: space-between;  /* LEFT NAV, RIGHT LOGO */
  align-items: center;             /* PERFECT vertical baseline */
}

.footer-nav-links {
  display: flex;
  gap: 22px;
}

.footer-nav-links a {
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.85;
  transition: 0.3s;
}

.footer-nav-links a:hover {
  opacity: 1;
}

/* Logo */
.footer-logo {
  width: 120px;
  height: auto;
  opacity: 0.9;
  object-fit: contain;
  transition: 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

/* ============================================
      MOBILE — STACK EVERYTHING CLEANLY
============================================ */

@media (max-width: 900px) {
  .footer-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
    align-items: center;
  }

  .footer-item {
    text-align: center;
    max-width: 300px;
  }

  /* Sustainability centered on mobile only */
  .sustainability-row {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav-links {
    justify-content: center;
  }

  .footer-logo {
    width: 110px;
  }
}

@media (max-width: 768px) {
  .sustainability-box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .sustainability-main {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .company-registration {
    font-size: 0.8rem;
    color: #ccc;
    white-space: normal;
  }
}

/* ===========================
   SERVICES HERO (fade-hero)
=========================== */

.hero-fixed-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 10px;
}

.hero-fixed-logo img {
  width: 110px;
  height: auto;
  margin-bottom: -120px;
}

.fade-hero {
  width: 100%;
  padding: 80px 0 100px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.fade-hero-inner {
  opacity: 1;
}

.hero-title {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.2s;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Shine wrapper */
.shine-title {
  position: relative;
  display: inline-block;
  overflow: hidden; /* ensures shine only stays on text */
}

/* Shine bar */
.title-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.6) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shineTitleSweep 2s linear infinite;
  pointer-events: none;
}

/* Shine animation */
@keyframes shineTitleSweep {
  0%   { left: -120%; }
  100% { left: 140%; }
}

.hero-subtext {
  opacity: 0;
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.6s;
  font-size: 1.1rem;
  color: #000;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SERVICES INTRO
=========================== */

.services-intro {
  background-color: #ffffff;
  padding: 90px 0;
}

.services-intro-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.services-intro-text {
  flex: 1;
  min-width: 300px;
}

.services-intro-text h2 {
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.services-normal {
  color: #000;
  font-weight: 400;
}

.services-intro-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  max-width: 540px;
}

.services-intro-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.services-intro-image img {
  width: 85%;
  max-width: 480px;
  background: #fff;
}

/* ===========================
   TWO IMAGES + TEXT (services)
=========================== */

.two-image-text {
  background-color: #ffffff;
  padding: 60px 0;
}

.two-image-text-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.two-image-column {
  flex: 1;
  min-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.two-image-item {
  width: 100%;
  max-width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  background-color: #fff;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.two-text-column {
  flex: 1.2;
  min-width: 320px;
}

.two-text-column h2 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.two-text-column p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.two-text-highlight {
  color: #0d72ae !important;
  font-weight: 700;
}

.two-text-column .btn-green {
  margin-top: 25px;
}

@media (max-width: 768px) {
  .image-text-section {
    padding-top: 20px;     /* was 50px */
    padding-bottom: 60px;  /* was 120px */
  }
}

/* ===========================
   DIAGONAL BLUE SECTION
=========================== */

.diagonal-blue-section {
  width: 100%;
  background: #f1faff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  margin: 60px 0;
}

.diagonal-blue-section .diagonal-top {
  height: 80px;
  clip-path: polygon(0 0, 100% 60%, 100% 0);
}

.dbs-inner {
  width: 92%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.dbs-inner h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.dbs-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 680px;
  margin: 0 auto;
}

.green-word {
  color: #00973f;
  font-weight: 700;
}

/* ============================
   ADAS INTRO SPLIT SECTION
============================ */

.adas-intro {
  background: #ffffff;
  padding: 60px 0;
}

.adas-intro-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  flex-wrap: wrap;
}

.adas-red {
  color: #e63946; /* same red used on your homepage */
}

/* LEFT IMAGE */
.adas-intro-image {
  flex: 1;
  min-width: 320px;
}

.adas-intro-image img {
  width: 100%;
  max-width: 520px;
  height: auto;

  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  object-fit: contain;
}

/* RIGHT TEXT */
.adas-intro-text {
  flex: 1;
  min-width: 320px;
}

.adas-intro-text h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.adas-intro-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  max-width: 550px;
  margin-bottom: 20px;
}

.adas-red {
  color: #e63946;     /* same red as your homepage ADAS */
  font-weight: 700;   /* optional: makes it stand out */
}

/* ============================
   MOBILE RESPONSIVE
============================ */

@media (max-width: 900px) {

  .adas-intro-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .adas-intro-image img {
    max-width: 380px;
    margin: 0 auto;
  }

  .adas-intro-text h2 {
    font-size: 1.35rem;
  }

  .adas-intro-text p {
    max-width: 90%;
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 480px) {
  .adas-intro-image img {
    max-width: 300px;
  }

  .adas-intro-text h2 {
    font-size: 1.25rem;
  }

  .adas-intro-text p {
    font-size: 0.95rem;
  }
}

.adas-title {
  color: #000;
  text-align: center;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin: 20px 0;
  margin-bottom: 50px;
}

.adas-title {
  font-size: 36px;
}


/* =====================================================
      PREMIUM ADAS FLOATING IMAGE
===================================================== */

.premium-image-section {
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-image {
  width: 420px;
  max-width: 100%;
  height: auto;

  animation: float 4s ease-in-out infinite,
             pulse 6s ease-in-out infinite;

  filter: drop-shadow(0 15px 32px rgba(13, 114, 174, 0.24));
  transition: transform 0.4s ease, filter 0.4s ease;

  position: relative;
}

.premium-image:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 22px 50px rgba(13, 114, 174, 0.32));
}

/* Remove borders/background */
.premium-image img {
  width: 100%;
  height: auto;
  object-fit: contain;

  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Shine */
.premium-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  animation: shineSweep 4s linear infinite;
}

@keyframes shineSweep {
  0%   { left: -150%; }
  100% { left: 160%; }
}

/* Animations */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.015); }
  100% { transform: scale(1); }
}

/* MOBILE */
@media (max-width: 900px) {
  .premium-image {
    width: 350px;
  }
}

@media (max-width: 600px) {
  .premium-image {
    width: 280px;
  }
}

/* Section spacing – consistent with most site sections */
.full-width-image-section {
  padding: 75px 0; /* spacing above and below */
  width: 100%;
}

/* Image container */
.full-width-image-section .image-wrapper {
  width: 100%;
  overflow: hidden; /* prevents overflow on large screens */
}

/* Responsive image styling */
.full-width-image-section img {
  width: 100%;
  height: auto;
  max-height: 600px;          /* controls height so it's not too big */
  object-fit: cover;          /* ensures full-width crop */
  display: block;
}

/* Mobile optimisation */
@media (max-width: 768px) {
  .full-width-image-section {
    padding: 40px 0;          /* slightly reduced spacing on mobile */
  }

  .full-width-image-section img {
    max-height: 300px;        /* smaller height on mobile */
  }
}

.info-section {
  background-color: #f1faff;
  padding: 60px 0;
  margin-top: 100px;
  margin-bottom: 120px; /* white space BELOW section */
  text-align: center;
}

.info-section .info-container {
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal centering */
  justify-content: center;  /* vertical centering */
  padding: 40px 0;          /* internal height */
}

.info-section h2 {
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.info-section p {
  margin-bottom: 50px; /* space before image */
  line-height: 1.4;
}

.info-section img {
  max-width: 80%;
  height: auto;
}

h3 {
  margin-top: 80px; /* spacing below info-section */
}

/* =====================================================
   ANIMATED TITLE + TEXT CONTENT SECTIONS
===================================================== */

.adas-highlight {
  color: #e53935; /* red */
}

.animated-info-section {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: -100px 0;         /* FIXED spacing */
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* content block */
.info-block {
  max-width: 850px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.info-block h2 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.info-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 750px;
}

/* Alternating animations */
.slide-left {
  transform: translateX(-50px);
}

.slide-right {
  transform: translateX(50px);
}

/* When visible */
.info-block.visible {
  opacity: 1;
  transform: translateX(0);
}

.animated-info-section {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto 100px auto; /* ⬅ 100px AT THE BOTTOM ONLY */
  padding: 0px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* MOBILE */
@media (max-width: 700px) {
  .animated-info-section {
    gap: 60px;
    padding: 80px 0;
  }

  .info-block h2 {
    font-size: 1.35rem;
  }

  .info-block p {
    font-size: 1rem;
  }
}

/* Reduce spacing before footer on ADAS page */
.animated-info-section {
  margin-bottom: 50px !important;
  padding-bottom: 0 !important;
}


/* ===========================
   RESPONSIVE
=========================== */

/* tablet-ish */
@media (max-width: 1100px) {
  .phone-number {
    font-size: 2.2rem;
  }
}

/* up to 900px - major stacking */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .trusted-experts .container {
    flex-direction: column;
    text-align: center;
  }

  .experts-text h2 {
    font-size: 1.4rem;
    white-space: normal;
  }

  .experts-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .expert-item {
    justify-content: center;
    text-align: left;
  }

  .experts-image {
    text-align: center;
    margin-top: 40px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
  }

  .image-text-container {
    flex-direction: column;
    text-align: center;
  }

  .image-side img {
    max-width: 100%;
  }

  .technicians-container {
    flex-direction: column;
    text-align: center;
  }

  .technicians-image {
    justify-content: center;
  }

  .technicians-image img {
    width: 100%;
    max-width: 450px;
    margin-top: 40px;
  }

  .booking-billing-section,
  .services-intro,
  .two-image-text,
  .how-it-works,
  .trusted-experts,
  .vehicle-types,
  .about-coverage,
  .diagonal-blue-section,
  .premium-image-section {
    padding: 80px 0;
  }

  .gbu-inner {
    flex-direction: column;
    text-align: center;
  }

  .gbu-btn {
    width: 100%;
    padding: 12px 0;
    text-align: center;
  }

  .services-intro-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .services-intro-text h2 {
    font-size: 1.6rem;
  }

  .services-intro-text p {
    max-width: 90%;
    margin: 0 auto;
  }

  .services-intro-image {
    justify-content: center;
  }

  .services-intro-image img {
    width: 100%;
    max-width: 400px;
    margin-top: 15px;
  }

  .two-image-text-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .two-image-column {
    width: 100%;
    align-items: center;
  }

  .two-image-item {
    max-width: 320px;
    height: 200px;
  }

  .two-text-column {
    max-width: 640px;
    margin: 0 auto;
  }

  .diagonal-blue-section {
    padding: 100px 0;
  }

  .dbs-inner p {
    max-width: 90%;
  }

  .premium-image-section {
    padding: 120px 0;
  }

  .fade-hero {
    padding: 110px 0;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtext {
    font-size: 1rem;
    max-width: 90%;
  }

  .coverage-flex {
    flex-direction: column;
    text-align: center;
  }

  .coverage-image {
    justify-content: center;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .sustainability-row {
    justify-content: center;
  }

  .sustainability-box {
    justify-content: center;
  }

  .sustainability-text {
    text-align: center;
  }

  .coverage-popup {
    bottom: 20px;
    right: 15px;
    left: 15px;
    width: auto;
    max-width: none;
    white-space: normal;
    font-size: 0.85rem;
    padding: 10px 20px 10px 24px;
    text-align: center;
    position: fixed;
    z-index: 10000;
    /* Remove animation on mobile to prevent glitches */
    animation: none;
    opacity: 1;
    transform: none;
    -webkit-transform: none;
    will-change: auto;
  }

  .close-popup {
    top: -8px;
    right: -8px;
    left: auto;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

/* phones */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-right {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #0d72ae;
    width: 100%;
    text-align: center;
    display: none;
    flex-direction: column;
    padding: 15px 0;
  }

  .nav-right.active {
    display: flex;
  }

  .phone-number {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* small phones */
@media (max-width: 500px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .bb-icons img {
    width: 180px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtext {
    font-size: 0.95rem;
  }

  .premium-image {
    width: 280px;
  }

  .two-image-item {
    max-width: 260px;
    height: 170px;
  }

  .expert-item img {
    width: 28px;
    height: 28px;
  }

  .experts-text h2 {
    font-size: 1.2rem;
  }
}

.mobile-menu-item{
  padding: 10px 0;
  margin: 5px 20px;
  text-align: left;
  font-size: 1.5rem!important;
  
}
/* ===========================================
   FINAL CONTENT → FOOTER GAP (50px ONLY)
   Does NOT affect navbar or any other spacing
=========================================== */

.page-content-end {
  margin-bottom: 60px !important;
}

/* ===========================================
   MOBILE ANIMATIONS OPTIMIZED
   Keep performance-friendly animations, disable resource-intensive shine effects
=========================================== */

@media (max-width: 768px) {
  /* FINAL: Optimal mobile animations without shine effects */
  *,
  *::before,
  *::after {
    /* Keep basic transitions for hover effects */
    transition-duration: 0.3s;
    transition-delay: 0s;
    
    /* Still disable most complex animations */
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Keep fade-in animations for page content */
  .hero-title,
  .hero-subtext,
  .step,
  .info-block {
    animation-duration: 1.2s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* COVERAGE POPUP - SEPARATE RULES (decoupled from other animations) */
  .coverage-popup {
    /* Override the global animation disable specifically for coverage popup */
    animation-duration: 0.7s !important;
    animation-delay: 0.5s !important;
    animation-iteration-count: 1 !important;
    /* Ensure it starts hidden and animates in */
    opacity: 0;
    transform: translateY(18px);
    -webkit-transform: translateY(18px);
    /* Force the animation to work */
    animation-name: popupFadeIn !important;
    animation-fill-mode: forwards !important;
    /* Prevent any interference from coverage animations */
    z-index: 9999 !important;
    position: fixed !important;
  }
  
  /* Keep hero image floating */
  .hero-image img,
  .logo-wrap img {
    animation-duration: 6s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Keep premium image floating and pulse */
  .premium-image {
    animation-duration: 4s, 6s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Keep vehicle carousel scrolling */
  .track {
    animation-duration: 10s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Add back gradient banner animation (stable) */
  .gbu-shine,
  .gradient-banner-ultimate::before {
    animation-duration: 3s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Add back button hover transitions (stable) */
  .btn {
    transition-duration: 0.3s !important;
    transition-delay: 0s !important;
    transform: inherit;
  }
  
  /* RE-ENABLE shine effects - testing with optimized animations */
  .shine {
    animation-duration: 3s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
    display: block !important;
  }
  
  /* DISABLE 3 effects to test which causes issues */
  .title-shine {
    animation-duration: 2s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
    display: block !important;
  }
  
  /* PERMANENTLY DISABLE coverage shine - causes popup flickering conflict */
  .coverage-image::before {
    animation: none !important;
    -webkit-animation: none !important;
    display: none !important;
  }
  
  .premium-image::before {
    animation-duration: 3s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
    display: block !important;
  }
  
  /* Add back map flash animation (stable) */
  .coverage-map-flash {
    animation-duration: 2s !important;
    animation-delay: 1s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back technician image animation (stable) */
  .technicians-image img {
    animation-duration: 1.5s !important;
    animation-delay: 0.5s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back navbar animations (stable) */
  .nav-links a {
    transition-duration: 0.3s !important;
    transition-delay: 0s !important;
  }
  
  .menu-toggle .bar {
    transition-duration: 0.3s !important;
    transition-delay: 0s !important;
  }
  
  /* Add back expert grid animations (stable) */
  .expert-item {
    animation-duration: 1s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back trusted experts image animation (stable) */
  .trusted-experts-image img {
    animation-duration: 1.2s !important;
    animation-delay: 0.3s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back one-stop-shop text animation (stable) */
  .oss-container h2 {
    animation-duration: 1.5s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back image-text section animations (stable) */
  .image-side img,
  .text-side {
    animation-duration: 1.2s !important;
    animation-delay: 0.4s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back footer animations (stable) */
  .footer-item {
    animation-duration: 1s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  .sustainability-box {
    animation-duration: 1.2s !important;
    animation-delay: 0.8s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back blue banner animation (stable) */
  .blue-banner {
    animation-duration: 1s !important;
    animation-delay: 0.3s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back diagonal animations (stable) */
  .diagonal-top {
    animation-duration: 1s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back coverage section animations (stable) */
  .coverage-text,
  .coverage-image {
    animation-duration: 1.2s !important;
    animation-delay: 0.3s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back vehicle section animations (stable) */
  .vehicle-container h2,
  .vehicle-subtitle {
    animation-duration: 1s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back cookie banner animations (stable) */
  .cookie-banner {
    animation-duration: 0.8s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1 !important;
  }
  
  .cookie-content {
    animation-duration: 0.5s !important;
    animation-delay: 0.3s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back general form and input transitions */
  input,
  select,
  textarea {
    transition-duration: 0.3s !important;
    transition-delay: 0s !important;
  }
  
  /* Add back hero section animations (stable) */
  .hero-text h1,
  .hero-text h2,
  .hero-text p {
    animation-duration: 1.2s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  .hero-buttons .btn {
    animation-duration: 1s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back divider animations */
  .hero-divider {
    animation-duration: 1s !important;
    animation-delay: 0.5s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back scroll-triggered animations */
  .about-coverage,
  .how-it-works,
  .technicians-section {
    animation-duration: 1.2s !important;
    animation-delay: 0.1s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back staggered expert animations with individual delays */
  .expert-item:nth-child(1) {
    animation-delay: 0.1s !important;
  }
  .expert-item:nth-child(2) {
    animation-delay: 0.2s !important;
  }
  .expert-item:nth-child(3) {
    animation-delay: 0.3s !important;
  }
  .expert-item:nth-child(4) {
    animation-delay: 0.4s !important;
  }
  .expert-item:nth-child(5) {
    animation-delay: 0.5s !important;
  }
  .expert-item:nth-child(6) {
    animation-delay: 0.6s !important;
  }
  
  /* Add back step animations with staggered timing */
  .step:nth-child(1) {
    animation-delay: 0.2s !important;
  }
  .step:nth-child(2) {
    animation-delay: 0.4s !important;
  }
  .step:nth-child(3) {
    animation-delay: 0.6s !important;
  }
  
  /* Add back hover transform effects */
  .expert-item:hover,
  .footer-item:hover,
  .step:hover {
    transform: translateY(-2px) !important;
    transition-duration: 0.3s !important;
  }
  
  /* Add back image hover effects */
  .experts-image img:hover,
  .technicians-image img:hover,
  .image-side img:hover {
    transform: scale(1.02) !important;
    transition-duration: 0.4s !important;
  }
  
  /* Add back navigation logo animation */
  .nav-left h1 {
    animation-duration: 1.5s !important;
    animation-delay: 0.1s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back footer logo animation */
  .footer-logo {
    animation-duration: 1s !important;
    animation-delay: 1s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back phone number pulse animation */
  .phone-number {
    animation-duration: 2s !important;
    animation-delay: 0.5s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Add back highlight text animations */
  .highlight,
  .uk-blue,
  .red-text {
    animation-duration: 1.5s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back container-based animations */
  .container {
    animation-duration: 1.2s !important;
    animation-delay: 0.1s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back footer navigation animations */
  .footer-nav-links a {
    transition-duration: 0.3s !important;
    animation-duration: 1s !important;
    animation-delay: inherit !important;
  }
  
  /* Add back icon animations */
  .footer-icon,
  .small-icon {
    animation-duration: 1.2s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back expert item image animations */
  .expert-item img {
    animation-duration: 1s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back text content animations */
  .footer-text,
  .sustainability-text,
  .company-registration {
    animation-duration: 1s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back section-specific animations */
  .vehicle-types,
  .one-stop-shop {
    animation-duration: 1.3s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back background color transitions */
  .btn:hover,
  .expert-item:hover {
    transition-property: background-color, border-color, color !important;
    transition-duration: 0.3s !important;
  }
  
  /* Add back border and shadow animations */
  .coverage-popup,
  .cookie-banner {
    transition-property: box-shadow, border !important;
    transition-duration: 0.3s !important;
  }
  
  /* Add back list and navigation transitions */
  .nav-links li,
  .footer-nav-links {
    animation-duration: 1s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back mobile menu animations */
  .menu-toggle {
    transition-duration: 0.3s !important;
    animation-duration: 0.8s !important;
    animation-delay: 0.1s !important;
  }
  
  /* Add back fadeInUp animations for more elements */
  .hero-container,
  .experts-content,
  .oss-container,
  .how-container,
  .technicians-container,
  .image-text-container {
    animation-name: fadeInUp !important;
    animation-duration: 1.5s !important;
    animation-delay: inherit !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back enhanced floating for more images - REMOVED icon floating */
  .expert-item img {
    animation-name: none !important;
    animation-duration: 0s !important;
  }
  
  .footer-icon,
  .small-icon {
    animation-name: none !important;
    animation-duration: 0s !important;
  }
  
  /* Add back pulse effects for call-to-action elements */
  .gbu-btn,
  .hero-buttons .btn,
  .close-popup {
    animation-name: pulse !important;
    animation-duration: 2s !important;
    animation-delay: 1s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Add back floatHero for hero elements */
  .hero-text,
  .hero-image {
    animation-name: floatHero !important;
    animation-duration: 6s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Add back navbar and subline animations */
  .nav-subline,
  .navbar {
    animation-name: fadeInUp !important;
    animation-duration: 1.2s !important;
    animation-delay: 0.1s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back section header animations */
  .trusted-experts h2,
  .technicians-text h2,
  .coverage-text h2,
  .text-side h2 {
    animation-name: fadeInUp !important;
    animation-duration: 1.5s !important;
    animation-delay: 0.3s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back paragraph and text animations */
  .hero-text p,
  .technicians-text p,
  .coverage-text p,
  .text-side p {
    animation-name: fadeInUp !important;
    animation-duration: 1.3s !important;
    animation-delay: 0.5s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back banner text animations */
  .blue-banner p,
  .gradient-banner-ultimate p {
    animation-name: fadeInUp !important;
    animation-duration: 1s !important;
    animation-delay: 0.2s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back cookie banner specific animations */
  .cookie-text p,
  .cookie-buttons {
    animation-name: fadeInUp !important;
    animation-duration: 0.8s !important;
    animation-delay: 0.4s !important;
    animation-iteration-count: 1 !important;
  }
  
  /* Add back enhanced button animations */
  .cookie-btn,
  .footer-nav-links a:hover {
    animation-name: pulse !important;
    animation-duration: 1.5s !important;
    animation-delay: 0s !important;
    animation-iteration-count: infinite !important;
  }
  
  /* Add back list item staggered animations */
  .nav-links li:nth-child(1) {
    animation-delay: 0.1s !important;
  }
  .nav-links li:nth-child(2) {
    animation-delay: 0.2s !important;
  }
  .nav-links li:nth-child(3) {
    animation-delay: 0.3s !important;
  }
  
  /* Add back footer row staggered animations */
  .footer-item:nth-child(1) {
    animation-delay: 0.2s !important;
  }
  .footer-item:nth-child(2) {
    animation-delay: 0.4s !important;
  }
  .footer-item:nth-child(3) {
    animation-delay: 0.6s !important;
  }
  
  /* Add back vehicle animation enhancements */
  .animated-vehicles {
    animation-name: fadeInUp !important;
    animation-duration: 1.5s !important;
    animation-delay: 0.8s !important;
    animation-iteration-count: 1 !important;
  }
}