/* ============================================================
   Precision Aluminum — main.css
   All custom fonts, base styles, and section-specific styles
   ============================================================ */

/* ─── FONTS ──────────────────────────────────────────────── */

@font-face {
    font-family: 'HelveticaNeueLTW01-45Light';
    src: url('../fonts/HelveticaNeueLTW01-45Light.woff2') format('woff2'),
         url('../fonts/HelveticaNeueLTW01-45Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaLTW04-Roman';
    src: url('../fonts/HelveticaLTW04-Roman.woff2') format('woff2'),
         url('../fonts/HelveticaLTW04-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Text VF';
    src: url('../fonts/WixMadeforTextVF-Regular.woff2') format('woff2'),
         url('../fonts/WixMadeforTextVF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Text VF';
    src: url('../fonts/WixMadeforTextVF-Italic.woff2') format('woff2'),
         url('../fonts/WixMadeforTextVF-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirLTW01-85Heavy';
    src: url('../fonts/AvenirLTW01-85Heavy.woff2') format('woff2'),
         url('../fonts/AvenirLTW01-85Heavy.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirLTW05-85Heavy';
    src: url('../fonts/AvenirLTW05-85Heavy.woff2') format('woff2'),
         url('../fonts/AvenirLTW05-85Heavy.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lobster';
    src: url('../fonts/Lobster-Regular.woff2') format('woff2'),
         url('../fonts/Lobster-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces 120pt';
    src: url('../fonts/Fraunces120pt-SemiBold.woff2') format('woff2'),
         url('../fonts/Fraunces120pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces 120pt';
    src: url('../fonts/Fraunces120pt-SemiBoldItalic.woff2') format('woff2'),
         url('../fonts/Fraunces120pt-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────── */

:root {
  --font-primary: 'HelveticaLTW04-Roman', Helvetica, sans-serif;
  --font-heading: "Times New Roman", Times, serif;
  --container-max: 1500px;
  --container-pad: 30px;
  --text-white: #ffffff;
  --text-light: #f3f3f3;
  --text-dark: #030303;
  --text-muted: #030303;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
  --overlay: rgba(0, 0, 0, 0.32);
  --overlay-strong: rgba(0, 0, 0, 0.48);
}

/* ─── RESET ─────────────────────────────────────────────── */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 20px;
}
body.open-menu {
    overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

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

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  font-family: var(--font-primary);
}

button,
[role="button"] {
  cursor: pointer;
}

ul,
ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #030303;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 20px;
}

p {
  color: #030303;
  margin: 0 0 20px;
}

section {
  position: relative;
}

/* ─── ANIMATIONS ────────────────────────────────────────── */

.fade-in {
  transition: 0.5s all ease, 1s opacity ease;
  opacity: 0;
  position: relative;
}

.fade-in.onView {
  opacity: 1;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container-max);
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  margin: 0 auto;
}

/* ─── HEADER ─────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 84px;
  z-index: 20;
  transition: 0.5s all;
}

.navbar,
.hero-content {
  position: relative;
  z-index: 2;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19.2px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8.8px;
  font-size: 12.48px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
      transition: 0.5s all;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--text-light);
  font-family: Arial, Helvetica, sans-serif;
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: " \25be";
  font-size: 0.7em;
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  min-width: 190px;
  background: rgba(255, 255, 255, 100);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 12;
}

.dropdown-menu li a {
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  color: #000;
}

.dropdown-menu li a:hover {
  background: rgb(0 0 0 / 12%);
}

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


.hide-header {
    transform: translateY(-100%);
}

.site-header.sticky  {
    min-height: auto;
    background: rgb(255 255 255 / 74%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
 
body:not(.home) header.site-header.normal-header {
     background: #FFF;
    }
.site-header.sticky .nav-links > li > a,
header.site-header.normal-header .nav-links > li > a{
    color: #030303;
}

.site-header.sticky a.btn-light,
header.site-header.normal-header a.btn-light{
    background: #030303;
    color: #FFF;
}

.site-header.sticky a.btn-light:hover,
header.site-header.normal-header a.btn-light:hover{
    background: #FFF;
    color: #030303;
    border-color: #030303;
}
 

 

.site-header.sticky img.site-logo {
    width: 80px;
    height: 80px;
}
.site-header.sticky .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */

.btn,
.btn-light,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6b7280;
  border-radius: 0;
  background: #fff;
  color: #111827;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  padding: 10px 20px 12px 20px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.service-card-body .btn{  font-size: 16px;}
.is-btn {
  display: inline-block;
  margin-top: 20px;
}

.btn:hover {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, 0.88);
  color: #2f2f2f;
  border: 1px solid transparent;
}

.btn-light:hover {
  background: #fff;
}
.btn-light span.text {}

.btn-light span.text + span.arrow, .footer-quote-btn span.text + span.arrow{display: block;width: 23px;padding: 0 11px;font-size: 24px;}

.btn span.text + span.arrow,
 .footer-quote-btn span.text + span.arrow{
    width: 16px;
    position: relative;
}

.btn span.text + span.arrow i,
.footer-quote-btn span.text + span.arrow i {
    font-size: 14px;
 
    transform: rotate(0deg);
    position: relative;
    transition: all 0.3s;
    top: 0;
    left: 3px;
}

.btn:hover span.text + span.arrow i,
.footer-quote-btn:hover span.text + span.arrow i {
    left: 7px;
}
/* ─── HERO / BANNER ─────────────────────────────────────── */

.banner {
  position: relative;
  min-height: 100vh;
  background: url('../images/banner-bg.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  color: var(--text-white);
      padding-top: 130px;
}
.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    height: 150px;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.4;
        top: 0;
}
.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
} 

.site-header .overlay,
.banner .overlay {
  z-index: 1;
}

.header-overlay,
.banner-overlay {
  background: linear-gradient(to bottom, var(--overlay-strong) 0%, var(--overlay) 45%, var(--overlay) 100%);
}


.banner-overlay {background:linear-gradient(to bottom, var(--overlay-strong) 0%, rgb(0 0 0 / 60%) 45%, rgb(0 0 0 / 60%) 100%);}
.hero-content {
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
  padding: 48px 30px;
}

.hero-content h1 {
  text-transform: uppercase;
  font-size: clamp(1.6875rem, 0.3875rem + 5.3333vw, 5.1875rem);
  line-height: 0.95;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #fff;
  font-family: 'AvenirLTW01-85Heavy';
}

.hero-content h1 span {
  font-family: "Times New Roman", Times, serif;
font-size: clamp(4.1875rem, 2.0286rem + 8.8571vw, 10rem);
}

.hero-content p {
  font-size: clamp(20px, 2vw, 33.6px);
  color: #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-content p span {
  opacity: 0.9;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.hero-content a.btn {
  color: #000;
  border-color: #000;
  background: #fff;
  text-transform: uppercase;
}

.hero-content a.btn:hover {
  background: #000;
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  color: #fff;
  width: 42px;
  height: 42px;
  font-size: 18.4px;
  cursor: pointer;
}
.home .site-header:not(.sticky) button[aria-expanded="false"] {
    color: #ffffff;
    border-color: rgb(255 255 255);
}
/* ─── SERVICES ──────────────────────────────────────────── */

.services-section {
  padding: 88px 0 80px;
  background: #f3f5f7 url('../images/water.png') center center / cover no-repeat;
  position: relative;
}

.services-section::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 0;
  opacity: 0.6;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-heading {
  margin-bottom: 35.2px;
  text-align: center;
}

.services-heading h2 {
 font-size: clamp(1.875rem, 0.9929rem + 3.619vw, 4.25rem);
  color: #0f172a;
  font-weight: 500;
  line-height: 1.06;
}

.services-heading p {
  margin-top: 14.4px;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.11em;
 font-size: clamp(1.625rem, 1.4857rem + 0.5714vw, 2rem);
  font-weight: 700;
  font-family: 'AvenirLTW05-85Heavy';
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.service-card {
  background: #eef1f4;
  border: 0px solid #b8bec8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:0 6px 16px rgb(15 23 42 / 50%);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
	    max-height: 670px;
}

.service-card:nth-child(1) img { object-position: center 65%; }
.service-card:nth-child(2) img { object-position: center 45%; }
.service-card:nth-child(3) img { object-position: center 55%; }
.service-card:nth-child(4) img { object-position: right center; }

.service-card-body {
    padding: 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    background: #eaeced;
}

.service-card-body h3 {
  font-family: 'AvenirLTW05-85Heavy';
  font-size: clamp(1.375rem, 1.1691rem + 0.7843vw, 1.875rem);
  line-height: 0.95;
  color: #111827;
  font-weight: 700;
  min-height: 58px;
}

.services-section .service-card-body .is-btn {
  display: block;
  width: 100%;
  margin-top: 0;
}

/* ─── TRUST STRIP ────────────────────────────────────────── */

.trust-strip {
  background: #FFF;
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19.2px;
  align-items: start;
}

.trust-item {
  text-align: center;
}

.trust-item svg{
  width: auto;
  height:75px;
  margin:0 auto 15px;
}

.trust-icon {
  width: 90px;
  height: 90px;
  border: 1px solid #7e332c;
  border-radius: 50%;
  margin: 0 auto 10.4px;
  display: grid;
  place-items: center;
  color: #2c2c2c;
 color: #7e332c;
	
  font-size: 35px;
  line-height: 1;
}

.trust-item p {
      font-family: 'AvenirLTW05-85Heavy';
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  max-width: 290px;
  margin-right: auto;
  margin-left: auto;
      margin-bottom: 0;
}

/* ─── WHY PRECISION ──────────────────────────────────────── */

.why-precision {
  background: #f3f3f3;
}

.why-precision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.why-content {
  padding: 57.6px clamp(22.4px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-kicker {
  font-family: 'AvenirLTW05-85Heavy';
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7e332c;
  font-size: clamp(22px, 2.2vw, 48px);
  font-weight: 600;
}

.why-content h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: #636363;
  line-height: 0.88;
  font-size: clamp(44.8px, 7vw, 115.2px);
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 #3f3f3f;
}

.why-list {
  margin-top: 21.6px;
  margin-left: 0px;
  display: grid;
  gap: 3.2px;
  color: #7e332c;
}

.why-list li {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 34.4px);
  line-height: 1.1;
	    margin-bottom: 10px;
}
.why-list {
    list-style: none;
    margin-bottom: 15px;
}

.why-list li:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7e332c;
    left: 0;
    top: 50%;
    transform: translate(0px, -50%);
}

.why-list li {
    position: relative;
    padding-left: 25px;
}
/* ─── EASY STEPS ─────────────────────────────────────────── */

.easy-steps {
  background: #FFF;
  padding: 44.8px 0 41.6px;
}

.easy-steps h2 {
  font-family: 'Lobster';
  font-size: clamp(2.5rem, -0.0536rem + 10.4762vw, 9.375rem);
  color: #2b2b2b;
  line-height: 0.9;
  margin-bottom: 30px;
	    font-family: var(--font-heading);
  
}

.easy-steps-grid {
display: flex;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    justify-content: space-around;
}

.easy-step {
  display: flex;
  align-items: center;
  gap: 12.8px;
}

.step-number {
    font-family: 'Fraunces 120pt';
    font-size: clamp(6.25rem, 1.6071rem + 19.0476vw, 18.75rem);
    line-height: 0.8;
    font-weight: 800;
}
.step-number span {
    color: #f3f3f3;
    background: url(../images/text-bg.jpeg) center center / cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}
span.step-number:after {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 0;
    content: attr(data-number);
    text-shadow: 0px 0px 15px #0000007d;
}
.easy-step p {
  color: #111827;
      font-family: 'AvenirLTW05-85Heavy';
  font-size: clamp(24px, 2.2vw, 50.4px);
  line-height: 0.95;
      margin-bottom: 0;
	font-size: clamp(1.5rem, 0.4972rem + 2.0864vw, 2.375rem);
}

/* ─── PROJECTS SLIDER ─────────────────────────────────────── */

.projects-section {
  background: #FFF;
  padding: 54.4px 0 64px;
}

.projects-heading {
  text-align: center;
  margin-bottom: 50px;
}

.projects-heading h2 {
  text-transform: uppercase;
  color: #7e332c;
  font-size: clamp(35px, 4.5vw, 60px);
	font-family: 'AvenirLTW05-85Heavy';
}

.projects-heading p {
      font-family: 'AvenirLTW05-85Heavy';
  font-size: clamp(1.5rem, 1.175rem + 1.3333vw, 2.375rem);
  text-transform: uppercase;
  line-height: 1.3;
}

.projects-slider-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.projects-main-slider .slick-slide {
  margin: 0;
}

.project-slide {
  position: relative;
  overflow: hidden;
}

.project-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.project-photo {
  width: 100%;
  height: clamp(300px, 44vw, 550px);
      object-fit: cover;
}

.project-video {
  width: 100%;
  height: clamp(300px, 44vw, 550px);
  object-fit: cover;
  background: #000;
  cursor: pointer;
}

.project-slide:has(.project-video)::before {
  content: "\25b6";
  position: absolute;
  right: 19.2px;
  top: 17.6px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.project-caption {
  position: absolute;
  left: 32px;
  bottom: 25.6px;
  z-index: 3;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-caption p {
  color: #fff;
  font-family: var(--font-primary);
  font-size: clamp(14.4px, 1.25vw, 20px);
  font-weight: 600;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
}
.project-slide:hover{
	cursor:pointer;
}
.project-slide:hover::after { opacity: 1; }
.project-slide:hover .project-caption { opacity: 1; transform: translateY(0); }

.project-photo-1 { object-position: center 55%; }
.project-photo-2 { object-position: center 40%; }
.project-photo-3 { object-position: center 65%; }
.project-photo-4 { object-position: right center; }
.project-photo-5 { object-position: left center; }
.project-photo-6 { object-position: center center; }

.projects-main-slider .slick-arrow {
  z-index: 5;
  width: 46px;
  height: 46px;
}

.projects-main-slider .slick-prev { left: 14px; }
.projects-main-slider .slick-next { right: 14px; }

.projects-main-slider .slick-arrow {
    background: hsl(0deg 0% 100% / 90%);
    border-radius: 50%;
}

.projects-main-slider .slick-arrow:after {
    content: '';
    display: block;
    margin: 30px auto;
    width: 12px;
    height: 12px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: rotate(135deg);
    position: absolute;
    top: -14px;
    left: 14px;
}

.projects-main-slider .slick-arrow:before {
    display: none;
}

.projects-main-slider button.slick-prev.slick-arrow {
    transform: rotate(180deg);
}

.projects-main-slider .slick-arrow:hover {
    background: #FFF;
}

.projects-main-slider .slick-prev::before,
.projects-main-slider .slick-next::before {
  font-size: 46px;
  color: rgba(255, 255, 255, 0.9);
}

.projects-thumb-slider {
  margin-top: 13.6px;
      margin-left: -3px;
    margin-right: -5px;
}

.projects-thumb-slider .slick-slide {
  padding: 0 4.8px;
}

.project-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid transparent;
  opacity: 0.85;
  cursor: pointer;
}

.is-video-thumb {
  position: relative;
}

.projects-thumb-slider .slick-current .project-thumb {
  border-color: #000000;
  opacity: 1;
}

.projects-thumb-slider .slick-slide:has(.is-video-thumb) {
  position: relative;
}

.projects-thumb-slider .slick-slide:has(.is-video-thumb)::after {
  content: "\25b6";
  position: absolute;
  right: 10.4px;
  bottom: 9.6px;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11.2px;
}

/* ─── CALLOUT SECTION ─────────────────────────────────────── */

.pool-enclosures-callout {
  background: #f4f4f4;
}

.pool-callout-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
}

.pool-enclosures-callout.img-right .pool-callout-media { order: 2; }
.pool-enclosures-callout.img-right .pool-callout-content { order: 1; }

.pool-callout-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
	    max-height: 550px;
}

.pool-callout-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 448px;
}

.pool-callout-content .is-title {
  font-size: clamp(35.2px, 7.2vw, 80px);
  text-transform: uppercase;
  line-height: 1.1;
 
  color: #111827;
}
.pool-callout-content .is-btn {
    margin-top: 10px;
}

.pool-video-title {
  position: relative;
  display: inline-block;
  isolation: isolate;
  margin-bottom: 5.6px;
}

.pool-video-title .is-title {
  position: relative;
  z-index: 2;
  color: #000;
	    line-height: 1;
}

.pool-callout-content p {
  color: #111827;
}

/* ─── BENEFITS ────────────────────────────────────────────── */

.benefits-section {
  background: #ececec;
  padding: 50px 0;
}

.benefits-section h2 {
  text-align: center;
  font-size: clamp(35px, 4.5vw, 60px);
}

.benefits-grid {
  display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.benefit-item h3 {
  font-family: 'HelveticaLTW04-Roman';
  text-transform: uppercase;
  color: #111827;
  font-size: 22.4px;
  line-height: 1.2;
}

/* ─── INSTALLATION PROCESS ───────────────────────────────── */

.installation-process {
  background: #e7f9ff;
  padding: 50px 0;
}

.installation-process h2 {
  text-align: center;
  margin: 0 0 30px;
  font-size: clamp(35px, 4.5vw, 60px);
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19.2px;
}

.install-item {
  text-align: center;
  padding: 0 6.4px;
}

.install-step {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #7e332c;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-family: 'HelveticaLTW04-Roman';
  font-size: 36px;
  line-height: 1;
  margin-bottom: 20px;
}

.install-item h3 {
  font-family: 'HelveticaLTW04-Roman';
  font-size: clamp(23.2px, 2vw, 30px);
  text-transform: uppercase;
  line-height:1.3;
  color: #111827;
  margin-bottom: 10px;
}

/* ─── SERVICE AREA ────────────────────────────────────────── */

.service-area-section {
  background: #FFF;
  padding: 50px 0;
	    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-area-section h2 {
  text-align: center;
  margin: 0 0 30px;
  font-size: clamp(35px, 4.5vw, 60px);
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 25.6px;
  align-items: center;
}
.service-area-section .service-area-map {
    margin: 0 -70px;
}
.service-area-highlight p {
  font-family: 'AvenirLTW05-85Heavy';
  font-size: clamp(23.2px, 2.7vw, 40px);
  line-height: 0.98;
  color: #1f2937;
}

.service-area-highlight span {
  color: #7e332c;
}

.service-area-copy {
  color: #111827;
  font-size: clamp(16.8px, 2.2vw, 30.4px);
  line-height: 1.05;
  max-width: 26ch;
  font-family: 'Wix Madefor Text VF';
}

.service-area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0px 10px;
  margin-top: 16px;
}

.service-area-map {
  min-height: 230px;
  position: relative;
}

.state-block {
  position: absolute;
  display: block;
  border-radius: 8px;
}

.state-la {
  width: 120px;
  height: 86px;
  background: #d8a8a8;
  left: 22px;
  top: 82px;
  clip-path: polygon(0 32%, 86% 32%, 86% 0, 100% 0, 100% 68%, 82% 68%, 72% 100%, 0 100%);
}

.state-al {
  width: 78px;
  height: 162px;
  background: #87332c;
  left: 142px;
  top: 22px;
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.state-fl {
  width: 232px;
  height: 132px;
  background: #87332c;
  left: 208px;
  top: 106px;
  clip-path: polygon(0 20%, 34% 20%, 38% 12%, 50% 12%, 55% 26%, 84% 24%, 100% 36%, 98% 48%, 76% 54%, 70% 60%, 54% 62%, 42% 74%, 28% 88%, 8% 96%, 0 76%);
}
section.custom-content-section {
    padding: 90px 0;
    background: #FFF;
}
/* ─── FOOTER ─────────────────────────────────────────────── */

.site-footer {
  background: #f5f5f5;
  padding: 50px 0;
  font-size: 16px;
  color: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  justify-items: start;
}

.footer-brand .footer-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 16px;
	display: inline-block;
}

.footer-brand p {
  color: inherit;
	    font-size: 14px;
}

.footer-quote-btn {
  display: inline-block;
  padding:11px 16px;
  background: #7e332c;
  color: #fff;
  border-radius: 6px;
  margin-top: 20px;
  margin-bottom: 16px;
  border: 1px solid #7e332c;
      display: inline-flex;
    align-items: center;
    justify-content: center;
	    transition: all 0.5s;
}
.footer-quote-btn span.text + span.arrow {
top: 0;
    left: 4px;
    padding: 0;
    width: 20px;
}
.footer-quote-btn span.text + span.arrow svg {
    width: 30px;
    display: block;
    height: auto;
}
.footer-quote-btn svg path {stroke: #FFF;}
.footer-quote-btn:hover svg path {stroke: #7e332c;}

.footer-quote-btn:hover {
  background-color: #fff;
  color: #7e332c;
}

.footer-contact h3 {
  position: relative;
  color: inherit;
  text-transform: uppercase;
}

.footer-contact ul,
.footer-links ul,
.footer-policies ul {
  list-style: none;
}

.footer-contact li {
  color: inherit;
  margin-bottom: 4.48px;
}

.footer-links { justify-self: start; }

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: inherit;
}

.footer-policies {
  margin-top: 0;
  justify-self: start;
}

.footer-policies a {
  display: inline-block;
  margin-bottom: 6px;
  font-family: 'HelveticaLTW04-Roman';
}
.footer-links a:hover, .footer-policies a:hover, .footer-contact  a:hover{
    color: #7e332c;
}

/* ─── LIGHTBOX ────────────────────────────────────────────── */

.project-lightbox {
  position: fixed;
  inset: 0;
  background: #efefef;
  z-index: 1200;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 36.8px 32px 28.8px;
}

.project-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-expand {
  position: absolute;
  top: 13.6px;
  left: 15.2px;
  border: none;
  background: transparent;
  color: #1d1d1d;
  font-size: 16px;
  line-height: 1;
}

.lightbox-close {
  position: absolute;
  top: 10.4px;
  right: 16px;
  border: none;
  background: transparent;
  color: #202020;
  font-size: 33.6px;
  line-height: 1;
}

.lightbox-content {
  width: min(1120px, calc(100vw - 112px));
  margin: 0 auto;
  min-height: calc(100vh - 73.6px);
  display: flex;
  align-items: center;
  gap: clamp(20.8px, 4vw, 64px);
	    justify-content: center;
}

.lightbox-image {
  width: min(620px, 55vw);
  max-height: 78vh;
  object-fit: cover;
  object-position: center;
}

.lightbox-video {
  width: min(620px, 55vw);
  max-height: 78vh;
  background: #000;
  display: none;
}

.lightbox-caption {
color: #111827;
    font-size: 13.12px;
    font-family: var(--font-primary);
    align-self: flex-start;
    margin-top: 51.2px;
    flex: 1;
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    margin-bottom: 25px;
	    bottom: 0;
	    font-weight: bolder;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #202020;
  font-size: 52.8px;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
}

.lightbox-prev { left: 7px; }
.lightbox-next { right: 7px; }

body.lightbox-open {
  overflow: hidden;
}

/* form  */
.estimate-section {
    width: 100%;
    background: #FFF;
}

.estimate-container {
    display: flex;
    min-height: 620px;
}

.estimate-image {
    position: absolute;
    width: 50%;
    left: 0;
    top: 0;
    height: 100%;
}

.estimate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.estimate-form {
    width: 50%;
    padding: 50px 0px 50px 45px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: auto;
}

.estimate-form h2 {
    font-size: 28px;
	    font-family: 'AvenirLTW05-85Heavy';
}

.form-placeholder {
    border: 2px dashed #bdbdbd;
    background: #fff;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}
body .wpforms-container {
    padding: 0 !important;
    margin: 0 !important;
} 
.wpforms-container .wpforms-form {}

.wpforms-container .wpforms-form .wpforms-field {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 20px;
}
.wpforms-container .wpforms-form .wpforms-field.w-100 {
    width: 100%;
}
.wpforms-container .wpforms-form .wpforms-field em.wpforms-error {
    margin-top: 5px;
}

.wpforms-container .wpforms-form .wpforms-field-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0px;
    margin: 0 -15px;
}

.wpforms-container .wpforms-form .wpforms-field label.wpforms-field-label {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
}

.wpforms-container .wpforms-form .wpforms-field input[type=text], .wpforms-container .wpforms-form .wpforms-field input[type=email],
.wpforms-container .wpforms-form .wpforms-field input[type=number] {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    font-size: 16px;
    padding: 11px 10px;
    height: auto;
        appearance: none;
}
.wpforms-container .wpforms-form .wpforms-submit-container button[type=submit] {
     background-color: #7e332c !important;
    border-radius: 0;
    font-size: 16px;
    padding: 10px 40px;
    text-transform: uppercase;
    line-height: 1.5;
    height: auto;
}

body .gform_wrapper label.gfield_label {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 16px;
}

body .gform_wrapper input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
    padding: 2px 10px;
    height: auto;
    border-color: #bfbfbf;
    border-radius: 0;
    font-size: 16px;
}
body .gform_wrapper .gfield--type-checkbox legend.gfield_label.gform-field-label.gfield_label_before_complex {
    display: block;
    font-weight: 700;
    font-style: normal;
    word-break: break-word;
    word-wrap: break-word;
    font-size: 16px;
    margin-bottom: 20px;
}

body .gform-theme--foundation .gform_fields {
    grid-row-gap: 25px;
}

body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
    background-color: #7e332c !important;
    border-radius: 0;
    font-size: 16px !important;
    padding: 14px 34px !important;
    text-transform: uppercase !important;
    line-height: 1.5;
    border-radius: 0 !important;
    height: auto !important;
    max-height: initial !important;
    outline: none !important;
    border: 0 !important;
}
body .gform-theme.gform-theme--framework.gform_wrapper .button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover{
    background:#652923 !important;
}
body .gform-theme--foundation .gfield textarea.small {
    border-radius: 0;
}
body .gform-theme--framework .gform_validation_errors {
    display: none !important; 
}
body .gform_confirmation_message {
    color: #008d00 !important;
}
/* contact-section */
.contact-section {
    padding: 80px  0px;
    background: #f5f5f5;
}

.contact-container {
    margin: auto;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT SIDE */

.contact-info {
    padding-right: 20px;
}
.contact-section span.fom-title {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}
.contact-title {
    color: #7e332c;
    line-height: 0.8;
    margin-bottom: 10px;
    font-size: clamp(2.25rem, 1.2857rem + 4.8214vw, 5.625rem);
}

.contact-subtitle {
    margin-bottom: 40px;
    font-size: clamp(1.75rem, 1.2143rem + 2.6786vw, 3.625rem);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 35px;
    flex-wrap: wrap;
	    margin-top: 40px;

}
.info-item.service {
    margin-bottom: 10px;
}
.info-item.call .icon{
    font-size: 62px;
}
.info-item.service .icon{
    position: relative;
    top: -5px;
}
.icon {
    font-size: 44px;
    line-height: 1;
    width: 44px;
    text-align: center;
}

.info-text span {
    display: block;
    font-size: 24px;
    color: #111;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text a, .service-text {
   font-size: clamp(1.125rem, 1.0179rem + 0.5357vw, 1.5rem);
    text-decoration: none;
    word-break: break-word;
    font-family: 'Wix Madefor Text VF';
}
.info-text a {
    text-decoration: underline;
}
.info-text a:hover {
        color: #7e332c;
}
.service-text {
     
    font-weight: 700;
}

/* RIGHT SIDE */

.contact-form-area h4 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #111;
    font-weight: 500;
}

.form-placeholder {
    min-height: 600px;
    border: 2px dashed #bbb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #888;
    padding: 30px;
}
/* contact-section end */
/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1500px) {
.step-number{
      font-size: 230px;
}
}
@media (max-width: 1400px) {
  :root { --container-pad: 30px; }

.nav-links > li > a {
    font-size: 18px;
}
}
@media (max-width: 1366px) {

  .pool-callout-content .is-title{
        font-size: clamp(35.2px, 7.2vw, 60px);
  }
      .contact-container {
  grid-template-columns: 440px 1fr;
  gap: 50px;
}
}
@media (max-width: 1200px) {
  
  :root { --container-pad: 30px; }
  .hero-content h1 {  }
	.why-list li:after { width: 6px; height: 6px; }
	.why-list {
    list-style: none;
    margin-bottom: 5px;
    margin-top: 10px;
}
    .contact-container {
  grid-template-columns: 350px 1fr;
  gap: 50px;
}
section.custom-content-section {
    padding: 60px 0;
    
}
.step-number{
      font-size:170px;
}
}

@media (min-width: 901px) {
.nav-links > li > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.nav-links > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.nav-links > li > a:hover::after,
.nav-links > li > a:focus::after,
.nav-links > li > a:focus-visible::after,
	.nav-links > li:focus > a:after,
	.nav-links > li:focus-within > a::after {
    width: 100%;
}
	.nav-links > li {
    padding: 10px 0;
}
}

@media (max-width: 1024px) {
.site-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: 0.5s all;
}
.btn-light {
     padding: 10px 10px;
}
}
@media (max-width: 992px) {
  :root { --container-pad: 20px; }
  .navbar { padding: 16px 20px; }

  section.custom-content-section {
    padding: 40px 0;
    
}
	
	.estimate-container {
        flex-direction: column;
    }

    .estimate-image,
    .estimate-form {
        width: 100%;
    }

    .estimate-image {
        height: auto;
        position: relative;
        width: calc(100% + 40px);
        left: -20px;
    }

    .estimate-form {
        padding: 40px 0px;
    }

    .estimate-form h2 {
        font-size: 28px;
    }
      .pool-callout-content .is-title{
        font-size: clamp(35.2px, 7.2vw, 40px);
  }
      .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .step-number{
      font-size:140px;
              width: 80px;
}
}

@media (max-width: 900px) {
  .easy-steps {
    background: #f3f3f3;
    padding: 44.8px 0px 50px;
}
	.why-list li:after {
    width: 5px;
    height: 5px;
}
	.why-list li {
   
    padding-left: 20px;
}
  .menu-toggle {
           display: block;
        position: relative;
        z-index: 20;
        color: #000000;
        border-color: rgb(0 0 0);
        background: none;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(17, 24, 39, 0.14);
    width: min(320px, 84vw);
    padding: 88px 17.6px 19.2px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 15;
  }

  .nav-links a { color: #111827; }
  .has-dropdown { width: 100%; }

  .has-dropdown > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 0px;
           background: #000000;
        border: 0px solid rgba(17, 24, 39, 0.12);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    transition: max-height 0.25s ease, margin-top 0.25s ease, padding 0.25s ease;
  }

  .dropdown-menu li a { color: #FFFFFF;
    padding: 10px 20px; }
  .dropdown-menu li a:hover { background: rgba(17, 24, 39, 0.08); }

  .has-dropdown.open > .dropdown-menu {
    max-height: 220px;
    margin-top: 7.2px;
    padding: 6.4px 0;
  }
.has-dropdown > a::after {
    content: "";
    font-size: 0.7em;
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-style: solid;
    border-color: #000000;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    right: 3px;
    position: absolute;
    top: 4px;
}
  .has-dropdown.open > a::after {        
        transform: rotate(225deg);
        top: 12px; }

  .nav-links.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-light { display: none; }

  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18.4px; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 30px; }
  .why-precision-grid { grid-template-columns: 1fr; }
  .why-media img { min-height: 420px; }
  .easy-steps-grid { grid-template-columns: 1fr; gap: 22.4px; flex-wrap: wrap; }
  .projects-thumb-slider .slick-slide { padding: 0 3.2px; }
  .project-lightbox { padding: 32px 17.6px 20.8px; }
  .footer-grid {   gap: 25px;     display: flex;
    flex-wrap: wrap;
    justify-content: space-between;}
	
	
.footer-grid .footer-brand {
    order: 4;
    width: 100%;
    text-align: center;
    border-top: 1px solid #c3c3c3;
    padding-top: 20px;
}

.footer-grid .footer-brand img {
    margin-left: auto;
    margin-right: auto;
}
	
  .footer-links { justify-self: start; }
  .pool-callout-grid { grid-template-columns: 1fr; }
  .pool-callout-content { padding: 22.4px var(--container-pad) 25.6px;         min-height: auto; }
  .benefits-grid {   }
  .install-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 19.2px; }
  .service-area-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-area-copy { max-width: 100%; }
  .service-area-map { width: min(460px, 100%); margin: 0 auto; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 41.6px; }
  .lightbox-content { width: min(100%, 94vw); gap: 17.6px; }
  .lightbox-image { width: min(510px, 64vw); }
  .lightbox-video { width: min(510px, 64vw); }
  .lightbox-caption { font-size: 12.48px; margin-top: 28.8px; }
  .lightbox-next { right: 7.2px; }
  .pool-enclosures-callout.img-right .pool-callout-media {
    order: 1;
}
}

@media (max-width: 768px) {
	.easy-step {
    width: 100%;
}
  .hero-content { padding:48px 20px; }
  .services-section { padding: 56px 0 51.2px; }
  .services-heading p {   }
  .service-card-body h3 { min-height: auto; }
  .trust-item p { font-size: 22px; }
  .why-content { padding: 43.2px var(--container-pad) 30px; }
  .easy-steps { padding: 38.4px 0 35.2px; }
  .easy-step p { font-size: clamp(24px, 3.6vw, 35.2px); }
	
	.wpforms-container .wpforms-form .wpforms-field {
    width: 100%;
 
}
	.estimate-image {
        height: 300px;
    }

    .estimate-form h2 {
        font-size: 24px;
    }

    .form-placeholder {
        min-height: 300px;
        font-size: 20px;
    }
        .contact-section {
        padding: 30px 0px 50px 0px;
    }
    .info-item.call .icon {
    font-size: 50px;
}
.info-item .icon {
    font-size: 34px;
    width: 30px;
}

.info-text span {
    font-size: 24px;
}

.info-item.service .icon {
    top: -2px;
}

.info-item {
    margin-bottom: 20px;
}

.contact-subtitle {
    margin-bottom: 30px;
}
    .site-footer {
   
    padding: 30px 0;
 }
 .projects-heading {
   
    margin-bottom: 30px;
}
    .step-number{
      font-size:120px;
}
}

@media (max-width: 680px) {
	.footer-grid > * {
    width: 100%;
    text-align: center;
    border-top: 1px solid #c3c3c3;
    padding-top: 20px;
}
	.footer-grid  > *:nth-child(2) {
    border: 0 !important;
    padding-top: 0;
}
}
@media (max-width: 600px) {
  .hero-content p { gap: 6.4px; line-height: 1.4; }
  .hero-content p span { display: none; }
  .easy-step {  }
  .projects-main-slider .slick-arrow { display: none !important; }
  .project-slide::after,
  .project-caption { opacity: 1; transform: translateY(0); }
  .project-caption { left: 16px; bottom: 16px; }

  .lightbox-content {
    width: 100%;
    min-height: calc(100vh - 57.6px);
    flex-direction: column;
    justify-content: center;
    gap: 12.8px;
  }

  .lightbox-image { width: 100%; max-height: 68vh; object-fit: contain; }
  .lightbox-video { width: 100%; max-height: 68vh; }
  .lightbox-caption { margin-top: 0; text-align: center; }
  .lightbox-prev { left: 1.6px; }
  .lightbox-next { right: 1.6px; }

  .site-footer { padding: 25.6px 0 30.4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 19.2px; }
  .footer-brand .footer-logo { width: 95px; height: 95px; margin-bottom: 8.8px; }
  .pool-callout-content p {   }
  .benefits-grid {  }
  .installation-process { padding: 32px 0 35.2px; }
  .service-area-section { padding: 27.2px 0 30.4px; }

  .wpforms-container .wpforms-form .wpforms-field-container{
        margin: 0 0px;
  }
}

@media (max-width: 576px) {
  .menu-toggle {   }
  .services-grid { grid-template-columns: 1fr; }
  .service-card img { height: 220px; }
  .trust-strip { padding: 50px 0; }
  .trust-grid { grid-template-columns: 1fr;  }
  .why-media img { min-height: 300px; }
  .why-content h2 { font-size: clamp(36.8px, 14vw, 64px); }
  .why-button { width: 100%; text-align: center;    padding: 11px 10px; }
  .projects-section { padding: 40px 0 48px; }
  .pool-callout-btn { width: 100%; text-align: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .install-grid { grid-template-columns: 1fr; gap: 19.2px; }
  .service-area-links a { width: 100%; text-align: center; }
}

.project-video {
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 135 / 76;
}

.lightbox-iframe{
  aspect-ratio: 19 / 6;
}

.project-video iframe,
.lightbox-iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}