/* =========================================================
   EPOXY FLOORING PAGE
========================================================= */

:root {
  --epoxy-yellow: #f5c400;
  --epoxy-yellow-light: #ffd83d;
  --epoxy-black: #090909;
  --epoxy-dark: #101010;
  --epoxy-card: #151515;
  --epoxy-border: rgba(255,255,255,.10);
  --epoxy-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
========================================================= */

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


/* Right side image */
.epoxy-hero-bg {
  position: absolute;
  inset: 0 0 0 42%;
  background-image:
    linear-gradient(
      90deg,
      #080808 0%,
      rgba(8,8,8,.82) 8%,
      rgba(8,8,8,.25) 48%,
      rgba(8,8,8,.05) 100%
    ),
    url("../assets/epoxyflooring.png");

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


/* Yellow industrial glow */
.epoxy-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 2%;
  bottom: -260px;
  background: var(--epoxy-yellow);
  opacity: .08;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}


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


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


.epoxy-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--epoxy-yellow);
  font-family: "Montserrat", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 28px;
}


.epoxy-eyebrow span {
  width: 38px;
  height: 2px;
  display: block;
  background: var(--epoxy-yellow);
}


.epoxy-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.5rem, 6.3vw, 6.8rem);
  line-height: .91;
  letter-spacing: -.055em;
  font-weight: 900;
}


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


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


.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 35px;
}


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


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


.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
========================================================= */

.epoxy-intro {
  padding: 130px 0;
  background: #101010;
  border-bottom: 1px solid var(--epoxy-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(--epoxy-yellow);
}


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


.intro-content p {
  color: var(--epoxy-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
========================================================= */

.epoxy-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(--epoxy-gray);
  font-size: .98rem;
  line-height: 1.8;
  max-width: 510px;
}


.epoxy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}


.epoxy-card {
  position: relative;
  overflow: hidden;
  background: var(--epoxy-card);
  border: 1px solid var(--epoxy-border);
  transition: .4s ease;
}


.epoxy-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245,196,0,.5);
}


.epoxy-card-image {
  height: 340px;
  position: relative;
  overflow: hidden;
}


.epoxy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}


.epoxy-card:hover .epoxy-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,.7)
    );
}


.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--epoxy-yellow);
  font-family: "Space Grotesk", sans-serif;
  font-size: .8rem;
  font-weight: 700;
}


.epoxy-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(--epoxy-yellow);
  margin-bottom: 22px;
}


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


.epoxy-card p {
  color: #929292;
  font-size: .92rem;
  line-height: 1.7;
  margin: 18px 0 28px;
  max-width: 500px;
}


.epoxy-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--epoxy-yellow);
  text-decoration: none;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
}


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


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

.epoxy-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(--epoxy-yellow);
}


.benefits-left p {
  max-width: 520px;
  color: #969696;
  line-height: 1.8;
}


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


.benefit-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--epoxy-border);
}


.benefit-item > span {
  color: var(--epoxy-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
========================================================= */

.epoxy-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
========================================================= */

.epoxy-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(--epoxy-yellow);
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--epoxy-border);
  border-bottom: 1px solid var(--epoxy-border);
}


.process-item {
  position: relative;
  padding: 38px 28px 45px;
  border-right: 1px solid var(--epoxy-border);
}


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


.process-number {
  color: var(--epoxy-yellow);
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: 35px;
}


.process-item > svg {
  width: 30px;
  height: 30px;
  color: var(--epoxy-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
========================================================= */

.epoxy-cta {
  padding: 100px 0;
  background: var(--epoxy-yellow);
}


.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}


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


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


.epoxy-cta .btn-primary {
  background: #090909;
  color: #fff;
  border-color: #090909;
  white-space: nowrap;
}


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


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

@media (max-width: 1000px) {

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

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

  .epoxy-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(--epoxy-border);
  }

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

}


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

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

  .epoxy-hero-bg {
    inset: 0;
    opacity: .30;
    background-position: center;
  }

  .epoxy-hero-content {
    width: 100%;
    padding: 90px 0;
  }

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

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

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

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

  .epoxy-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(--epoxy-border);
  }

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

  .cta-inner {
    gap: 35px;
  }

}


@media (max-width: 480px) {

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

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

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

  .hero-stats {
    gap: 18px;
  }

  .hero-stats > div {
    min-width: 90px;
    padding-right: 12px;
  }

}