:root {
  --brand-navy: #284567;
  --brand-navy-2: #173455;
  --brand-teal: #66BCC3;
  --brand-teal-soft: #D2EEE4;
  --brand-orange: #FF9E1F;
  --brand-orange-2: #ED7933;
  --cool-blue: #1E88E5;
  --success: #16A34A;
  --whatsapp: #25D366;
  --ink: #102033;
  --muted: #64748B;
  --soft: #F7F9FC;
  --soft-2: #EEF6F8;
  --line: #D9E4EA;
  --white: #FFFFFF;
  --shadow-sm: 0 10px 30px rgba(16, 32, 51, .08);
  --shadow-md: 0 22px 60px rgba(16, 32, 51, .14);
  --shadow-lg: 0 30px 90px rgba(16, 32, 51, .22);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header: 82px;
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

.fas,
.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

.fas,
.fab,
.fa-solid,
.fa-brands {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fa-arrow-right::before { content: "\f061"; }
.fa-bars::before { content: "\f0c9"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-calendar-check::before { content: "\f274"; }
.fa-certificate::before { content: "\f0a3"; }
.fa-check::before { content: "\f00c"; }
.fa-circle-check::before { content: "\f058"; }
.fa-clock::before { content: "\f017"; }
.fa-droplet::before { content: "\f043"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-fan::before { content: "\f863"; }
.fa-filter::before { content: "\f0b0"; }
.fa-instagram::before { content: "\f16d"; }
.fa-location-dot::before,
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-paper-plane::before { content: "\f1d8"; }
.fa-phone::before { content: "\f095"; }
.fa-route::before { content: "\f4d7"; }
.fa-screwdriver-wrench::before,
.fa-tools::before { content: "\f7d9"; }
.fa-shield-alt::before,
.fa-shield-halved::before { content: "\f3ed"; }
.fa-snapchat-ghost::before { content: "\f2ab"; }
.fa-star::before { content: "\f005"; }
.fa-tag::before { content: "\f02b"; }
.fa-triangle-exclamation::before { content: "\f071"; }
.fa-twitter::before { content: "\f099"; }
.fa-whatsapp::before { content: "\f232"; }
.fa-wind::before { content: "\f72e"; }
.fa-xmark::before { content: "\f00d"; }

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(102, 188, 195, .18), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FBFD 46%, #FFFFFF 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .hero-actions,
[dir="rtl"] .emergency-actions,
[dir="rtl"] .header-actions,
[dir="rtl"] .footer-socials,
[dir="rtl"] .reviewer {
  direction: rtl;
}

[dir="rtl"] .section-heading.center,
[dir="rtl"] .areas-grid {
  text-align: center;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 2000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand-navy);
  color: var(--white);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 13px;
  border: 1px solid rgba(102, 188, 195, .35);
  border-radius: 999px;
  background: rgba(210, 238, 228, .55);
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--brand-navy-2);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header);
  border-bottom: 1px solid rgba(217, 228, 234, .78);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 44px rgba(16, 32, 51, .10);
  background: rgba(255, 255, 255, .94);
}

.header-inner {
  width: min(100% - 40px, var(--container));
  min-height: var(--header);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: max-content;
}

.brand-mark {
  width: 70px;
  height: 70px;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.site-footer .brand-mark {
  width: 60px;
  height: 60px;
  padding: 0;
  margin-right: 8px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

[dir="rtl"] .site-footer .brand-mark {
  margin-right: 0;
  margin-left: 8px;
}

.brand-copy {
  margin-top: 5px;
}

.brand-copy strong {
  display: block;
  color: var(--brand-navy-2);
  font-size: 17px;
  line-height: 1.08;
  font-weight: 900;
}

.brand-copy span {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #385069;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--soft-2);
  color: var(--brand-navy);
  transform: translateY(-1px);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--brand-navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-2));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(255, 158, 31, .28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(255, 158, 31, .34);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand-navy);
  border-color: rgba(40, 69, 103, .14);
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  background: var(--brand-navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(40, 69, 103, .24);
}

.btn-ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .24);
  color: var(--white);
}

.mobile-nav {
  display: none;
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header) + 74px) 0 90px;
  isolation: isolate;
  background:
    linear-gradient(120deg, rgba(23, 52, 85, .94) 0%, rgba(40, 69, 103, .88) 44%, rgba(102, 188, 195, .78) 100%),
    url("../images/ac-technician-hero.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(23, 52, 85, .94) 0%, rgba(40, 69, 103, .88) 44%, rgba(102, 188, 195, .78) 100%),
    radial-gradient(circle at 20% 26%, rgba(255, 255, 255, .17), transparent 28%),
    linear-gradient(180deg, transparent 62%, #FFFFFF 100%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: 54px;
}

.hero-content {
  max-width: 690px;
}

.hero-slider {
  position: relative;
  min-height: 355px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  color: #ECFEFF;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

h1 {
  margin: 20px 0 0;
  max-width: 720px;
  font-size: clamp(42px, 6vw, 67px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
}

.hero-content p {
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  max-width: 700px;
}

.metric {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px);
}

.metric strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
}

.hero-card {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--brand-navy);
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}

.hero-card img.active {
  opacity: 1;
  transform: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(16, 32, 51, .78) 100%);
}

.home-service-hero {
  min-height: auto;
  padding: calc(var(--header) + 34px) 0 64px;
}

.home-service-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  align-items: center;
  gap: 42px;
  min-height: 500px;
}

.home-service-hero .hero-slider {
  height: 360px;
  min-height: 360px;
}

.home-service-hero .hero-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-service-hero h1 {
  max-width: 620px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
}

.home-service-hero .hero-content p {
  max-width: 590px;
  font-size: 17px;
  line-height: 1.7;
}

.home-service-hero .hero-actions {
  margin-top: 26px;
}

.home-service-hero .hero-card {
  align-self: center;
  width: 100%;
  height: 430px;
  min-height: 0;
  border-radius: 28px;
}

.home-service-hero + .trust-strip-flat {
  margin-top: -32px;
  padding-top: 0;
  background: transparent;
}

.service-ticket {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.ticket-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-teal), var(--cool-blue));
}

.service-ticket strong {
  display: block;
  color: var(--brand-navy);
  font-size: 17px;
  font-weight: 900;
}

.service-ticket span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.trust-strip-flat {
  margin-top: 0;
  padding-top: calc(var(--header) + 28px);
  background: linear-gradient(180deg, #F8FCFF 0%, #FFFFFF 100%);
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  box-shadow: var(--shadow-md);
}

.trust-item {
  min-height: 102px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, .96);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.trust-item i {
  color: var(--brand-teal);
  font-size: 20px;
}

.trust-item strong {
  color: var(--brand-navy);
  font-size: 14px;
  line-height: 1.2;
}

section {
  padding: 94px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 304px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-orange));
  opacity: 0;
  transition: opacity .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 188, 195, .55);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  background: var(--brand-teal-soft);
  font-size: 22px;
}

.service-card h3 {
  margin: 22px 0 10px;
  font-size: 21px;
  color: var(--brand-navy-2);
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 14px;
}

.service-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 158, 31, .94), rgba(237, 121, 51, .88)),
    url("../images/hvac-inspection.jpg") center/cover no-repeat;
  border-color: transparent;
}

.service-card.featured .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .18);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-link {
  color: var(--white);
}

.brands,
.about,
.team,
.faq {
  padding: 92px 0;
}

.brand-slider-panel {
  overflow: visible;
}

.brand-image-slider {
  position: relative;
  direction: ltr;
  overflow: visible;
  margin-top: 42px;
  padding: 18px 62px;
}

[dir="rtl"] .brand-image-slider {
  direction: ltr;
}

.brand-image-slider:not(.slick-initialized) {
  display: flex;
  gap: 18px;
  overflow-x: auto;
}

.brand-image-slider:not(.slick-initialized) > div {
  flex: 0 0 255px;
}

.brand-image-slider .slick-track {
  display: flex;
  align-items: center;
}

.brand-image-slider .slick-slide {
  height: auto;
  padding: 0 14px;
}

.brand-image-slider .slick-prev,
.brand-image-slider .slick-next {
  width: 46px;
  height: 46px;
  z-index: 2;
  border-radius: 50%;
  border: 1px solid rgba(40, 69, 103, .14);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(40, 69, 103, .16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-image-slider .slick-prev {
  left: 4px;
}

.brand-image-slider .slick-next {
  right: 4px;
}

[dir="rtl"] .brand-image-slider .slick-prev {
  right: auto;
  left: 4px;
}

[dir="rtl"] .brand-image-slider .slick-next {
  right: 4px;
  left: auto;
}

.brand-image-slider .slick-prev:hover,
.brand-image-slider .slick-prev:focus,
.brand-image-slider .slick-next:hover,
.brand-image-slider .slick-next:focus {
  background: var(--brand-navy);
}

.brand-image-slider .slick-prev::before,
.brand-image-slider .slick-next::before {
  content: "";
}

.brand-image-slider .slick-prev::after,
.brand-image-slider .slick-next::after {
  color: var(--brand-navy);
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  opacity: 1;
}

.brand-image-slider .slick-prev::after {
  content: "\f053";
}

.brand-image-slider .slick-next::after {
  content: "\f054";
}

.brand-image-slider .slick-prev:hover::after,
.brand-image-slider .slick-prev:focus::after,
.brand-image-slider .slick-next:hover::after,
.brand-image-slider .slick-next:focus::after {
  color: var(--white);
}

.brand-image-card {
  height: 122px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #F5F8FC;
  box-shadow: var(--shadow-sm);
}

.brand-image-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-point {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #F9FBFE;
  box-shadow: var(--shadow-sm);
}

.about-icon,
.team-avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  background: var(--brand-teal-soft);
  margin-bottom: 18px;
}

.about-point h3,
.team-card h3 {
  margin: 0;
  color: var(--brand-navy-2);
  font-size: 20px;
}

.about-point p,
.team-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.team {
  background: linear-gradient(180deg, #F8FCFF, #FFFFFF);
}

.team-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
}

.team-card {
  flex: 0 0 280px;
  min-height: 300px;
  scroll-snap-align: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.team-card strong,
.team-card span {
  display: block;
  margin-top: 8px;
  color: var(--brand-navy);
  font-weight: 900;
}

.team-card span {
  color: var(--brand-orange-2);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: calc(var(--header) + 20px);
  padding: 28px;
  border-radius: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 15%, rgba(102, 188, 195, .42), transparent 34%),
    linear-gradient(135deg, var(--brand-navy-2), var(--brand-navy));
  box-shadow: var(--shadow-md);
}

.faq-aside > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .14);
  font-size: 22px;
}

.faq-aside h3 {
  margin: 22px 0 10px;
  font-size: 24px;
}

.faq-aside p {
  color: rgba(255, 255, 255, .78);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--brand-navy-2);
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand-orange-2);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

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

.page-hero {
  position: relative;
  padding: calc(var(--header) + 34px) 0 64px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 52, 85, .95), rgba(40, 69, 103, .9) 52%, rgba(102, 188, 195, .78)),
    url("../images/ac-building-units.webp") center/cover no-repeat;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  min-height: 500px;
  gap: 42px;
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 620px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.02;
}

.page-hero-copy p {
  max-width: 590px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.7;
}

.page-hero-card {
  align-self: center;
  width: 100%;
  height: 430px;
  min-height: 0;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.page-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-services {
  background: linear-gradient(180deg, var(--soft) 0%, #FFFFFF 100%);
}

.why {
  background: linear-gradient(180deg, var(--soft) 0%, #FFFFFF 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 58px;
}

.image-stack {
  position: relative;
}

.image-stack .main-photo {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
}

.floating-proof {
  position: absolute;
  right: -22px;
  bottom: 30px;
  width: min(280px, 72%);
  padding: 20px;
  border: 1px solid rgba(217, 228, 234, .88);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-md);
}

.floating-proof strong {
  display: block;
  color: var(--brand-navy);
  font-size: 28px;
  line-height: 1;
}

.floating-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.why-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 32, 51, .05);
}

.why-check {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--brand-navy);
  background: var(--brand-teal-soft);
}

.why-item h3 {
  margin: 0 0 4px;
  color: var(--brand-navy-2);
  font-size: 17px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(102, 188, 195, .35), transparent 30%),
    linear-gradient(135deg, var(--brand-navy-2), var(--brand-navy));
}

.process .section-heading h2,
.process .section-heading p {
  color: var(--white);
}

.process .section-heading p {
  opacity: .75;
}

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

.step {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--brand-orange);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(255, 158, 31, .25);
}

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

.step p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #F59E0B;
  letter-spacing: 1px;
}

.review-text {
  margin: 18px 0;
  color: #385069;
  font-size: 16px;
  font-style: italic;
}

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

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand-teal-soft);
  color: var(--brand-navy);
  font-weight: 900;
}

.reviewer-name {
  color: var(--brand-navy-2);
  font-weight: 900;
  line-height: 1.1;
}

.reviewer-loc {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.emergency {
  padding: 0;
}

.emergency-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(237, 121, 51, .95), rgba(40, 69, 103, .94)),
    url("../images/ac-technician-hero.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.emergency-copy {
  padding: 48px;
}

.emergency-copy h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.emergency-copy p {
  margin: 16px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.emergency-photo {
  height: 100%;
  min-height: 340px;
  background: url("../images/technician-tools.jpg") center/cover no-repeat;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(102, 188, 195, .36);
  border-radius: 999px;
  background: rgba(210, 238, 228, .48);
  color: var(--brand-navy);
  font-weight: 900;
  font-size: 14px;
}

.contact {
  background: linear-gradient(180deg, var(--soft) 0%, #FFFFFF 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.contact-info,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-md);
}

.contact-info {
  overflow: hidden;
}

.contact-cover {
  min-height: 230px;
  background:
    linear-gradient(180deg, rgba(16, 32, 51, .08), rgba(16, 32, 51, .62)),
    url("../images/contact-ac-service.jpg") center 42%/cover no-repeat;
}

.contact-info-body {
  padding: 28px;
}

.contact-info h2,
.contact-form h2 {
  margin: 0 0 18px;
  color: var(--brand-navy-2);
  font-size: 24px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand-navy);
}

.icon-wrap-whatsapp {
  background: #25D366;
}

.contact-list h3 {
  margin: 0 0 2px;
  font-size: 15px;
  color: var(--brand-navy-2);
}

.contact-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  padding: 34px;
}

.contact-map {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-md);
}

.map-copy h2 {
  margin: 0;
  color: var(--brand-navy-2);
  font-size: 24px;
}

.map-copy p {
  color: var(--muted);
}

.map-copy span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-navy);
  font-weight: 900;
}

.contact-map iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: #385069;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #F9FBFE;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(102, 188, 195, .16);
}

.btn-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brand-navy), #1E5A86);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 18px 38px rgba(40, 69, 103, .22);
}

.btn-submit:hover,
.btn-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(40, 69, 103, .28);
  outline: none;
}

.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, .74);
  background: #102033;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.site-footer .brand-copy strong {
  color: var(--white);
}

.site-footer .brand-copy span,
.footer-brand p,
.footer-bottom p {
  color: rgba(255, 255, 255, .56);
}

.footer-brand p {
  max-width: 390px;
  margin: 16px 0 0;
  font-size: 15px;
}

.footer-col h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

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

.footer-links a {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-teal);
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
}

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

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
  color: var(--white);
  background: var(--brand-teal);
  transform: translateY(-2px);
  outline: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--whatsapp);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .38);
  animation: pulse 2.6s ease-in-out infinite;
  transition: transform .2s ease;
}

.whatsapp-float i {
  font-size: 29px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08);
  outline: none;
}

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

.sticky-mobile-cta a {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  display: grid;
  place-items: center;
  gap: 4px;
}

.sticky-mobile-cta i {
  font-size: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 16px 34px rgba(37, 211, 102, .36);
  }

  50% {
    box-shadow: 0 16px 44px rgba(37, 211, 102, .62);
  }
}

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

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

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header) 18px auto;
    z-index: 999;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 13px 14px;
    border-radius: 14px;
    color: var(--brand-navy);
    font-weight: 900;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: var(--soft-2);
    outline: none;
  }

  .hero-grid,
  .page-hero-grid,
  .why-layout,
  .about-layout,
  .contact-layout,
  .contact-map,
  .emergency-panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 470px;
  }

  .page-hero-card {
    min-height: 420px;
  }

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

  .services-grid,
  .reviews-grid,
  .about-points {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .faq-aside {
    position: static;
  }

  .emergency-photo {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 74px;
  }

  body {
    padding-bottom: 84px;
  }

  .container,
  .header-inner {
    width: min(100% - 28px, var(--container));
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy span {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header) + 46px) 0 70px;
  }

  .home-service-hero {
    padding: calc(var(--header) + 30px) 0 48px;
  }

  .home-service-hero .hero-grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-service-hero .hero-content {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .hero-actions,
  .emergency-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .metric {
    padding: 14px;
  }

  .hero-card {
    min-height: 390px;
    border-radius: 26px;
  }

  .home-service-hero .hero-slider {
    height: auto;
    min-height: 0;
  }

  .home-service-hero .hero-slide {
    position: relative;
    display: none;
    inset: auto;
    width: 100%;
    min-height: 0;
    min-width: 0;
  }

  .home-service-hero .hero-slide.active {
    display: flex;
  }

  .home-service-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.4vw, 42px);
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-service-hero .hero-content p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.65;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-service-hero .hero-kicker {
    max-width: 100%;
    white-space: normal;
  }

  .home-service-hero .hero-card {
    display: none;
  }

  .page-hero {
    padding: calc(var(--header) + 34px) 0 56px;
  }

  .page-hero-grid {
    min-height: auto;
  }

  .page-hero-card {
    height: 330px;
    min-height: 0;
    border-radius: 24px;
  }

  .service-ticket {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .trust-strip-flat {
    margin-top: 0;
    padding-top: calc(var(--header) + 22px);
  }

  .home-service-hero + .trust-strip-flat {
    margin-top: -22px;
    padding-top: 0;
  }

  .trust-panel,
  .services-grid,
  .reviews-grid,
  .about-points,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 70px 0;
  }

  .hero-slider {
    min-height: 360px;
  }

  .home-service-hero .hero-slider {
    height: auto;
    min-height: 0;
  }

  .brands,
  .about,
  .team,
  .faq {
    padding: 70px 0;
  }

  .team-slider {
    mask-image: none;
  }

  .brand-image-slider {
    padding-right: 0;
    padding-left: 0;
    mask-image: none;
  }

  .brand-image-card {
    flex-basis: 220px;
    height: 106px;
  }

  .contact-map {
    padding: 18px;
  }

  .image-stack .main-photo {
    min-height: 390px;
  }

  .floating-proof {
    position: static;
    width: auto;
    margin: -58px 16px 0;
  }

  .emergency-copy,
  .contact-form,
  .contact-info-body {
    padding: 24px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    display: none;
  }

  .sticky-mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 980;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-2));
    box-shadow: 0 18px 44px rgba(16, 32, 51, .24);
  }

  .sticky-mobile-cta a {
    min-height: 58px;
    background: rgba(255, 255, 255, .07);
  }
}
