:root {
  --yellow: #FADB07;
  --dark-blue: #09214c;
  --button-start: #067DF8;
  --button-end: #153BCD;
  --light-blue: #BAFCFF;
  --sky-blue: #1092FF;
  --heading: #222222;
  --text: #434343;
  --white: #ffffff;
  --soft-bg: #f5f8fb;
  --off-white: #f9f9f9;
  --border: #dce5ee;
  --container: 1280px;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.offer-bar {
  background: var(--yellow);
  color: var(--heading);
  font-size: 18px;
  font-weight: 600;
}

.offer-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.offer-inner-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.offer-inner-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.offer-inner a {
  border-bottom: 1px solid currentColor;
}

.open-now-bar span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.open-now-bar span:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #50EE00;
  animation: openPulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(80, 238, 0, 0.7);
}

@keyframes openPulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(80, 238, 0, 0.7);
  }

  70% {
    transform: scale(1.4);
    opacity: 0.75;
    box-shadow: 0 0 0 8px rgba(80, 238, 0, 0);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(80, 238, 0, 0);
  }
}

.site-header {
  position: relative;
  z-index: 1000;
  background: var(--dark-blue);
  color: #fff;
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: 190px;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  transition: opacity .2s ease;
}

.desktop-nav a:hover {
  opacity: .75;
}

.nav-chevron {
  margin-left: 3px;
  font-size: 12px;
  transition: transform .2s ease;
}

.nav-item {
  position: relative;
}

.nav-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  cursor: default;
  transition: opacity .2s ease;
}

.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
  opacity: .75;
}

.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  margin-top: 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .16);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1100;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  white-space: nowrap;
  opacity: 1;
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, .05);
  opacity: 1;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 50px;
  color: var(--white);
  background-image: linear-gradient(90deg, var(--button-start) 0%, var(--button-end) 100%);
  font-size: 20px;
  font-weight: 400;
  transition: all 0.5s ease;
}

.header-phone:hover {
  background: var(--white);
  color: var(--heading);
}

.phone-icon {
  font-size: 20px;
  line-height: 1;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-blue);
  color: var(--white);
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(124deg, rgba(20, 20, 20, 0.8) 40%, rgba(252, 252, 252, 0) 100%),
    url("../images/local-plumber.jpg") center/cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.hero-copy .eyebrow {
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 1px;
  color: var(--off-white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Outfit", Sans-serif;
}


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

h1,
h2,
h3 {
  color: var(--heading);
  line-height: 1.15;
}

h1 {
  font-family: "Red Hat Display", Sans-serif;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 900;
}

h1 span {
  color: var(--light-blue);
}

.hero-headline {
  display: block;
  font-family: "Red Hat Display", Sans-serif;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-headline .accent {
  color: var(--light-blue);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.4vw, 44px);
}

h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

p {
  font-size: 18px;
  margin: 0 0 15px;
}

.con-txt a {
  color: var(--sky-blue);
  font-weight: 500;
}

.banner-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-logo .banner-logo-img {
  max-width: 150px;
}

.hero-text {
  max-width: 600px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 9px 20px;
}

.hero-points li {
  position: relative;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.hero-points li i {
  color: #00FFC0;
  font-size: 22px;
  margin-right: 5px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.5s ease;
}

.btn-primary {
  color: var(--white);
  background-image: linear-gradient(90deg, var(--button-start) 0%, var(--button-end) 100%);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--dark-blue);
}

.btn-light {
  color: var(--heading);
  background: var(--white);
}

.btn-light:hover {
  color: var(--white);
  background: var(--dark-blue);
}

.hero-trust {
  min-width: 400px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.mobile-trust-badge {
  display: none;
}

.section {
  padding: 90px 0;
}

.intro-section {
  background: var(--white);
}

.intro-media {
  position: relative;
}

.intro-section.intro-dark {
  background: #eaf3fb;
}

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.intro-copy.offer-txt {
  text-align: center;
}

.intro-copy.offer-txt img {
  margin: 0 auto;
}

.intro-copy.offer-txt h2 {
  margin-bottom: 30px;
}

.photo {
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo.photo-main {
  min-height: 350px;
}

.intro-media-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.intro-media-wrap .intro-media-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-badge {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  width: 115px;
  height: 115px;
  border-radius: 10px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--dark-blue);
  background: #20f6ff;
  box-shadow: 0 12px 30px rgba(9, 33, 76, .14);
}

.experience-badge strong {
  font-size: 34px;
  line-height: 1;
}

.experience-badge span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 5px;
}

.intro-copy .lead {
  font-weight: 700;
  color: var(--dark-blue);
}

.description-text {
  margin: 0;
}

.description-text p {
  margin: 0 0 16px;
}

.description-text p:last-child {
  margin-bottom: 0;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #067DF8;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.read-more-btn:hover {
  color: #153BCD;
}

.trust-strip {
  background: #0FBBFC;
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  color: var(--dark-blue);
  text-align: center;
}

.trust-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
}

.trust-icon img {
  width: 65px;
  object-fit: contain;
}

.trust-item strong {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--heading);
}

.ticker {
  background: #050505;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  animation: ticker 28s linear infinite;
  font-size: 26px;
  font-weight: 600;
}

.ticker-track i {
  color: var(--yellow);
  font-style: normal;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

.services-section {
  background: #fafafa;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.section-heading.compact {
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  overflow: hidden;
  border: 1px solid #e3e9ef;
  border-radius: 14px;
  background: #fff;
}

.service-card>img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.service-card-body {
  padding: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 18px;
  line-height: 1.4;
}

.service-card a {
  display: inline-block;
  color: #222222;
  font-size: 16px;
  font-weight: 600;
  background-color: #79f4fc;
  padding: 8px 15px;
  border-radius: 30px;
}

.service-card a:hover {
  background-color: #222222;
  color: #ffffff;
}

.gallery-section {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Increased image height */
  grid-auto-rows: 250px;
  gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #e9eef3;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  /* Makes images fill the larger boxes */
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* Wide image */
.gallery-item.wide {
  grid-column: span 2;
}

/* Tall image */
.gallery-item.tall {
  grid-row: span 2;
}


/* =========================================
   LIGHTBOX
========================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.92);
}

.gallery-lightbox.active {
  display: flex;
}


/* Image wrapper */

.lightbox-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 70px;
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* Close button */

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 3;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #09214c;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}


/* Previous / Next */

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #09214c;
  font-size: 22px;
  cursor: pointer;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover {
  background: #FADB07;
}

.brands-section {
  padding: 58px 0;
  text-align: center;
  background: #fff;
}

.brands-section h2 {
  font-size: 25px;
}

.brand-grid {
  max-width: 1000px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 22px;
}

.brand-grid img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.testimonials-section {
  background: #f3f8fc;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: center;
}

.testimonial-heading {
  max-width: 430px;
}

.testimonial-slider-wrap {
  min-width: 0;
  height: 310px;
  position: relative;
}

.testimonial-swiper {
  height: 100%;
  padding-right: 32px;
}

.testimonial-card {
  height: 100%;
  padding: 28px 38px;
  border: 1px solid #dce6ef;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  color: #f3c400;
  letter-spacing: 2px;
  font-size: 17px;
  margin-bottom: 14px;
}

.testimonial-card>p {
  font-size: 16px;
  color: var(--text);
}

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

.customer img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.customer strong,
.customer span {
  display: block;
}

.customer strong {
  font-size: 16px;
  color: var(--heading);
}

.customer span {
  font-size: 14px;
  color: #7a8793;
}

.testimonial-swiper .swiper-pagination {
  width: 14px;
  right: 0;
  left: auto;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 5px 0 !important;
  opacity: .35;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--button-end);
}

.callback-section {
  background: #6BD8FC;
}

.callback-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 65px;
  align-items: center;
}

.callback-image {
  position: relative;
  height: 100%;
}

.callback-image img {
  width: 100%;
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}

.callback-phone {
  position: absolute;
  left: 20px;
  bottom: -20px;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(9, 33, 76, .92);
  font-size: 2em;
  font-weight: 700;
}

.callback-phone span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

.callback-form-wrap {
  padding: 35px;
  border-radius: 12px;
  background: #fff;
}


.callback-form {
  margin-top: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.callback-form label {
  display: block;
  margin-bottom: 13px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 600;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 11px 12px;
  border: 1px solid #d6e0e8;
  border-radius: 5px;
  outline: none;
  background: #fff;
}

.callback-form input:focus,
.callback-form textarea:focus {
  border-color: var(--button-start);
}

.submit-btn {
  width: 100%;
}

.form-note {
  margin: 8px 0 0;
  font-size: 10px;
  color: #777;
}

.site-footer {
  background: #e5faff;
  color: #09214c;
  padding: 80px 0 0;
  font-family: "Inter", Arial, sans-serif;
}

/* Footer Top */
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* About */
.footer-about {
  max-width: 390px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-logo img {
  width: 300px;
  height: auto;
}

.footer-about p {
  margin: 0;
  color: #09214c;
  font-size: 18px;
  line-height: 1.62;
}

/* Quick Contact */
.footer-contact h3,
.footer-payment h3 {
  margin: 0 0 25px;
  color: #00c96b;
  font-size: 23px;
  font-weight: 700;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #09214c;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.footer-phone .phone-icon {
  font-size: 32px;
  line-height: 1;
}

.mobile-sticky-call {
  display: none;
}

/* Payment */
.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-methods img {
  width: 100%;
  object-fit: contain;
}

/* Acknowledgement */
.footer-acknowledgement {
  padding: 35px 0 0;
  text-align: center;
}

.footer-acknowledgement p {
  max-width: 1340px;
  margin: 0 auto;
  color: #09214c;
  font-size: 13px;
  line-height: 1.5;
}

/* Bottom */
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(9, 33, 76, 0.25);
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 16px;
  margin: 0;
}

.footer-bottom strong {
  font-weight: 600;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background-image: linear-gradient(90deg, #067DF8 0%, #153BCD 100%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
  font-size: 21px;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 0 rgba(23, 210, 95, 0.3);
  }

  50% {
    text-shadow: 0 0 8px rgba(23, 210, 95, 0.8), 0 0 16px rgba(23, 210, 95, 0.6), 0 0 24px rgba(23, 210, 95, 0.4);
  }

  100% {
    text-shadow: 0 0 0 rgba(23, 210, 95, 0.3);
  }
}

@keyframes phoneGlow {
  0% {
    box-shadow: 0 0 0 rgba(23, 210, 95, 0.4);
  }

  50% {
    box-shadow: 0 0 18px 8px rgba(23, 210, 95, 0.75);
  }

  100% {
    box-shadow: 0 0 0 rgba(23, 210, 95, 0.4);
  }
}

@media (max-width: 1200px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 18px;
  }

  .phone-icon {
    font-size: 18px;
  }

  .header-phone {
    font-size: 18px;
    padding-inline: 12px;
  }

  .hero-copy .eyebrow {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .footer-about p {
    font-size: 16px;
  }

  .service-card p {
    font-size: 16px;
  }

  .intro-grid {
    gap: 45px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-layout {
    gap: 35px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .header-phone {
    margin-left: auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: var(--yellow);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--dark-blue);
  }

  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 10px 24px 20px;
    background: var(--dark-blue);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .16);
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 1.2em;
    font-weight: 500;
  }

  .mobile-nav a:last-child {
    border: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    background: none;
    border: 0;
    color: #fff;
    font-size: 1.2em;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
  }

  .mobile-nav-toggle i {
    font-size: 12px;
    transition: transform .2s ease;
  }

  .mobile-nav-item.open .mobile-nav-toggle i {
    transform: rotate(180deg);
  }

  .mobile-submenu {
    display: none;
    padding: 0 0 8px 12px;
  }

  .mobile-nav-item.open .mobile-submenu {
    display: block;
  }

  .mobile-submenu a {
    padding: 8px 0;
    border-bottom: 0;
    font-size: 1em;
    font-weight: 400;
    opacity: .85;
    display: block;
  }

  .btn {
    font-size: 18px;
  }

  .hero-trust {
    width: 300px;
  }

  .ticker-track {
    font-size: 24px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-dark .intro-grid .intro-media {
    order: 2;
  }

  .intro-grid {
    gap: 30px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Increased height for tablet */
    grid-auto-rows: 200px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-heading {
    max-width: 650px;
  }

  .callback-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .site-footer {
    padding-top: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    min-height: auto;
  }

  .footer-about {
    max-width: 100%;
    grid-column: 1 / -1;
  }

  .footer-phone {
    font-size: 28px;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .container {
    width: 90%;
    padding-inline: 0;
  }

  p {
    font-size: 16px;
  }

  .header-phone {
    padding: 8px 16px;
  }

  .header-inner {
    gap: 15px;
  }

  .header-phone,
  .phone-icon {
    font-size: 16px;
  }

  .offer-inner {
    min-height: 34px;
    gap: 10px;
    font-size: 12px;
  }

  .brand {
    width: 180px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy .eyebrow {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .hero-inner {
    min-height: auto;
    display: block;
  }

  .hero-copy {
    padding: 0;
    text-align: center;
  }

  .banner-logo,
  .hero-actions {
    justify-content: center;
  }

  .hero-actions a.btn.btn-primary {
    display: none;
  }

  .hero-bg {
    background-position: right;
  }

  .hero-trust {
    width: 100%;
    margin-top: 35px;
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-card {
    min-height: 95px;
  }

  .trust-card strong {
    font-size: 21px;
  }

  .trust-card span {
    font-size: 9px;
  }

  .mobile-trust-badge {
    background-color: #61D4FF;
    padding: 30px 0;
  }

  .mobile-trust-badge .hero-trust {
    margin: 0;
  }

  .mobile-trust-badge .hero-trust .trust-card {
    box-shadow: none;
  }

  .hero-trust.mobile-hide {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .photo.photo-main {
    min-height: auto;
  }

  .experience-badge {
    width: 95px;
    height: 95px;
    left: 52%;
  }

  .experience-badge strong {
    font-size: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 8px;
  }

  .trust-item {
    gap: 7px;
  }

  .trust-item strong {
    font-size: 16px;
  }

  .trust-icon {
    width: 60px;
    height: 60px;
  }

  .trust-icon img {
    width: 40px;
  }

  .ticker-track {
    font-size: 20px;
    padding: 10px 0;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-body {
    padding: 12px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-card a {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Taller mobile images */
    grid-auto-rows: 190px;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item img {
    transition: none;
  }


  /* Lightbox */

  .gallery-lightbox {
    padding: 15px;
  }

  .lightbox-content {
    padding: 50px 35px;
  }

  .lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    font-size: 27px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;

    font-size: 18px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .testimonial-slider-wrap {
    height: 340px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-card>p {
    font-size: 14px;
  }

  .testimonial-layout {
    gap: 30px;
  }

  .callback-section {
    padding: 60px 0;
  }

  .callback-form-wrap {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer {
    padding: 50px 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-about {
    grid-column: auto;
    margin: 0 auto;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-about p {
    font-size: 15px;
    line-height: 1.6;
  }

  .footer-contact h3,
  .footer-payment h3 {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .footer-phone {
    justify-content: center;
    font-size: 27px;
    gap: 12px;
  }

  .footer-phone .phone-icon {
    font-size: 26px;
  }

  .payment-methods {
    justify-content: center;
  }

  .footer-acknowledgement {
    margin-top: 45px;
    padding: 20px 0 0;
  }

  .footer-acknowledgement p {
    font-size: 11px;
    line-height: 1.6;
  }

  .payment-methods img {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .header-phone .phone-txt {
    display: none;
  }

  .header-phone {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #17d164;
    animation: phoneGlow 1.5s infinite ease-in-out;
  }

  .header-phone:hover {
    background: #17d164;
    color: #fff;
  }

  .intro-media-wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .offer-inner {
    min-height: 30px;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 7px;
  }

  .eyebrow {
    font-size: 14px;
  }

  .gallery-grid {
    grid-auto-rows: 165px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .lightbox-close {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .hero-actions {
    display: none;
  }

  .hero-points {
    text-align: left;
    margin-bottom: 0;
  }

  .hero {
    padding: 50px 0;
  }

  .mobile-trust-badge {
    display: block;
  }

  .hero-points li {
    font-size: 1.2em;
    line-height: 1.5em;
  }

  .mobile-sticky-call {
    display: block;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 999;
    width: 90%;
  }

  .mobile-sticky-call-btn {
    width: 100%;
    min-height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background: var(--dark-blue);
    border: 3px solid var(--yellow);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-family: "Outfit", Sans-serif;
  }

  /* Icon + number in same line */
  .mobile-call-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
  }

  .mobile-call-icon {
    flex: 0 0 auto;
    width: 35px;
  }

  .floating-call {
    display: none;
  }

  .mobile-call-top strong {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
  }

  /* Full-width bottom text */
  .mobile-call-subtitle {
    display: block;
    width: 100%;
    margin-top: 4px;
    color: #17d164;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    animation: textGlow 1.5s infinite ease-in-out;
  }

  .footer-bottom {
    margin-top: 0;
    padding-bottom: 90px;
  }

}

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

  .hero-trust {
    gap: 5px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-auto-rows: 105px;
  }

  .footer-phone {
    font-size: 23px;
  }

}

@media (max-width: 380px) {

  .mobile-sticky-call-btn {
    min-height: 72px;
    padding: 6px 12px;
  }

  .mobile-call-top {
    gap: 7px;
  }

  .mobile-call-icon {
    width: 26px;
  }

  .mobile-call-top strong {
    font-size: 25px;
  }

  .mobile-call-subtitle {
    font-size: 14px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.service-card h3:hover {
    color: #0c6aeb;
}