:root {
  --blue: #000306;
  --prime: #06111b;
  --green: #06111b;
  --form-green: #437866;
  --deep-green: #007a45;
  --red: #ef3739;
  --coral: #ff5158;
  --ink: #08111f;
  --muted: #667085;
  --panel: #ffffff;
  --soft: #f4f8fb;
  --dark: #06111b;
  --new : #adcb38;
  --shadow: 0 22px 55px rgba(8, 17, 31, .14);
  --shadow-hover: 0 28px 70px rgba(8, 17, 31, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  background: #fff;
  overflow-x: hidden;
}
/* Header background should match brand colors. */
/*h1 {
  background-color: #000000;
}
h2 {
  background-color: #000000;
}*/

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: 90%; max-width: 1320px; margin: 0 auto; }
.center { text-align: center; }
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  z-index: 70;
  background: linear-gradient(90deg, var(--red), #ff9a55);
  box-shadow: 0 0 18px rgba(239, 55, 57, .45);
}

.topbar {
  background: linear-gradient(90deg, var(--blue), var(--prime), var(--red));
  color: #fff;
  font-weight: 800;
}
.topbar-inner {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 18px;
  align-items: center;
}
.icon-link,
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.icon-link svg,
.footer-contact-link svg,
.top-social svg,
.footer-social svg,
.sticky-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}
.icon-link svg {
  color: #fff;
}
.top-social,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-social {
  justify-self: end;
}
.top-social a,
.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.footer-social a {
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.footer-social svg {
  width: 20px;
  height: 20px;
}
.top-social a:hover,
.footer-social a:hover {
  transform: translateY(-3px);
  background: #fff;
  color: var(--red);
}
.top-cta,
.price-btn,
.primary-action,
.lead-form button,
.popup-form button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), #ff6b52);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(239, 55, 57, .25);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: ctaGlow 2.6s ease-in-out infinite;
}
.top-cta { justify-self: end; padding: 12px 24px; }
.top-cta:hover,
.price-btn:hover,
.primary-action:hover,
.lead-form button:hover,
.popup-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(239, 55, 57, .32);
  animation-play-state: paused;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 10px 30px rgba(8,17,31,.07);
  transition: box-shadow .25s ease, background .25s ease;
}
.nav-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 245px 1fr auto;
  gap: 28px;
  align-items: center;
}
.logo img { width: 218px; }
.logo img,
.footer-logo,
.popup-media img {
  transition: transform .3s ease, filter .3s ease;
}
.logo:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 18px rgba(8,17,31,.16));
}
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 800;
}
.drawer-brand { display: none; }
.drawer-close,
.drawer-cta { display: none; }
.main-nav a {
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }
.price-btn { padding: 14px 30px; font-size: 15px; }
.menu-toggle { display: none; }
.hero{
    position: relative;
    overflow: hidden;
    line-height: 0;
}

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

.hero-cta-bar {
  background: var(--new);
  padding: 30px 0;
}
.hero-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.hero-cta-text {
  max-width: 640px;
}
.hero-cta-text .kicker {
  font-size: 15px;
  margin-bottom: 6px;
}
.hero-cta-text p:not(.kicker) {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.6;
}
.hero-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.ghost-action-dark {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.06);
  font: 800 15px "Outfit", Arial, sans-serif;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.ghost-action-dark:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-3px);
}
.kicker {
  margin: 0 0 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 23px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--red));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: kickerShine 4s linear infinite;
}
.hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  text-shadow: 0 4px 22px rgba(0,0,0,.7);
}
.hero-copy > p:not(.kicker) {
  max-width: 520px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.primary-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 28px;
  font: 800 15px "Outfit", Arial, sans-serif;
  cursor: pointer;
}
.ghost-action {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-card {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.hero-card span { color: var(--red); font-weight: 900; text-transform: uppercase; }
.hero-card strong { display: block; margin: 8px 0; font-size: 42px; }
.hero-card p { color: var(--muted); line-height: 1.55; }

.client-marquee {
  padding: 26px 0;
  background: #fff;
  border-bottom: 1px solid rgba(8,17,31,.08);
  overflow: hidden;
}
.client-marquee .container {
  overflow: hidden;
  /*mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);*/
}
.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeSlide 24s linear infinite;
}
.logo-track span {
  min-width: 155px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 12px 30px rgba(8,17,31,.08);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform .25s ease, border-color .25s ease, color .25s ease;
}
.logo-track img {
  max-width: 112px;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(1.05);
}
.logo-track span:hover {
  transform: translateY(-5px);
  border-color: rgba(239,55,57,.35);
  color: var(--red);
}
.client-marquee:hover .logo-track,
.project-slider:hover .project-track {
  animation-play-state: paused;
}

.brand-strip {
  padding: 20px 0;
  background: var(--dark);
  color: #fff;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.strip-grid span {
  padding: 14px 18px;
  border-radius: 8px;
  text-align: center;
  font-weight: 800;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease;
}
.strip-grid span:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
}

.impact-band {
  padding: 46px 0;
  background: #fff;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.impact-grid article {
  min-height: 180px;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(239,55,57,.08), transparent 45%),
    #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 16px 42px rgba(8,17,31,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.impact-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(239,55,57,.26);
  box-shadow: var(--shadow-hover);
}
.impact-grid b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
}
.impact-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.impact-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

section { padding: 86px 0; }
h2 {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.1;
}
.section-intro {
  max-width: 900px;
  margin: 0 auto 36px;
  color: var(--muted);
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
}
.about-form-section {
  background:
    linear-gradient(135deg, rgba(239,55,57,.06), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.about-grid,
.contact-grid,
.experience-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 44px;
  align-items: center;
}
.about-copy p,
.contact-copy p,
.experience-card p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stats span {
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow);
  font-weight: 800;
  border: 1px solid rgba(8,17,31,.06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.stats span:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.stats b {
  display: block;
  color: var(--red);
  font-size: 42px;
}
.campaign-stats {
  padding: 50px 0 58px;
  background: #fff;
}
.campaign-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  text-align: center;
}
.campaign-stats-grid div {
  min-height: 156px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  border-right: 2px solid #111;
}
.campaign-stats-grid div:last-child { border-right: 0; }
.campaign-stats-grid b {
  font-family: "Playfair Display", Georgia, serif;
  color: #000;
  font-size: clamp(58px, 7vw, 88px);
  line-height: .9;
}
.campaign-stats-grid span {
  color: #777681;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.1;
}
.lead-form {
  background: var(--form-green);
  padding: 42px 38px;
  border-radius: 30px;
  box-shadow: 0 22px 50px rgba(26,78,62,.22);
  border: 0;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.lead-form::before {
  display: none;
}
.lead-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 68px rgba(26,78,62,.28);
}
.lead-form h2,
.popup-form h2 {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 28px;
  text-align: center;
}
.lead-form h2 {
  color: #fff;
  margin-bottom: 16px;
}
.form-note {
  margin: -4px auto 24px;
  max-width: 420px;
  color: rgba(255,255,255,.86);
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
}
input {
  width: 100%;
  height: 64px;
  margin: 0 0 22px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #333;
  font: 600 18px "Outfit", Arial, sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  background: #fff;
}
input::placeholder { color: #739088; opacity: 1; }
input:focus {
  box-shadow: 0 0 0 4px rgba(255,255,255,.24), 0 0 0 7px rgba(255,81,88,.22);
}
.lead-form button,
.popup-form button {
  width: 100%;
  height: 64px;
  margin-top: 0;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: none;
  font-size: 18px;
  letter-spacing: 0;
}
.lead-form.is-submitted,
.popup-form.is-submitted {
  box-shadow: 0 22px 60px rgba(37, 211, 102, .22);
}
.lead-form.is-submitted button,
.popup-form.is-submitted button {
  background: linear-gradient(135deg, #18b86f, #25d366);
}

.categories { background: #fff; }
.category-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.category-row article {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.category-row article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.category-row article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6,17,27,.88));
}
.category-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.category-row h3 {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 19px;
}
.category-row article:hover img { transform: scale(1.08); }

.services {
  background:
    linear-gradient(180deg, var(--soft), #fff);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}
.service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.service-cloud button {
  padding: 13px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: 800 15px "Outfit", Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(8,17,31,.08);
  border: 1px solid rgba(8,17,31,.06);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.service-cloud button::after {
  content: "Get Quote";
  display: inline-block;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  transition: max-width .25s ease, margin-left .25s ease, opacity .25s ease;
}
.service-cloud button:hover,
.service-cloud button.is-selected,
.service-cloud button:focus-visible {
  transform: translateY(-4px);
  background: var(--dark);
  color: #fff;
  box-shadow: 0 16px 34px rgba(8,17,31,.16);
}
.service-cloud button:hover::after,
.service-cloud button.is-selected::after,
.service-cloud button:focus-visible::after {
  max-width: 92px;
  margin-left: 12px;
  opacity: 1;
}
.service-cloud button:focus-visible {
  outline: 3px solid rgba(239,55,57,.26);
  outline-offset: 3px;
}

.experience {
  background:
    linear-gradient(135deg, #06111b, #0a2a35);
  color: #fff;
  overflow: hidden;
}
.experience .kicker {
  background: linear-gradient(90deg, #8eeaff, #fff, #8eeaff);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.experience-card {
  padding: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.experience-card p { color: rgba(255,255,255,.78); }
.timeline {
  display: grid;
  gap: 16px;
}
.timeline div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.timeline div:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.24);
}
.timeline b {
  color: var(--blue);
  font-size: 30px;
}
.timeline span {
  font-size: 18px;
  font-weight: 800;
}

.visual-cta {
  background: linear-gradient(180deg, #fff 0%, #f1f3f2 100%);
}
.visual-cta-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}
.visual-cta-media {
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(8,17,31,.12);
}
.visual-cta-media img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}
.visual-cta-form {
  max-width: 560px;
  justify-self: end;
}

.projects { background: #fff; }
.project-slider {
  overflow: hidden;
  padding: 10px 0 18px;
  /*mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);*/
}
.project-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: projectSlide 34s linear infinite;
}
.project-slider img {
  width: min(360px, 76vw);
  height: 260px;
  padding: 10px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(244,248,251,.72), rgba(255,255,255,.18));
  border-radius: 8px;
  /*box-shadow: var(--shadow);*/
  animation: imageDrift 6s ease-in-out infinite;
  /*transition: transform .3s ease, box-shadow .3s ease, filter .3s ease, background .3s ease;*/
}
.project-slider img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  filter: saturate(1.08) contrast(1.03);
  animation-play-state: paused;
}

.contact {
  background:
    linear-gradient(135deg, rgba(239,55,57,.12), transparent 28%),
    var(--soft);
}
.contact-copy a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 14px 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(8,17,31,.12);
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}
.contact-copy a::before {
  width: 28px;
  color: #1f2144;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}
.contact-copy a[href^="tel"]::before { content: "\260E"; }
.contact-copy a[href^="mailto"]::before { content: "\2709"; }
.contact-copy a:hover {
  color: var(--coral);
}

.footer {
  background: var(--dark);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1fr;
  gap: 44px;
  padding: 58px 0;
}
.footer-logo {
  width: 260px;
  margin-bottom: 20px;
}
.footer p { color: rgba(255,255,255,.72); line-height: 1.7; }
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin: 20px 0 4px;
  padding: 0px;
  /*border-radius: 8px;*/
  /*background: rgba(255,255,255,.06);*/
  /*border: 1px solid rgba(255,255,255,.12);*/
}
.footer-address svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--red);
  fill: currentColor;
}
.footer-address span {
  color: rgba(255,255,255,.78);
  font-size: 14.5px;
  line-height: 1.6;
}
.footer-address b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .02em;
}
.footer h2 {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  margin-bottom: 18px;
}
.footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.82);
  transition: color .2s ease, transform .2s ease;
}
.footer-social {
  margin-top: 22px;
  gap: 12px;
}
.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  line-height: 1.35;
  color: rgba(255,255,255,.9) !important;
  transform: none !important;
}
.footer-contact-link svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  color: #fff;
  background: rgba(239,55,57,.95);
  box-shadow: 0 10px 24px rgba(239,55,57,.22);
}
.footer-contact-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-contact-link:hover svg {
  background: #25d366;
}
.footer a:hover {
  color: #fff;
  transform: translateX(5px);
}
.copyright {
  text-align: center;
  padding: 16px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--red));
  font-weight: 800;
}

.sticky-contact {
  position: fixed;
  right: 0;
  bottom: 26px;
  top: auto;
  z-index: 24;
  display: grid;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 18px 42px rgba(8,17,31,.18);
}
.sticky-contact a {
  position: relative;
  width: 58px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: transform .2s ease, filter .2s ease;
}
.sticky-contact a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: pulseRing 2.4s ease-out infinite;
}
.sticky-contact a:nth-child(2)::before {
  box-shadow: 0 0 0 0 rgba(239,55,57,.55);
  animation-delay: 1.1s;
}
.sticky-contact svg {
  width: 24px;
  height: 24px;
}
.sticky-contact a:hover {
  filter: brightness(1.08);
  transform: translateX(-4px);
}
.sticky-contact a:nth-child(2) { background: var(--red); }

.popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,37,24,.78);
  z-index: 50;
  padding: 20px;
  opacity: 0;
  transition: opacity .28s ease;
}
.popup.is-visible { display: flex; opacity: 1; }
.popup-panel {
  position: relative;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 35px 90px rgba(0,0,0,.38);
  transform: translateY(18px) scale(.96);
  opacity: 0;
  transition: transform .32s ease, opacity .32s ease;
}
.popup.is-visible .popup-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.popup-close {
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(8,17,31,.16);
  transition: transform .2s ease, background .2s ease;
}
.popup-close:hover {
  transform: rotate(90deg);
  background: #fff;
}
.popup-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0,84,51,.9), rgba(67,120,102,.72)),
    url("../img/landing-page-mobile-banner-28.jpg-1024x656.webp");
  background-size: cover;
  background-position: center;
}
.popup-media img {
  width: 210px;
  margin-bottom: 28px;
}
.popup-media h2 {
  margin: 0 0 12px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 36px;
}
.popup-media p { margin: 0; line-height: 1.6; }
.popup-points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.popup-points span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 14px;
  font-weight: 800;
}
.popup-form {
  padding: 64px 42px 40px;
  background: var(--form-green);
}
.popup-form h2 { color: #fff; }
.selected-service {
  margin: -8px 0 20px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.24);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}
.text-rise {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
}
.text-rise.text-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer .text-rise {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
@keyframes projectSlide {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 11px)); }
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 14px 30px rgba(239, 55, 57, .25); }
  50% { box-shadow: 0 14px 40px rgba(239, 55, 57, .55); }
}
@keyframes kickerShine {
  0% { background-position: 0% center; }
  100% { background-position: -200% center; }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1080px) {
  .nav-inner { grid-template-columns: 205px 1fr auto; }
  .logo img { width: 190px; }
  .main-nav { gap: 18px; }
  .category-row { grid-template-columns: repeat(3, 1fr); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 360px; }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  .topbar-inner { grid-template-columns: 1fr; text-align: center; padding: 12px 0; }
  .icon-link,
  .top-social { justify-content: center; justify-self: center; }
  .top-cta { justify-self: center; }
  .nav-wrap {
    top: 0;
    margin: 0;
    background: #fff;
    border-bottom: 5px solid rgba(8,17,31,.42);
    border-radius: 0 0 30px 30px;
    box-shadow: 0 14px 26px rgba(8,17,31,.16);
    backdrop-filter: none;
  }
  .nav-inner { grid-template-columns: minmax(0, 1fr) auto; min-height: 104px; gap: 14px; }
  .logo img { width: min(260px, 62vw); }
  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    width: 58px;
    height: 58px;
    padding: 0;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 40px;
    height: 5px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .22s ease, opacity .22s ease;
  }
  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 58;
    pointer-events: none;
    opacity: 0;
    background: rgba(6,17,27,.62);
    transition: opacity .28s ease;
  }
  .nav-overlay.is-visible {
    pointer-events: auto;
    opacity: 1;
  }
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 60;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 20px 22px 26px;
    background: #fff;
    border-radius: 0 28px 28px 0;
    box-shadow: 22px 0 56px rgba(8,17,31,.24);
    transform: translate3d(-112%, 0, 0) !important;
    transition: transform .34s cubic-bezier(.22,.72,.16,1);
    overflow-y: auto;
    will-change: transform;
  }
  .main-nav.open { transform: translate3d(0, 0, 0) !important; }
  .drawer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 18px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(8,17,31,.09);
  }
  .drawer-brand img {
    width: 205px;
    max-width: 100%;
    height: auto;
  }
  .drawer-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 0;
    border-radius: 50%;
    background: var(--coral);
    color: #fff;
    font: 900 22px/1 "Outfit", Arial, sans-serif;
    cursor: pointer;
  }
  .main-nav a {
    display: block;
    padding: 17px 4px;
    border-bottom: 1px solid rgba(8,17,31,.07);
    font-size: 18px;
  }
  .main-nav a::after { display: none; }
  .drawer-cta {
    display: block;
    width: 100%;
    height: 58px;
    margin-top: 22px;
    border: 0;
    border-radius: 999px;
    background: var(--coral);
    color: #fff;
    font: 900 18px "Outfit", Arial, sans-serif;
    cursor: pointer;
  }
  .price-btn { display: none; }
  .hero {
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
  }
  .about-grid,
  .contact-grid,
  .experience-grid,
  .visual-cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .location-card-grid,
  .image-service-grid,
  .gallery-grid,
  .project-grid,
  .contact-page-grid {
    grid-template-columns: 1fr 1fr;
  }
  .strip-grid,
  .client-logo-grid,
  .stats,
  .campaign-stats-grid,
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .campaign-stats-grid div:nth-child(2) { border-right: 0; }
  .campaign-stats-grid div:last-child {
    grid-column: 1 / -1;
    border-top: 2px solid #111;
    padding-top: 28px;
  }
  .visual-cta-form {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  .hero-cta-bar { padding: 22px 0; }
  .hero-cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-cta-actions { width: 100%; }
  .hero-cta-actions a { flex: 1 1 auto; justify-content: center; }
  .container { width: 90%; }
  section { padding: 58px 0; }
  .logo img { width: 170px; }
  .nav-inner { min-height: 70px; }
  .menu-toggle span { width: 30px; height: 3px; }
  .hero {
    min-height:auto;
  }
  .hero-content {
    padding: 24px 0;
    align-items: end;
  }
  .hero-img { object-position: left center; }
  .hero h1 { font-size: 36px; }
  .hero-copy > p:not(.kicker) { font-size: 17px; }
  .hero-card { padding: 22px; max-width: 290px; }
  .hero-card strong { font-size: 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .strip-grid,
  .client-logo-grid,
  .stats,
  .campaign-stats-grid,
  .impact-grid,
  .category-row,
  .location-card-grid,
  .image-service-grid,
  .gallery-grid,
  .project-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .campaign-stats { padding: 34px 0 40px; }
  .campaign-stats-grid div,
  .campaign-stats-grid div:nth-child(2),
  .campaign-stats-grid div:last-child {
    min-height: 128px;
    border-right: 0;
    border-top: 1px solid #111;
    padding: 20px 0;
    grid-column: auto;
  }
  .campaign-stats-grid div:first-child { border-top: 0; }
  .visual-cta-media img { min-height: 260px; }
  .logo-track span { min-width: 132px; height: 64px; font-size: 17px; }
  .logo-track img { max-width: 94px; max-height: 36px; }
  .category-row article { min-height: 250px; }
  .lead-form { padding: 24px 18px; }
  .timeline div { grid-template-columns: 1fr; }
  .popup-panel { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
  .popup-media { min-height: 260px; padding: 28px; }
  .popup-form { padding: 28px; }
  .sticky-contact { top: auto; bottom: 0; right: 0; grid-auto-flow: column; }
  .sticky-contact a { width: 76px; height: 50px; }
  .sticky-contact svg { width: 22px; height: 22px; }
}

/* Final footer icon overrides */
.footer .footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}
.footer .footer-social a {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  transform: none;
}
.footer .footer-social a:hover {
  color: #fff;
  background: var(--red);
  transform: translateY(-4px);
}
.footer .footer-social svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: currentColor;
}
.footer .footer-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 15px 0;
  color: rgba(255,255,255,.92);
  transform: none;
}
.footer .footer-contact-link:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer .footer-contact-link svg {
  width: 40px;
  height: 40px;
  display: block;
  flex: 0 0 40px;
  padding: 10px;
  border-radius: 50%;
  color: #fff;
  fill: currentColor;
  background: linear-gradient(135deg, var(--red), #ff6b52);
  box-shadow: 0 12px 26px rgba(239,55,57,.24);
}
.footer .footer-contact-link:hover svg {
  background: linear-gradient(135deg, #25d366, #16a65a);
}
.footer .footer-contact-link span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Footer reset: previous clean footer layout with proper social icon buttons */
.footer .footer-grid {
  align-items: start;
}
.footer .footer-social {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.footer .footer-social a {
  width: 44px;
  height: 44px;
  display: inline-grid !important;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  transform: none;
}
.footer .footer-social a:hover {
  color: #fff;
  background: var(--red);
  transform: translateY(-4px);
}
.footer .footer-social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}
.footer .footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: rgba(255,255,255,.88) !important;
  line-height: 1.35;
  transform: none !important;
}
.footer .footer-contact-link:hover {
  color: #fff !important;
  transform: translateX(4px) !important;
}
.footer .footer-contact-link svg,
.footer .footer-contact-link:hover svg {
  width: 19px !important;
  height: 19px !important;
  flex: 0 0 19px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  color: #ff6b52;
  fill: currentColor;
  background: transparent !important;
  box-shadow: none !important;
}

.page-hero {
  padding: 74px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(6,17,27,.92), rgba(239,55,57,.72)),
    url("../hero.png?v=7");
  background-size: cover;
  background-position: center;
}
.page-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
}
.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 19px;
  line-height: 1.7;
}
.project-page {
  background: #fff;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.project-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}
.project-grid img {
  width: 100%;
  height: 250px;
  padding: 10px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(244,248,251,.72), rgba(255,255,255,.18));
}
.project-grid h3 {
  margin: 0;
  padding: 18px 18px 8px;
  font-size: 21px;
}
.project-grid p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--muted);
  line-height: 1.6;
}
.contact-page {
  background:
    linear-gradient(135deg, rgba(239,55,57,.1), transparent 28%),
    var(--soft);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.contact-card-list {
  display: grid;
  gap: 16px;
}
.contact-card-list a,
.contact-card-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 14px 34px rgba(8,17,31,.08);
}
.contact-card-list b {
  display: block;
  margin-bottom: 4px;
}
.contact-card-list span {
  color: var(--muted);
}
.contact-card-list svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 10px;
  color: #fff;
  fill: currentColor;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #ff6b52);
}
.contact-page .lead-form {
  margin: 0;
}
.contact-map {
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: var(--shadow);
  transition: box-shadow .28s ease;
}
.contact-map:hover { box-shadow: var(--shadow-hover); }
.contact-map iframe { display: block; }

.image-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.image-service-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.image-service-grid article:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}
.image-service-grid img {
  width: 100%;
  height: 210px;
  padding: 10px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(244,248,251,.72), rgba(255,255,255,.18));
  animation: imageDrift 6s ease-in-out infinite;
  transition: transform .32s ease, filter .32s ease;
}
.image-service-grid article:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
  animation-play-state: paused;
}
.image-service-grid div {
  padding: 20px;
}
.image-service-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
}
.image-service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.location-links,
.gallery-section,
.offer-section {
  background: var(--soft);
}
.location-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.location-card-grid a,
.location-card-grid button,
.seo-card,
.mission-grid article,
.testimonial-grid article {
  display: block;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.location-card-grid a,
.location-card-grid button {
  width: 100%;
  min-height: 190px;
  padding: 24px;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.location-card-grid a:hover,
.location-card-grid button:hover,
.mission-grid article:hover,
.testimonial-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(239,55,57,.24);
  box-shadow: var(--shadow-hover);
}
.location-card-grid b {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 24px;
}
.location-card-grid span {
  color: var(--muted);
  line-height: 1.6;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  padding: 10px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(244,248,251,.72), rgba(255,255,255,.18));
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,17,31,.08);
  animation: galleryFloat 5.5s ease-in-out infinite;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.gallery-grid img:hover {
  transform: translateY(-7px) scale(1.03);
  border-color: rgba(239,55,57,.22);
  box-shadow: var(--shadow-hover);
  animation-play-state: paused;
}
.gallery-section .gallery-extra {
  display: none;
}
.gallery-section.is-expanded .gallery-extra {
  display: block;
}
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.gallery-more-btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ff6b52);
  font: 900 15px "Outfit", Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(239, 55, 57, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(239, 55, 57, .32);
}
.clients-section {
  background: var(--soft);
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.client-logo-card {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 12px 30px rgba(8,17,31,.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.client-logo-card img {
  max-width: 74%;
  max-height: 52px;
  object-fit: contain;
}
.client-logo-card span {
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}
.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,55,57,.3);
  box-shadow: var(--shadow-hover);
}

.testimonials {
  background: #fff;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-grid article {
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 20px 50px rgba(8,17,31,.1);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.google-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  color: #fff;
  font: 900 24px "Outfit", Arial, sans-serif;
}
.review-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
}
.review-stars {
  color: #fbbc05;
  margin-bottom: 16px;
  font-size: 20px;
  letter-spacing: 0;
}
.testimonial-grid p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.testimonial-grid article > b,
.testimonial-grid article > span {
  display: block;
}
.testimonial-grid b {
  font-size: 18px;
}
.testimonial-grid article > span {
  margin-top: 4px;
  color: var(--red);
  font-weight: 800;
}
.about-page-hero,
.location-hero {
  background:
    linear-gradient(115deg, rgba(6,17,27,.9), rgba(239,55,57,.68)),
    url("../about_1.png");
  /*background-size: cover;*/
  /*background-position: center;*/
  width: 100%;
  height: 100%;
}
.location-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 44px;
  align-items: center;
}
.location-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.location-quote-card {
  padding: 30px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}
.location-quote-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.location-quote-card b {
  display: block;
  font-size: 30px;
  line-height: 1.12;
}
.location-quote-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.location-stats-band {
  padding: 26px 0;
  background: var(--dark);
  color: #fff;
}
.location-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.location-stats-grid div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.location-stats-grid b,
.location-stats-grid span {
  display: block;
}
.location-stats-grid b {
  margin-bottom: 6px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
}
.location-stats-grid span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
}
.about-detail {
  background: #fff;
}
.about-stats-section {
  padding: 46px 0;
  background:
    linear-gradient(135deg, rgba(239,55,57,.06), transparent 28%),
    var(--soft);
}
.about-stats {
  max-width: 980px;
  margin: 0 auto;
}
.about-detail-grid,
.seo-grid,
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.about-detail-grid.reverse {
  align-items: start;
}
.about-detail-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.about-detail p,
.seo-copy p,
.mission-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.offer-grid,
.check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.offer-grid span,
.check-grid span,
.zone-list span {
  padding: 15px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 12px 28px rgba(8,17,31,.07);
  font-weight: 800;
}
.check-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}
.check-grid span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
}
.mission-vision {
  background: var(--soft);
}
.mission-grid article {
  min-height: 320px;
  padding: 34px;
}
.seo-copy {
  background: #fff;
}
.seo-card {
  padding: 30px;
}
.seo-card h3 {
  margin: 0 0 18px;
  font-size: 25px;
}
.seo-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
}
.location-zones {
  background: var(--soft);
}
.location-process {
  background: #fff;
}
.location-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.location-step-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(239,55,57,.08), transparent 48%),
    #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.location-step-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(239,55,57,.24);
  box-shadow: var(--shadow-hover);
}
.location-step-grid b {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--dark);
}
.location-step-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}
.location-step-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.zone-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}
.location-services {
  background: #fff;
}
.faq-section {
  background: var(--soft);
}
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-list details {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(8,17,31,.08);
  box-shadow: 0 12px 28px rgba(8,17,31,.07);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "-";
}
.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}

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

@keyframes imageDrift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.015); }
}

@media (max-width: 900px) {
  .project-grid,
  .contact-page-grid,
  .image-service-grid,
  .location-card-grid,
  .gallery-grid,
  .testimonial-grid,
  .about-detail-grid,
  .seo-grid,
  .mission-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .location-hero-grid,
  .location-stats-grid,
  .location-step-grid {
    grid-template-columns: 1fr;
  }
  .image-service-grid img,
  .gallery-grid img {
    height: 190px;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   EXTRA RESPONSIVE FIXES — added so every section scales cleanly
   at every screen width (bug fixes + new breakpoints)
   ================================================================ */

/* stop any element from forcing horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
img, svg, video, iframe { max-width: 100%; height: auto; }

/* large screens: tighten container a touch so text doesn't stretch too wide */
@media (max-width: 1400px) {
  .container { width: 92%; }
}

/* tablet landscape (in-between 1080 and 820 — previously nothing handled here) */
@media (max-width: 992px) {
  .impact-grid,
  .about-detail-grid,
  .seo-grid,
  .mission-grid,
  .offer-grid,
  .strip-grid,
  .client-logo-grid,
  .location-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 100%; }
  .location-hero-grid { grid-template-columns: 1fr; }
}

/* small tablet / large phone (fills the gap between 820 and 560) */
@media (max-width: 768px) {
  .campaign-stats-grid,
  .testimonial-grid,
  .location-step-grid,
  .image-service-grid,
  .gallery-grid,
  .project-grid,
  .location-card-grid,
  .impact-grid,
  .about-detail-grid,
  .seo-grid,
  .mission-grid,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 54px 0; }
  .location-quote-card { max-width: 100%; }
}

/* small phones */
@media (max-width: 480px) {
  .container { width: 92%; }
  section { padding: 44px 0; }
  .hero h1 { font-size: 32px; }
  .kicker { font-size: 17px; }
  .hero-copy > p:not(.kicker) { font-size: 15px; }
  .impact-grid,
  .about-detail-grid,
  .seo-grid,
  .mission-grid,
  .offer-grid,
  .strip-grid,
  .client-logo-grid,
  .campaign-stats-grid,
  .testimonial-grid,
  .location-step-grid,
  .image-service-grid,
  .gallery-grid,
  .project-grid,
  .location-card-grid,
  .footer-grid,
  .check-grid,
  .stats {
    grid-template-columns: 1fr;
  }
  .lead-form, .popup-form { padding: 22px 16px; }
  input,
  .lead-form button,
  .popup-form button {
    height: 54px;
    font-size: 15px;
    padding: 0 18px;
  }
  .stats span, .strip-grid span { padding: 14px; }
  .location-quote-card b { font-size: 24px; }
  .hero-card strong { font-size: 30px; }
  .footer-grid { gap: 26px; }
}

/* extra small phones */
@media (max-width: 360px) {
  .logo img { width: 140px; }
  .hero h1 { font-size: 26px; }
  .top-cta, .price-btn { padding: 10px 18px; font-size: 13px; }
  .hero-card { padding: 18px; }
}

.clients-section{
    padding:80px 0;
    background:#fff;
}


.client-logo-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    justify-content: center;
    gap: 0px;
    margin-top: 50px;
}



.client-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    height:120px;
}


.client-logo img{
    max-width:160px;
    max-height:90px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.75;
    transition:.3s ease;
}


.client-logo img:hover{
    filter:grayscale(0%);
    opacity:1;
    transform:scale(1.08);
}



/* Tablet */
@media(max-width:992px){

.client-logo-grid{
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

}


/* Mobile */
@media(max-width:576px){

.client-logo-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}


.client-logo img{
    max-width:120px;
}

}