/* =========================================================
   COATEXX WATERPROOFING
========================================================= */

:root {
  --water-yellow: #f5c400;
  --water-yellow-light: #ffd83d;
  --water-black: #080808;
  --water-dark: #101010;
  --water-card: #151515;
  --water-border: rgba(255,255,255,.10);
  --water-gray: #a5a5a5;
}


/* =========================================================
   NAV
========================================================= */

.nav-action {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-btn {
  padding: 13px 20px !important;
  font-size: .72rem !important;
}

.menu-toggle {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.waterproof-hero {
  min-height: 790px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #080808;
}


/* RIGHT SIDE IMAGE */

.waterproof-hero-bg {
  position: absolute;
  inset: 0 0 0 42%;

  background-image:
    linear-gradient(
      90deg,
      #080808 0%,
      rgba(8,8,8,.96) 4%,
      rgba(8,8,8,.76) 20%,
      rgba(8,8,8,.25) 55%,
      rgba(8,8,8,.05) 100%
    ),
    url("../assets/waterproofing.png");

  background-size: cover;
  background-position: center;
}


/* YELLOW LIGHT */

.waterproof-hero::after {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -150px;
  bottom: -300px;

  background: var(--water-yellow);

  opacity: .10;

  filter: blur(110px);

  border-radius: 50%;

  pointer-events: none;
}


.waterproof-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}


.waterproof-hero-content {
  width: min(720px, 58%);
  padding: 100px 0;
}


/* EYEBROW */

.waterproof-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--water-yellow);

  font-family: "Montserrat", sans-serif;

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .18em;

  margin-bottom: 28px;
}


.waterproof-eyebrow span {
  width: 38px;
  height: 2px;

  display: block;

  background: var(--water-yellow);
}


/* HERO TITLE */

.waterproof-hero h1 {
  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(3.5rem, 6.3vw, 6.8rem);

  line-height: .90;

  letter-spacing: -.055em;

  font-weight: 900;
}


.waterproof-hero h1 strong {
  color: var(--water-yellow);
}


/* DESCRIPTION */

.waterproof-hero p {
  max-width: 610px;

  margin: 34px 0 0;

  color: #bdbdbd;

  font-family: "Space Grotesk", sans-serif;

  font-size: 1.04rem;

  line-height: 1.75;
}


/* BUTTONS */

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 35px;
}


.hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


/* STATS */

.hero-stats {
  display: flex;
  gap: 0;

  margin-top: 70px;
}


.hero-stats > div {
  min-width: 155px;

  padding-right: 30px;

  margin-right: 30px;

  border-right: 1px solid rgba(255,255,255,.16);
}


.hero-stats > div:last-child {
  border-right: 0;
}


.hero-stats strong {
  display: block;

  color: var(--water-yellow);

  font-family: "Space Grotesk", sans-serif;

  font-size: 1.7rem;

  margin-bottom: 5px;
}


.hero-stats span {
  color: #858585;

  font-family: "Montserrat", sans-serif;

  font-size: .63rem;

  font-weight: 800;

  line-height: 1.4;

  letter-spacing: .1em;
}


/* SCROLL */

.hero-scroll {
  position: absolute;

  z-index: 3;

  right: 42px;
  bottom: 35px;

  display: flex;
  align-items: center;
  gap: 12px;

  color: #888;

  font-size: .58rem;

  font-weight: 800;

  letter-spacing: .15em;

  transform: rotate(90deg);

  transform-origin: right center;
}


/* =========================================================
   INTRO
========================================================= */

.waterproof-intro {
  padding: 130px 0;

  background: #101010;

  border-bottom: 1px solid var(--water-border);
}


.intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}


.intro-heading h2 {
  margin: 18px 0 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(3rem, 5vw, 5.4rem);

  line-height: .95;

  letter-spacing: -.05em;

  font-weight: 900;
}


.intro-heading h2 span {
  color: var(--water-yellow);
}


.intro-content {
  padding-top: 25px;
}


.intro-content p {
  color: var(--water-gray);

  font-size: 1rem;

  line-height: 1.8;

  max-width: 600px;
}


.intro-content .intro-large {
  color: #eee;

  font-size: 1.3rem;

  line-height: 1.65;

  margin-bottom: 30px;
}


/* =========================================================
   SYSTEMS
========================================================= */

.waterproof-systems {
  padding: 130px 0;

  background: #0b0b0b;
}


.systems-heading {
  display: grid;

  grid-template-columns: 1.1fr .9fr;

  gap: 100px;

  align-items: end;

  margin-bottom: 65px;
}


.systems-heading > p {
  color: var(--water-gray);

  font-size: .98rem;

  line-height: 1.8;

  max-width: 510px;
}


/* CARDS */

.waterproof-cards {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}


.waterproof-card {
  position: relative;

  overflow: hidden;

  background: var(--water-card);

  border: 1px solid var(--water-border);

  transition: .4s ease;
}


.waterproof-card:hover {
  transform: translateY(-7px);

  border-color: rgba(245,196,0,.5);
}


/* IMAGE */

.waterproof-card-image {
  height: 340px;

  position: relative;

  overflow: hidden;
}


.waterproof-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform .7s ease;
}


.waterproof-card:hover
.waterproof-card-image img {
  transform: scale(1.07);
}


.image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.05),
      rgba(0,0,0,.75)
    );
}


.card-number {
  position: absolute;

  top: 22px;
  right: 24px;

  color: var(--water-yellow);

  font-family: "Space Grotesk", sans-serif;

  font-size: .8rem;

  font-weight: 700;
}


/* BODY */

.waterproof-card-body {
  padding: 32px;
}


.card-icon {
  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(245,196,0,.35);

  color: var(--water-yellow);

  margin-bottom: 22px;
}


.waterproof-card h3 {
  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: 1.7rem;

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -.035em;
}


.waterproof-card p {
  color: #929292;

  font-size: .92rem;

  line-height: 1.7;

  margin: 18px 0 28px;

  max-width: 500px;
}


.waterproof-card a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--water-yellow);

  text-decoration: none;

  font-size: .67rem;

  font-weight: 800;

  letter-spacing: .08em;
}


.waterproof-card a svg {
  width: 16px;
}


/* =========================================================
   BENEFITS
========================================================= */

.waterproof-benefits {
  padding: 140px 0;

  background: #141414;
}


.benefits-grid {
  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: 120px;
}


.benefits-left h2 {
  margin: 20px 0 30px;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(2.8rem, 4.5vw, 5rem);

  line-height: .97;

  letter-spacing: -.05em;

  font-weight: 900;
}


.benefits-left h2 span {
  color: var(--water-yellow);
}


.benefits-left p {
  max-width: 520px;

  color: #969696;

  line-height: 1.8;
}


.benefits-list {
  border-top: 1px solid var(--water-border);
}


.benefit-item {
  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 20px;

  padding: 28px 0;

  border-bottom: 1px solid var(--water-border);
}


.benefit-item > span {
  color: var(--water-yellow);

  font-size: .75rem;

  font-weight: 800;
}


.benefit-item h3 {
  color: #fff;

  margin: 0 0 8px;

  font-size: 1.15rem;
}


.benefit-item p {
  color: #858585;

  margin: 0;

  line-height: 1.6;

  font-size: .88rem;
}


/* =========================================================
   APPLICATIONS
========================================================= */

.waterproof-applications {
  padding: 130px 0;

  background: #0a0a0a;
}


.applications-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;

  margin-top: 60px;
}


.application-card {
  height: 390px;

  position: relative;

  overflow: hidden;
}


.application-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .6s ease;
}


.application-card:hover img {
  transform: scale(1.08);
}


.application-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(0,0,0,.9)
    );
}


.application-card h3 {
  position: absolute;

  left: 25px;
  bottom: 25px;

  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: 1.15rem;

  font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.waterproof-process {
  padding: 140px 0;

  background: #151515;
}


.process-heading h2 {
  margin: 18px 0 70px;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(3rem, 5vw, 5.2rem);

  line-height: .95;

  letter-spacing: -.05em;

  font-weight: 900;
}


.process-heading h2 span {
  color: var(--water-yellow);
}


.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--water-border);

  border-bottom: 1px solid var(--water-border);
}


.process-item {
  position: relative;

  padding: 38px 28px 45px;

  border-right: 1px solid var(--water-border);
}


.process-item:last-child {
  border-right: 0;
}


.process-number {
  color: var(--water-yellow);

  font-size: .72rem;

  font-weight: 800;

  margin-bottom: 35px;
}


.process-item > svg {
  width: 30px;
  height: 30px;

  color: var(--water-yellow);

  margin-bottom: 24px;
}


.process-item h3 {
  color: #fff;

  margin: 0 0 12px;

  font-size: 1.2rem;
}


.process-item p {
  color: #858585;

  font-size: .86rem;

  line-height: 1.7;

  margin: 0;
}


/* =========================================================
   CTA
========================================================= */

.waterproof-cta {
  padding: 100px 0;

  background: var(--water-yellow);
}


.cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.waterproof-cta .section-subtitle {
  color: #111;
}


.waterproof-cta h2 {
  color: #090909;

  margin: 18px 0 0;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(2.5rem, 4.5vw, 5rem);

  line-height: .95;

  letter-spacing: -.05em;

  font-weight: 900;
}


.waterproof-cta .btn-primary {
  background: #090909;

  color: #fff;

  border-color: #090909;

  white-space: nowrap;
}


.waterproof-cta .btn-primary:hover {
  background: #222;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

  .waterproof-hero {
    min-height: 720px;
  }

  .waterproof-hero-bg {
    inset: 0;
    opacity: .45;
  }

  .waterproof-hero-content {
    width: 80%;
  }

  .systems-heading,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .process-item:nth-child(2) {
    border-right: 0;
  }

  .process-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--water-border);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;

    align-items: center;
    justify-content: center;

    background: none;

    border: 0;

    color: #fff;

    cursor: pointer;
  }

  .nav-links {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    padding: 25px;

    background: #0b0b0b;

    border-top: 1px solid rgba(255,255,255,.1);
  }

  .nav-links.active {
    display: flex;
  }

  .waterproof-hero {
    min-height: 760px;
  }

  .waterproof-hero-bg {
    inset: 0;

    opacity: .30;

    background-position: center;
  }

  .waterproof-hero-content {
    width: 100%;

    padding: 90px 0;
  }

  .waterproof-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .waterproof-hero p {
    font-size: .95rem;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: flex-start;
  }

  .hero-stats {
    margin-top: 50px;

    flex-wrap: wrap;

    gap: 25px;
  }

  .hero-stats > div {
    min-width: 110px;

    padding-right: 18px;

    margin-right: 0;
  }

  .hero-scroll {
    display: none;
  }

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

    gap: 30px;
  }

  .waterproof-intro,
  .waterproof-systems,
  .waterproof-benefits,
  .waterproof-applications,
  .waterproof-process {
    padding: 85px 0;
  }

  .waterproof-cards {
    grid-template-columns: 1fr;
  }

  .waterproof-card-image {
    height: 280px;
  }

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

  .application-card {
    height: 300px;
  }

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

  .process-item {
    border-right: 0;

    border-bottom: 1px solid var(--water-border);
  }

  .process-item:last-child {
    border-bottom: 0;
  }

  .cta-inner {
    gap: 35px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .waterproof-hero-content {
    padding: 70px 0;
  }

  .waterproof-hero h1 {
    font-size: 3.15rem;
  }

  .waterproof-card-body {
    padding: 25px;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stats > div {
    min-width: 90px;

    padding-right: 12px;
  }

}