:root {
  --ink: #10223f;
  --muted: #65758b;
  --line: #dce6ef;
  --soft: #f3f7fb;
  --blue: #173f68;
  --cyan: #20adbf;
  --red: #e9434a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 34, 63, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

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

.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;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.container.wide,
.site-header .container {
  width: min(1380px, calc(100% - 32px));
}

.site-header .container {
  width: 100%;
  padding-inline: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-top: 2px solid #2c2c2c;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(16, 34, 63, 0.04);
}

.header-top {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid #edf1f5;
}

.header-contact {
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #50627c;
  white-space: nowrap;
}

.contact-item strong {
  display: block;
  color: #0d213d;
  font-size: 17px;
  line-height: 1.2;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: #0d2a52;
  border-radius: 50%;
}

.inline-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-icon .inline-icon,
.float-btn .inline-icon,
.nav-toggle .inline-icon {
  filter: brightness(0) invert(1);
}

.content-icon .inline-icon {
  filter: brightness(0) saturate(100%) invert(16%) sepia(47%) saturate(1717%) hue-rotate(188deg) brightness(89%) contrast(99%);
}

.contact-icon svg,
.menu svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-menu {
  background: #fff;
  position: relative;
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 0.35fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  color: #0d213d;
  font-weight: 400;
  letter-spacing: 0;
}

.brand-logo {
  width: 210px;
  height: auto;
  display: block;
}

.menu {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 36px;
  color: #06152c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu a,
.menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 72px;
  padding: 0;
  border-bottom: 3px solid transparent;
}

.menu svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.menu .inline-icon {
  width: 16px;
  height: 16px;
}

.menu a:hover,
.menu a.active,
.menu-item:hover > a {
  color: #0d2a52;
  border-color: #0d2a52;
}

.menu-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 2px);
  width: 310px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: 0.18s ease;
  z-index: 40;
}

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

.dropdown-menu a {
  min-height: 44px;
  gap: 10px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  text-transform: none;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: #eef8fb;
  border: 0;
}

.dropdown-menu .inline-icon {
  width: 21px;
  height: 21px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(58%) saturate(1227%) hue-rotate(181deg) brightness(89%) contrast(94%);
}

.nav-actions {
  grid-column: 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  margin-left: auto;
}

.nav-toggle {
  grid-column: 1;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 8px;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 0;
  border-radius: 8px;
  color: white;
  background: var(--red);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn.quote-btn {
  min-width: 138px;
  background: #0d2a52;
  border-radius: 24px;
}

.btn.btu-btn {
  min-width: 150px;
  color: white;
  background: #0d2a52;
  border-radius: 24px;
}

.btu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(390px, calc(100vw - 32px));
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  z-index: 50;
}

.btu-panel.open {
  display: grid;
  gap: 12px;
}

.btu-panel h3 {
  margin: 0;
}

.btu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.btu-panel label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.btu-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  line-height: 1.25;
}

.btu-check input {
  width: auto;
  min-height: auto;
}

.btu-result {
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.header-whatsapp {
  display: none;
}

.btn.secondary {
  background: var(--cyan);
}

.btn.dark {
  background: var(--blue);
}

.btn.ghost {
  color: var(--blue);
  background: white;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 18, 38, 0.82) 0%, rgba(5, 18, 38, 0.62) 38%, rgba(5, 18, 38, 0.12) 62%, rgba(5, 18, 38, 0) 100%),
    var(--hero-bg);
  background-size: cover;
  background-position: center right;
}

.hero .container {
  min-height: clamp(430px, 40vw, 500px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 52px 18px 94px clamp(28px, 6.4vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: white;
  min-width: 0;
  width: min(620px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #9feaf3;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
}

.hero h1 {
  max-width: 660px;
  margin: 0 0 18px;
  color: white;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 28px;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #79ecff 24%, #ffd166 48%, #ff7a90 70%, #ffffff 100%);
  background-size: 360% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.2;
  font-weight: 900;
  filter: drop-shadow(0 3px 9px rgba(5, 18, 38, 0.78));
  animation: gradient-flow 8s linear infinite;
}

.hero .eyebrow {
  margin: 0 0 16px;
  color: #9feaf3;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: 13px;
  filter: none;
  animation: none;
}

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

.service-area-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  background-image: none !important;
}

.service-area-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(238, 247, 255, 0.94) 0%, rgba(238, 247, 255, 0.4) 30%, rgba(238, 247, 255, 0) 50%);
  pointer-events: none;
}

.service-area-hero-bg {
  width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

.service-area-container {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 40px;
  align-items: center;
  padding: 0 0 30px clamp(24px, 5vw, 86px);
}

.service-area-content {
  color: #061b4d;
}

.service-area-content h1 {
  max-width: 660px;
  margin: 0 0 18px;
  color: #071f52;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
}

.service-area-content > p {
  max-width: 650px;
  margin: 0 0 26px;
  color: #40516c;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.5;
}

.service-area-call .inline-icon,
.service-area-card-call .inline-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(73%) saturate(1733%) hue-rotate(211deg) brightness(90%) contrast(101%);
}

.service-area-actions {
  display: flex;
  gap: 14px;
}

.service-area-actions .btn {
  min-width: 160px;
  min-height: 50px;
  font-size: 16px;
  padding: 10px 16px;
}

.service-area-call {
  color: #071f52;
  background: white;
  border: 1px solid #071f52;
}

.service-area-card {
  width: 100%;
  max-width: 295px;
  justify-self: end;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(16, 34, 63, 0.14);
}

.service-area-card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #071f52;
}

.service-area-card-icon .inline-icon {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}

.service-area-card h2 {
  margin: 4px 0 0;
  color: #071f52;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.1;
}

.service-area-card p {
  margin: 0;
  color: #40516c;
  font-weight: 700;
  line-height: 1.4;
  font-size: 14px;
}

.service-area-card input,
.service-area-card select {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
}

.service-area-card .btn {
  min-height: 44px;
  font-size: 15px;
  padding: 8px 12px;
}

.service-area-card-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #071f52;
  font-weight: 900;
  font-size: 13px;
  margin-inline: auto;
}

.service-vehicle-lane {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 82px;
  pointer-events: none;
  z-index: 4;
}

.service-vehicle-lane::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
}

.service-vehicle {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 205px;
  height: auto;
  animation: service-drive 24s linear infinite;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28));
}

.service-vehicle.vehicle-1 { animation-delay: 0s; }
.service-vehicle.vehicle-2 { animation-delay: -4s; }
.service-vehicle.vehicle-3 { animation-delay: -8s; }
.service-vehicle.vehicle-4 { animation-delay: -12s; }
.service-vehicle.vehicle-5 { animation-delay: -16s; }
.service-vehicle.vehicle-6 { animation-delay: -20s; }

.hero-media {
  align-self: end;
  margin-right: -80px;
  min-width: 0;
}

.photo-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.hero-media.photo-panel {
  aspect-ratio: 16 / 9;
  align-self: center;
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.quick-card,
.card,
.product-card,
.quote,
.contact-box {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-card {
  padding: 22px;
}

.icon-card {
  position: relative;
}

.content-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #0d2a52;
  background: #eaf7fa;
  border-radius: 8px;
}

.content-icon .inline-icon {
  width: 24px;
  height: 24px;
}

.quick-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 14px;
}

section {
  padding: 82px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.page-title h1 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.12;
}

.section-head p,
.page-title p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.visual-panel {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #eaf5f8;
  box-shadow: var(--shadow);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.stat strong {
  display: block;
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.blink-stat {
  animation: stat-blink 1.05s ease-in-out infinite;
}

.service-grid,
.product-grid,
.blog-grid,
.district-grid,
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card > img {
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
  text-align: center;
}

.card .content-icon {
  width: 58px;
  height: 58px;
  margin-inline: auto;
  border-radius: 8px;
}

.card .content-icon .inline-icon {
  width: 38px;
  height: 38px;
}

.card h3,
.product-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.25;
}

.card p,
.product-card p,
.quote p {
  margin: 0 0 18px;
  color: var(--muted);
  text-align: center;
}

.text-link {
  align-self: center;
  min-width: 126px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--red);
  border-radius: 24px;
  color: var(--red);
  background: white;
  font-weight: 900;
}

.band {
  background: var(--soft);
}

.home-services .container.wide {
  width: min(1500px, calc(100% - 24px));
}

.home-services .section-head h2 {
  font-size: clamp(30px, 3vw, 42px);
  white-space: nowrap;
}

.home-about .section-head {
  margin-inline: auto;
  text-align: center;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-intro img {
  display: block;
  width: min(460px, 100%);
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-title {
  max-width: none;
}

.faq-title h2 {
  white-space: nowrap;
}

.home-about .section-head h2,
.home-services .section-head h2,
.faq-title h2,
.cta h2,
.trust-band h2 {
  background: linear-gradient(90deg, #e9434a, #f5a623, #20adbf, #173f68, #e9434a);
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 7s linear infinite;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 28px rgba(16, 34, 63, 0.06);
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-section {
  padding: 0;
  background-image: linear-gradient(90deg, rgba(234, 248, 255, 0.94), rgba(248, 253, 255, 0.82)), var(--cta-bg);
  background-size: cover;
  background-position: center right;
}

.cta {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 78px clamp(46px, 8vw, 132px);
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(40px, 14vw, 240px);
  text-align: left;
}

.cta > div {
  width: min(760px, 100%);
  min-width: 0;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 2.8vw, 40px);
  white-space: nowrap;
}

.cta p {
  margin: 0;
  color: #35516f;
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 800;
}

.cta .btn {
  min-width: 148px;
  white-space: nowrap;
}

.trust-band {
  padding: 76px 0;
  color: white;
  background-image: linear-gradient(90deg, rgba(8, 20, 34, 0.78), rgba(8, 20, 34, 0.48)), var(--trust-bg);
  background-size: cover;
  background-position: center;
}

.trust-band .container {
  width: min(1500px, calc(100% - 32px));
}

.trust-band h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  white-space: nowrap;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(38px, 5vw, 82px);
}

.trust-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.quote-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  justify-self: center;
  border-radius: 50%;
  background: #0d2a52;
  color: white;
}

.quote-icon {
  width: 94px;
  height: 94px;
  object-fit: contain;
}

.trust-item h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 24px;
  line-height: 1.15;
  white-space: nowrap;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
  max-width: 360px;
}

.brand-strip {
  overflow: hidden;
  padding: 34px 0;
  background: white;
  border-block: 1px solid var(--line);
}

.brand-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: brand-scroll 34s linear infinite;
}

.brand-chip {
  width: 320px;
  min-width: 320px;
  height: 84px;
  display: grid;
  place-items: center;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.brand-chip img {
  width: auto;
  max-width: 270px;
  height: 52px;
  object-fit: contain;
  display: block;
}

@keyframes gradient-flow {
  from { background-position: 0% 50%; }
  to { background-position: 280% 50%; }
}

@keyframes stat-blink {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(233, 67, 74, 0);
  }
  50% {
    opacity: 0.38;
    text-shadow: 0 0 18px rgba(233, 67, 74, 0.5);
  }
}

@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes service-drive {
  from { transform: translateX(-280px); }
  to { transform: translateX(calc(100vw + 280px)); }
}

.page-hero {
  min-height: clamp(260px, 34vw, 420px);
  display: block;
  color: white;
  background-image: linear-gradient(90deg, rgba(7, 24, 50, 0.9), rgba(7, 24, 50, 0.58) 52%, rgba(7, 24, 50, 0.24)), var(--page-hero-bg, var(--hero-bg));
  background-size: cover;
  background-position: center right;
}

.page-hero .container {
  padding: clamp(54px, 8vw, 90px) 0 clamp(44px, 6vw, 68px);
}

.page-title {
  max-width: 880px;
}

.page-title h1,
.page-title p {
  color: white;
}

.breadcrumbs {
  margin-bottom: 12px;
  color: #bfeaf1;
  font-size: 14px;
  font-weight: 800;
}

.content {
  max-width: 860px;
}

.content h2 {
  margin: 34px 0 12px;
  font-size: 30px;
}

.content p,
.content li {
  color: var(--muted);
}

.content ul {
  padding-left: 20px;
}

.product-card {
  padding: 22px;
}

.product-image {
  height: 190px;
  display: grid;
  place-items: center;
  margin: -4px -4px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eefaff, #f4f6fb);
}

.ac-unit {
  width: min(250px, 82%);
  height: 88px;
  position: relative;
  border-radius: 14px;
  background: white;
  box-shadow: 0 22px 35px rgba(16, 34, 63, 0.14);
}

.ac-unit::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 32px;
  height: 18px;
  border-radius: 10px;
  background: #edf3f8;
}

.ac-unit::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 37px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--blue);
  background: #eaf7fa;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table th,
.spec-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.spec-table th {
  width: 42%;
  background: var(--soft);
}

.logo-grid {
  grid-template-columns: repeat(6, 1fr);
}

.logo-tile {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334766;
  background: white;
  font-weight: 900;
  text-align: center;
}

.quote {
  padding: 24px;
}

.quote strong {
  display: block;
}

.contact-section {
  background-image:
    linear-gradient(115deg, rgba(243, 248, 252, 0.94), rgba(255, 255, 255, 0.86)),
    var(--contact-bg);
  background-size: cover;
  background-position: center right;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: stretch;
}

.contact-info-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

.contact-box {
  padding: 24px;
  height: 100%;
}

.contact-form-box h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.contact-form-box label {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 800;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--muted);
  font-weight: 800;
}

.radio-group input {
  width: 17px;
  min-height: 17px;
  margin: 0;
  accent-color: var(--blue);
}

.kvkk-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.45;
}

.kvkk-check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.contact-grid > :not(.contact-info-stack) .contact-box + .contact-box {
  margin-top: 16px;
}

form {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: white;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-message {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 8px;
  color: #166534;
  background: #ecfdf3;
  font-weight: 800;
}

.form-message.error {
  border-color: rgba(185, 28, 28, 0.25);
  color: #7f1d1d;
  background: #fff1f2;
}

.footer {
  color: #c9d7e8;
  background: #0b1c34;
}

.footer-main {
  display: grid;
  width: min(1500px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1020px) minmax(300px, auto);
  justify-content: space-between;
  gap: clamp(48px, 8vw, 120px);
  padding: 62px 0 42px;
}

.footer-main > div:first-child {
  text-align: left;
}

.footer-main > div:first-child p {
  max-width: 1020px;
  line-height: 1.7;
}

.footer-main > div:last-child {
  justify-self: end;
  min-width: 320px;
}

.footer h3,
.footer h4 {
  color: white;
  margin: 0 0 16px;
}

.footer p,
.footer a {
  color: #c9d7e8;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #90a3bd;
  font-size: 14px;
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--red);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.float-btn.whatsapp {
  background: #0d2a52;
}

.float-btn.phone-float {
  background: #ef3f4f;
}

.float-btn.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #515bd4);
}

.float-btn .inline-icon {
  width: 24px;
  height: 24px;
}

.float-btn.whatsapp .inline-icon {
  width: 42px;
  height: 42px;
  filter: none;
}

.footer-contact {
  gap: 12px;
  margin-bottom: 18px !important;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.footer-contact span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(32, 173, 191, 0.18);
}

.footer-contact .inline-icon {
  width: 19px;
  height: 19px;
  filter: brightness(0) invert(1);
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 18px;
}

.quote-modal.open {
  display: grid;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 38, 0.62);
}

.quote-dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.quote-dialog h2 {
  margin: 0 0 8px;
}

.quote-dialog p {
  margin: 0 0 18px;
  color: var(--muted);
}

.quote-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: #0d2a52;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  .quick-cards,
  .service-grid,
  .product-grid,
  .blog-grid,
  .district-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-top {
    min-height: 92px;
    gap: 20px;
  }

  .header-contact {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    order: 2;
    padding-bottom: 12px;
  }

  .header-top {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
  }

  .contact-item {
    min-height: 58px;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
    white-space: normal;
    font-size: 12px;
    line-height: 1.25;
  }

  .contact-item strong {
    font-size: 13px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 185px;
  }

  .hero {
    background-position: center right;
  }

  .hero .container,
  .split,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-stack {
    grid-template-rows: none;
  }

  .hero .container {
    min-height: auto;
    display: grid;
    padding: 68px 24px;
  }

  .hero-media {
    margin: 0;
  }

  .menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    padding: 12px 18px 18px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .menu.open {
    display: flex;
  }

  .menu a,
  .menu-item > a {
    min-height: 42px;
    padding: 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
    position: static;
    z-index: 40;
    color: white;
    background: #0d2a52;
    border-color: #0d2a52;
  }

  .nav-actions .btn {
    display: inline-flex;
  }

  .cta {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 20px;
  }

  .cta h2,
  .trust-band h2,
  .trust-item h3 {
    white-space: normal;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:last-child {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .quick-cards,
  .service-grid,
  .product-grid,
  .blog-grid,
  .district-grid,
  .stats,
  .footer-main,
  .radio-group {
    grid-template-columns: 1fr;
  }

  .header-top {
    min-height: 76px;
  }

  .header-contact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-item {
    min-height: 46px;
  }

  .brand-logo {
    width: 158px;
  }

  .hero .container {
    min-height: 350px;
    padding: 34px 18px 76px;
  }

  .hero h1 {
    font-size: 34px;
    max-width: 420px;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 350px;
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .home-services .section-head h2,
  .faq-title h2,
  .trust-band h2 {
    white-space: normal;
  }

  section {
    padding: 58px 0;
  }

  .quick-cards {
    margin-top: 18px;
  }

  .cta {
    padding: 28px;
  }

  .page-hero {
    min-height: 310px;
    background-position: center;
  }

  .page-title h1 {
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .page-title p {
    font-size: 15px;
  }

  .trust-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
  }

  .quote-mark {
    width: 72px;
    height: 72px;
  }

  .quote-icon {
    width: 58px;
    height: 58px;
  }

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

  .nav {
    min-height: 62px;
  }
}

/* Responsive hardening */
html,
body {
  max-width: 100%;
}

body,
button,
input,
select,
textarea {
  overflow-wrap: anywhere;
}

.site-header,
.header-top,
.header-menu,
.nav,
.menu,
.nav-actions,
.container,
.split,
.detail-layout,
.contact-grid,
.footer-main,
.cta,
.trust-grid {
  min-width: 0;
}

.section-head h2,
.faq-title h2,
.home-services .section-head h2,
.cta h2,
.trust-band h2,
.trust-item h3 {
  white-space: normal;
}

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

.blog-grid,
.district-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card,
.quick-card,
.quote,
.contact-box,
.logo-tile {
  min-width: 0;
}

.card h3,
.quick-card strong,
.logo-tile,
.contact-box p,
.footer-contact li {
  overflow-wrap: anywhere;
}

.nav {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.menu {
  gap: clamp(14px, 2.2vw, 30px);
  min-width: 0;
}

.nav-actions {
  min-width: 0;
}

.header-contact {
  grid-template-columns: repeat(3, minmax(0, auto));
  min-width: 0;
}

.contact-item {
  min-width: 0;
  white-space: normal;
}

.hero .container {
  min-height: clamp(390px, 42vw, 500px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: min(720px, 100%);
  font-size: clamp(17px, 1.4vw, 20px);
}

.page-hero {
  min-height: clamp(190px, 28vw, 360px);
}

.trust-item p {
  max-width: none;
}

.brand-chip {
  width: clamp(250px, 28vw, 320px);
  min-width: clamp(250px, 28vw, 320px);
}

.quote-dialog {
  max-height: calc(100dvh - 36px);
  overflow: auto;
}

@media (max-width: 1180px) {
  .site-header .container {
    padding-inline: 14px;
  }

  .header-contact {
    gap: 16px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact-item strong {
    font-size: 15px;
  }

  .menu {
    font-size: 12px;
  }

  .btn.quote-btn,
  .btn.btu-btn {
    min-width: auto;
    padding-inline: 14px;
  }
}

@media (max-width: 960px) {
  .service-grid,
  .blog-grid,
  .district-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .header-top {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 10px;
  }

  .header-contact {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    order: 2;
    padding-bottom: 12px;
  }

  .contact-item {
    min-height: 58px;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbfd;
    font-size: 12px;
    line-height: 1.25;
  }

  .contact-item strong {
    font-size: 13px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  .nav-actions {
    gap: 8px;
    padding-left: 10px;
  }

  .btn.quote-btn,
  .btn.btu-btn {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .btu-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 82px;
    width: auto;
    max-height: calc(100dvh - 104px);
    overflow: auto;
    z-index: 90;
  }

  .brand {
    justify-self: center;
  }

  .menu {
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 92px);
    overflow: auto;
  }

  .menu-item {
    width: 100%;
  }

  .menu a,
  .menu-item > a {
    width: 100%;
    justify-content: space-between;
  }

  .hero .container {
    min-height: 390px;
    grid-template-columns: 1fr;
    padding: 48px 24px 82px;
  }

  .service-vehicle-lane {
    bottom: 10px;
    height: 62px;
  }

  .service-vehicle {
    width: 150px;
  }

  .service-area-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-area-container {
    position: relative;
    z-index: 3;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
    padding: 48px 24px 86px 24px;
  }

  .service-area-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-area-content h1 {
    max-width: 520px;
    margin-inline: auto;
  }

  .service-area-content > p {
    max-width: 500px;
    margin-inline: auto;
  }

  .service-area-actions {
    justify-content: center;
  }

  .service-area-hero::before {
    background: linear-gradient(180deg, rgba(238, 247, 255, 0.98) 0%, rgba(238, 247, 255, 0.92) 50%, rgba(238, 247, 255, 0.88) 100%);
  }

  .service-area-card {
    justify-self: center;
    max-width: 380px;
  }

  .footer-main {
    width: min(1180px, calc(100% - 32px));
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main > div:last-child {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .blog-grid,
  .district-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    padding-inline: 12px;
  }

  .brand-logo {
    width: min(128px, 34vw);
  }

  .header-top {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(110px, 34vw) minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header-contact {
    grid-column: 2;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
    order: 0;
    padding-bottom: 0;
  }

  .contact-item {
    min-height: 24px;
    gap: 6px;
    padding: 3px 6px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 1.15;
    overflow: hidden;
    white-space: nowrap;
  }

  .contact-item span:last-child {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-item strong {
    display: inline;
    margin-right: 4px;
    font-size: 10px;
  }

  .contact-icon {
    width: 22px;
    height: 22px;
  }

  .contact-icon .inline-icon {
    width: 13px;
    height: 13px;
  }

  .nav {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    min-height: 54px;
    gap: 8px;
  }

  .menu {
    top: 58px;
  }

  .nav-actions {
    grid-column: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    border-left: 0;
    margin-left: 0;
  }

  .btn.quote-btn,
  .btn.btu-btn {
    min-height: 40px;
    flex: 1 1 0;
    padding: 8px 9px;
    font-size: 11px;
  }

  .btu-panel {
    top: 126px;
    max-height: calc(100dvh - 148px);
  }

  .service-vehicle-lane {
    height: 52px;
  }

  .service-vehicle {
    width: 120px;
  }

  .brand-chip {
    width: 240px;
    min-width: 240px;
  }

  .brand-chip img {
    max-width: 210px;
    height: 44px;
  }

  .hero {
    background-position: 60% center;
  }

  .service-area-hero {
    padding: 42px 0 86px 0;
    background-position: 45% center;
  }

  .service-area-card {
    padding: 16px;
    gap: 8px;
  }

  .service-area-card input,
  .service-area-card select {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .hero .container {
    min-height: 350px;
    padding: 34px 18px 76px;
  }

  .hero h1 {
    font-size: 34px;
    max-width: 420px;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 150px;
  }

  .page-hero {
    min-height: 210px;
  }

  .cta {
    padding: 32px 20px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }
}
