/* Local homepage visuals — fills missing WP Rocket / CDN images */
.ll-home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 15px 10px;
}

.ll-home-hero__card {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  text-decoration: none !important;
  background: #111;
}

.ll-home-hero__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.72) saturate(1.05);
}

.ll-home-hero__card:hover img {
  transform: scale(1.07);
  filter: brightness(0.82) saturate(1.1);
}

.ll-home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.82) 100%),
    radial-gradient(circle at 20% 20%, rgba(53,232,242,0.22), transparent 45%);
  z-index: 1;
}

.ll-home-hero__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 30px 32px;
}

.ll-home-hero__label {
  display: inline-block;
  margin: 0 0 10px;
  font-family: 'Brandon Grotesque', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #35e8f2;
}

.ll-home-hero__title {
  margin: 0 0 10px;
  font-family: 'Brandon Grotesque', Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.ll-home-hero__text {
  margin: 0 0 18px;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.ll-home-hero__cta {
  display: inline-block;
  padding: 10px 28px;
  background: #35e8f2;
  color: #080808 !important;
  font-family: 'Brandon Grotesque', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.25s ease, color 0.25s ease;
}

.ll-home-hero__card:hover .ll-home-hero__cta {
  background: #000;
  color: #35e8f2 !important;
}

.ll-svc-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  aspect-ratio: 586 / 457;
  object-fit: cover;
  background: #1a1a1a;
}

.new-services-section .vc_single_image-wrapper {
  overflow: hidden;
  border-radius: 4px;
}

.new-services-section .vc_custom_heading {
  margin-bottom: 18px;
}

.logo .img-reeponsive,
.main-footer .about > img {
  max-width: 220px;
  height: auto;
  display: block;
}

.ll-home-highlights {
  padding: 10px 0 20px;
}

.ll-home-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ll-home-highlights__item {
  display: block;
  padding: 22px 20px;
  background: #fff;
  border-left: 4px solid #35e8f2;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  color: #111 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ll-home-highlights__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ll-home-highlights__item strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Brandon Grotesque', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.ll-home-highlights__item span {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.ll-home-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 10px 0 8px;
}

.ll-home-gallery__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #111;
}

.ll-home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.05);
}

.ll-home-gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.1);
}

.ll-home-gallery__follow {
  margin: 12px 0 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ll-home-gallery__follow a {
  color: #111 !important;
}

.ll-home-gallery__follow a:hover {
  color: #35e8f2 !important;
}

.wdi_js_error {
  display: none !important;
}

@media (max-width: 991px) {
  .ll-home-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .ll-home-highlights__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ll-home-hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 16px;
  }

  .ll-home-hero__card {
    min-height: 300px;
  }

  .ll-home-hero__title {
    font-size: 26px;
  }
}
