/* style.css */

:root {
  --white: #ffffff;
  --orange: #f36404;
  --gray-light: #c4c4c4;
  --gray: #848484;
  --gray-dark: #5c5c5c;
  --black: #000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--black);
  line-height: 1.8;
  font-size: 1.2rem;
  transition: background 0.3s, color 0.3s;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 3rem 0;
}

/* Updated header styles */
header {
  background: var(--white);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 1.5rem 1.5rem;
  animation: dropFade 1s ease;

  display: flex;
  justify-content: center; /* center the container */
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* phone left, nav center, logo right */
  width: 100%;
  max-width: 1300px;
  padding: 0 2rem;
  gap: 2rem;
}

.phone-number {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--orange);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  min-width: 150px;
  position: relative;
}

.phone-number span {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.text-original {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.text-morph {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
  color: var(--black);
}

.phone-number:hover .text-original {
  opacity: 0;
  transform: translateX(100%);
}

.phone-number:hover .text-morph {
  opacity: 1;
  transform: translateX(0);
  z-index: 3;
}

nav {
  flex-grow: 1; /* take remaining space */
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a {
  padding: 0.75rem 1.5rem;
  background-color: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 1.5rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  background-color: var(--black);
  transform: scale(1.1);
}

.logo {
  max-height: 60px;
  width: auto;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Rest of your styles unchanged */

.hero {
  padding: 8rem 2rem;
  background: linear-gradient(to right, var(--white), var(--gray-light));
  color: var(--black);
  text-align: center;
  animation: fadeIn 1.2s ease-in;
  border-radius: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-top: 2rem;
}
.hero {
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

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

.hero h2 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-weight: 900;
  animation: bounceIn 1.2s ease-in-out;
}

.hero p {
  font-size: 1.5rem;
  color: var(--gray-dark);
  max-width: 800px;
  margin: auto;
}

section.preview {
  padding: 6rem 2rem;
  text-align: center;
  background-color: var(--gray-light);
  border-radius: 2rem;
  margin: 3rem 0;
  animation: fadeIn 1s ease-in forwards;
}

section.preview h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

section.preview p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: auto;
  color: var(--gray-dark);
}

section.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding: 5rem 2rem;
  background: var(--white);
  border-radius: 2rem;
}

.feature-card {
  flex: 1 1 300px;
  background: var(--gray-light);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.feature-card p {
  font-size: 1.1rem;
  color: var(--gray-dark);
}

footer {
  background: var(--white);
  color: var(--gray);
  text-align: center;
  padding: 2rem 0;
  font-size: 1rem;
  border-top: 3px solid var(--orange);
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  margin-top: 5rem;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes dropFade {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.phone-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* align left */
  gap: 0.5rem;
  min-width: 150px;
}

.get-quote-btn {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 1.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  user-select: none;
}

.get-quote-btn:hover {
  background-color: #d45303; /* slightly darker orange */
  transform: scale(1.05);
}

.hero {
  position: relative;
  height: 45vh; /* reduced from full screen */
  background: url('img/steel-structure-workshop-closeup-steel-frame-fac-2023-11-27-05-30-07-utc_orig-1024x682.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* changed from 0.4 to 0.6 */
  z-index: 1;
}


.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  max-width: 1000px; /* made logo bigger */
  width: 90%;
  height: auto;
  animation: bounceIn 1.2s ease-in-out;
}


.hero h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.4rem;
  color: #f0f0f0;
}

.why-choose {
  background-color: #fff; /* full width white background */
  padding: 3rem 0;        /* vertical padding */
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
  animation-fill-mode: forwards;
  width: 100vw;           /* full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;     /* center full width */
  margin-right: -50vw;
  z-index: 1;
}

.why-choose-content {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem; /* horizontal padding inside content */
  text-align: left;
}

.why-choose h3 {
  color: var(--orange);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.why-choose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.why-choose ul li {
  margin-bottom: 1rem;
}

.why-choose p {
  font-size: 1.15rem;
  color: var(--gray-dark);
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fade-in class triggers animation */
.fade-in {
  animation: fadeInUp 1s ease forwards;
}

.footer {
  background-color: #f36404;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700; /* make all text bold */
}

.footer-top {
  margin-bottom: 30px;
}

.footer-specialty-text {
  color: #fff;
  margin: 10px 0 20px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 700; /* ensure bold */
}

.footer-socials {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-socials a {
  background-color: #000;
  color: #fff;
  padding: 8px 18px;
  font-weight: 700; /* bold */
  text-decoration: none;
  font-size: 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  background-color: #333;
  color: #f36404;
}

.footer-socials a i {
  font-size: 1.2rem;
  font-weight: 700; /* bold icon */
}

.footer-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  font-weight: 700; /* bold */
}

.location h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 700; /* bold */
}

.location p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700; /* bold */
}

@media (max-width: 600px) {
  .footer-locations {
    flex-direction: column;
    gap: 20px;
  }
}

.who-we-are-hero {
  background-image: url('img/67512149.jpg'); /* change to your new image path */
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble {
  width: 100%;
  padding: 40px 60px;  /* inner padding, controls the bubble text space */
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  box-sizing: border-box;
  color: #03045e;
}



.bubble h3, .bubble h4 {
  color: #f36404; /* a steel-blue accent */
  margin-bottom: 15px;
}

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

.bubble ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 700px) {
  .bubble {
    padding: 20px 25px;
    margin: 30px 15px;
  }
}

.image-end {
  text-align: center;
  margin: 40px 0; /* optional spacing above and below */
}

.image-end img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 10px; /* optional for nice rounded corners */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* optional subtle shadow */
}

  .modal-overlay {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0,0,0,0.6);
      display: none; /* Hidden by default */
      justify-content: center;
      align-items: center;
      z-index: 9999; /* On top of everything */
    }

    .modal-overlay.active {
      display: flex;
    }

    /* Modal Content */
    .modal-content {
      background: rgba(255, 255, 255, 0.95);
      padding: 2rem;
      border-radius: 12px;
      width: 90%;
      max-width: 600px;
      box-shadow: 0 0 20px rgba(0,0,0,0.25);
      position: relative;
      max-height: 90vh;
      overflow-y: auto;
      font-family: 'Poppins', sans-serif;
    }

    /* Close Button */
    .modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 1.5rem;
      color: #333;
      cursor: pointer;
      border: none;
      background: transparent;
    }

    .modal-close:hover {
      color: #f36404;
    }

@media (max-width: 768px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
    background-color: #fff;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .phone-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .phone-number {
    font-size: 0.95rem;
    color: #333;
  }

  .get-quote-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background-color: #f36404;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 1rem;
    width: calc(100% - 2rem);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 999;
  }

  nav.nav-active {
    display: flex;
  }

  nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav a:hover {
    background-color: #f5f5f5;
  }
}

/* Show logo on desktop, hide on mobile */
.logo {
  display: block;
  height: 40px;
}

/* Hide on small screens */
@media (max-width: 768px) {
  .logo {
    display: none;
  }
}


/* ========= GENERAL ANIMATIONS ========= */

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease, transform 1s ease;
}
.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-up {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s ease-in-out;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes zoomBg {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========= SECTION TRANSITIONS ========= */

.service-section {
  animation: fadeSlideUp 0.8s ease-in-out forwards;
}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  color: #fff;
  background: #111;
}

.why-bg-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('img/steel erection/why-chose-us.jpeg') no-repeat center center/cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in, transform 1s ease-in;
  z-index: 1;
}

.why-choose-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.why-choose-overlay h3 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #fff;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff22;
  border-radius: 1rem;
  padding: 2rem;
  width: 280px;
  transition: transform 0.5s, opacity 0.5s;
  opacity: 0;
  transform: translateY(50px);
  backdrop-filter: blur(6px);
}

.why-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00b4d8;
}

.why-card h4 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.why-card p {
  color: #ccc;
  font-size: 1rem;
}

.why-footer {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* Reveal effect */
.why-choose-section.visible .why-bg-image {
  opacity: 0.5;
  transform: scale(1);
}

.why-choose-section.visible .why-card {
  opacity: 1;
  transform: translateY(0);
}

.cladding-advantage {
  padding: 6rem 2rem;
  background: linear-gradient(to bottom right, #fff, #f4f4f4);
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #f36404; /* Sheppard Steel red */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.advantage-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.advantage-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 300px;
  flex: 1 1 250px;
  text-align: center;
  border: 2px solid #f36404;
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.advantage-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;

  filter:
    brightness(0)
    saturate(100%)
    invert(54%)
    sepia(96%)
    saturate(2600%)
    hue-rotate(-2deg)
    brightness(115%)
    contrast(115%);

  transition: transform 0.3s ease, filter 0.3s ease;
}

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

  filter:
    brightness(0)
    saturate(100%)
    invert(62%)
    sepia(100%)
    saturate(3000%)
    hue-rotate(-2deg)
    brightness(125%)
    contrast(120%);

  drop-shadow: 0 0 12px rgba(243, 100, 4, 0.6);
}

.advantage-card h4 {
  font-size: 1.5rem;
  color: #f36404;
  margin-bottom: 0.5rem;
}

.advantage-card p {
  color: #333333;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.hero {
  position: relative;
  z-index: 1;
  height: 50vh;
  overflow: hidden;
}

header {
  position: sticky;
  top: 0;
  background: #ffffffee;
  backdrop-filter: blur(8px);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header {
  position: sticky;
  top: 0;
  background: #ffffffee;
  backdrop-filter: blur(8px);
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  gap: 2rem;
  transition: all 0.4s ease;
}
nav a {
  font-weight: 600;
  color: #fff;
  position: relative;
}
nav a::after {
  content: '';
  height: 2px;
  width: 0;
  background: #0077b6;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}

.hero {
  background-image: url("img/steel-structure-workshop-closeup-steel-frame-fac-2023-11-27-05-30-07-utc_orig-1024x682.jpg");
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.hero {
  background-image: url("img/steel-structure-workshop-closeup-steel-frame-fac-2023-11-27-05-30-07-utc_orig-1024x682.jpg");
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  .header-container {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
  }

  .logo {
    width: 120px;
    height: auto;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
  }

  nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 100%;
    display: none;
    text-align: center;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
  }

  nav.nav-active {
    display: flex;
  }

  nav a {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: #fff;
    text-decoration: none;
  }

  .phone-container {
    flex-direction: column;
    text-align: right;
  }

  .hero {
    padding: 50  px 20px 60px;
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .hero-overlay h2 {
    font-size: 22px;
    padding: 0 10px;
  }

  .bubble {
    padding: 20px;
    margin: 20px 10px;
    background: #f7f7f7;
    border-radius: 12px;
  }

  .footer {
    text-align: center;
    font-size: 14px;
    padding: 30px 15px;
  }

  .footer-locations {
    flex-direction: column;
  }

  .footer-locations .location {
    margin: 15px 0;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex; /* or block */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    background-color: #fff; /* or your header color */
    border-radius: 3px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }
  
  .hero h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    height: 200px;
    background-size: cover;
    background-position: center;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1e1e1e;
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-family: "Inter", sans-serif;
  max-width: 320px;
  display: none;
  z-index: 1000;
  animation: fadeIn 0.6s ease forwards;
}

.cookie-consent a {
  color: #4fc3f7;
  text-decoration: none;
}

.cookie-consent a:hover {
  text-decoration: underline;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-consent button {
  background-color: #4fc3f7;
  border: none;
  color: #1e1e1e;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cookie-consent button:hover {
  background-color: #29b6f6;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   PROFESSIONAL DARK RECOLOR
   KEEPING YOUR ORIGINAL ANIMATIONS
   ADD THIS TO VERY BOTTOM OF style.css
========================================= */

:root {
  --white: #f5f7fa;
  --orange: #f36404;

  --gray-light: #1c1f24;
  --gray: #9ca3af;
  --gray-dark: #c2c8d0;

  --black: #0f1115;

  --panel: #181c21;
  --panel-2: #20252c;

  --border: rgba(255,255,255,0.08);
}

/* BODY */

body {
  background: #0f1115;
  color: var(--white);
}

/* HEADER */

header {
  background: rgba(15,17,21,0.92) !important;
  backdrop-filter: blur(10px);

  border-radius: 0 0 1rem 1rem !important;

  box-shadow:
    0 4px 20px rgba(0,0,0,0.35) !important;
}

/* NAV */

nav a {
  background: transparent !important;
  color: #d5dbe3 !important;

  border: 1px solid transparent;

  transition:
    background 0.3s ease,
    border 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease !important;
}

nav a:hover {
  background: rgba(243,100,4,0.12) !important;

  border: 1px solid rgba(243,100,4,0.35);

  color: white !important;
}

/* HERO */

.hero::before {
  background: rgba(0,0,0,0.72) !important;
}

.hero {
  box-shadow: none !important;
  border-radius: 0 !important;
}

.hero p {
  color: #d8dde5 !important;
}

/* SECTIONS */

.service-section {
  background:
    linear-gradient(
      145deg,
      var(--panel),
      var(--panel-2)
    ) !important;

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

  box-shadow:
    0 8px 30px rgba(0,0,0,0.35) !important;
}

.service-section h3 {
  color: white !important;
}

.service-section p,
.service-section li {
  color: #c0c7d0 !important;
}

.service-image img {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.45) !important;
}

/* WHY CHOOSE */

.why-choose-section {
  background: #121417 !important;
}

.why-bg-image {
  opacity: 0.25 !important;
}

.why-card {
  background: rgba(255,255,255,0.05) !important;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 8px 20px rgba(0,0,0,0.25);
}

.why-card h4 {
  color: white !important;
}

.why-card p {
  color: #d0d5dd !important;
}

.why-card i {
  color: var(--orange) !important;
}

/* CLADDING SECTION */

.cladding-advantage {
  background:
    linear-gradient(
      to bottom right,
      #13161a,
      #1b2027
    ) !important;
}

.section-title {
  color: white !important;
}

.advantage-card {
  background: #1c2128 !important;

  border: 1px solid rgba(255,255,255,0.08) !important;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.3) !important;
}

.advantage-card h4 {
  color: white !important;
}

.advantage-card p {
  color: #c0c7d0 !important;
}

/* FOOTER */

.footer {
  background: #0b0d10 !important;

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

.footer-socials a {
  background: #1a1f25 !important;

  border:
    1px solid rgba(255,255,255,0.08);
}

.footer-socials a:hover {
  background: var(--orange) !important;
  color: white !important;
}

/* MODAL */

.modal-content,
#quoteModal .modal-content {
  background: #1c2128 !important;
  color: white !important;
}

input,
textarea {
  background: #111418 !important;

  color: white !important;

  border:
    1px solid rgba(255,255,255,0.08) !important;
}

/* COOKIE BOX */

.cookie-consent {
  background: #171b20 !important;
}

/* PHONE NUMBER */

.text-morph {
  color: white !important;
}

/* =========================================
   MODERN MINIMAL FOOTER
========================================= */

.footer {
  background: #000 !important;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-top: 2px solid #f36404;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-top p {
  margin: 0;
}

.footer-top p:first-child {
  font-size: 0.95rem;
  color: #bdbdbd;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}

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

.footer-icons a {
  width: 48px;
  height: 48px;

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

  border-radius: 50%;

  background: rgba(255,255,255,0.06);

  color: #fff;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-icons a:hover {
  background: #f36404;

  transform: translateY(-4px);

  box-shadow:
    0 10px 25px rgba(243,100,4,0.45);
}

.footer-icons i {
  font-size: 1.1rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }

  .footer-icons {
    gap: 14px;
  }

  .footer-icons a {
    width: 44px;
    height: 44px;
  }
}

/* =========================
   MOBILE FIXES ONLy
========================= */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 15px;
    line-height: 1.6;
  }

  .container,
  .header-container,
  .why-choose-content {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  header {
    padding: 0.8rem 0;
    border-radius: 0 0 1rem 1rem;
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: nowrap;
    position: relative;
  }

  .phone-container {
    min-width: 0;
    flex: 1;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .phone-number {
    font-size: 0.9rem;
    min-width: 0;
    white-space: nowrap;
  }

  .get-quote-btn {
    font-size: 0.9rem;
    padding: 0.55rem 0.95rem;
    border-radius: 0.8rem;
  }

  .logo {
    display: block !important;
    width: 90px;
    height: auto;
    max-height: none;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    flex-shrink: 0;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    border-radius: 999px;
  }

  nav {
    display: none !important;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    width: auto;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    border-radius: 1rem;
    z-index: 1000;
  }

  nav.nav-active {
    display: flex !important;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 0.8rem;
  }

  .hero,
  .advanced-hero,
  .contact-hero,
  .who-we-are-hero {
    min-height: 60vh;
    height: auto;
    padding: 4rem 1rem;
    background-attachment: scroll;
    border-radius: 0;
  }

  .hero-overlay,
  .hero-text {
    padding: 0 0.5rem;
  }

  .hero h2,
  .hero-text h1,
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    line-height: 1.1;
  }

  .hero p,
  .hero-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-logo {
    width: 100%;
    max-width: 320px;
  }

  section.preview,
  .service-section,
  .why-choose-section,
  .cladding-advantage,
  .who-section,
  .stats,
  .testimonials,
  .team {
    padding: 3.5rem 1rem;
    border-radius: 1.25rem;
  }

  .why-choose {
    width: 100%;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .features,
  .why-cards,
  .advantage-cards,
  .stats,
  .who-content,
  .footer-locations {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .feature-card,
  .why-card,
  .advantage-card,
  .stat,
  .team-card,
  .testimonial-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .bubble {
    padding: 1.25rem !important;
    margin: 1rem !important;
    border-radius: 1rem;
  }

  .bubble h3,
  .bubble h4,
  .section-title,
  .why-choose h3,
  .team h2,
  .testimonials h2,
  .carousel-title,
  .who-text h2 {
    font-size: clamp(1.5rem, 6vw, 2.1rem);
    line-height: 1.15;
  }

  .who-img {
    height: 260px;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .form-overlay {
    padding: 1.5rem 1rem;
    border-radius: 1.25rem;
  }

  .carousel-wrapper {
    padding: 0.75rem;
  }

  .carousel-item {
    flex: 0 0 100% !important;
  }

  .carousel-item img {
    height: 240px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .footer {
    padding: 2.5rem 1rem;
    text-align: center;
  }

  .footer-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =========================
   INDEX / GLOBAL HEADER FIX
========================= */

/* desktop stays clean/dark */
header {
  background: rgba(10, 12, 16, 0.94) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28) !important;
}

.header-container {
  position: relative;
}

.hamburger {
  display: none;
  border: none;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

/* mobile header only */
@media (max-width: 768px) {
  header {
    background: rgba(8, 10, 14, 0.96) !important;
    border-radius: 0 0 1rem 1rem !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35) !important;
  }

  .header-container {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem !important;
    max-width: 100%;
  }

  .hamburger {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    z-index: 1002;
    order: 1;
  }

  .phone-container {
    order: 2;
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .phone-number {
    position: relative;
    min-width: auto;
    font-size: 0.9rem;
    color: #f36404 !important;
  }

  .get-quote-btn {
    font-size: 0.88rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
  }

  .logo {
    display: block !important;
    order: 3;
    width: 82px !important;
    height: auto;
    justify-self: end;
  }

  nav {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    width: auto !important;
    background: #11151b !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 0.6rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
    flex-direction: column !important;
    gap: 0.35rem;
    z-index: 1001;
  }

  nav.nav-active {
    display: flex !important;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem !important;
    text-align: center;
    color: #f5f7fa !important;
    background: transparent !important;
    border: 1px solid transparent;
    border-radius: 0.85rem;
    font-size: 1rem;
    text-decoration: none;
    transform: none !important;
  }

  nav a:hover,
  nav a:focus-visible {
    background: rgba(243, 100, 4, 0.12) !important;
    border-color: rgba(243, 100, 4, 0.28);
    color: #ffffff !important;
  }

  nav a::after {
    display: none !important;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* =========================================
   MOBILE HEADER ONLY
========================================= */

@media (max-width: 768px) {
  header {
    background: rgba(5, 7, 10, 0.96) !important;
    backdrop-filter: blur(14px);
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35) !important;
    padding: 0.75rem 0 !important;
  }

  .header-container {
    width: calc(100% - 1.2rem);
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0 !important;
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
  }

  .hamburger {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04) !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2002;
  }

  .hamburger:hover {
    background: rgba(243, 100, 4, 0.12) !important;
    border-color: rgba(243, 100, 4, 0.35) !important;
  }

  .hamburger span {
    width: 20px;
    height: 2.5px;
    border-radius: 999px;
    background: #f36404 !important;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .phone-container {
    min-width: 0;
    align-items: center;
    text-align: center;
    justify-self: center;
    gap: 0.35rem;
  }

  .phone-number {
    min-width: auto;
    font-size: 0.88rem;
    color: #f36404 !important;
  }

  .get-quote-btn {
    padding: 0.62rem 0.9rem;
    font-size: 0.82rem;
    border-radius: 999px;
    background: #f36404 !important;
    color: #fff !important;
  }

  .logo {
    display: block !important;
    width: 76px !important;
    height: auto;
    max-height: none !important;
    justify-self: end;
  }

  nav {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    width: auto !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem !important;
    padding: 0.7rem;
    background: #0d1014 !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.42);
    z-index: 2001;
  }

  nav.nav-active {
    display: flex !important;
  }

  nav a {
    width: 100%;
    padding: 0.95rem 1rem !important;
    text-align: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03) !important;
    color: #f5f7fa !important;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transform: none !important;
  }

  nav a::after {
    display: none !important;
  }

  nav a:hover,
  nav a:focus-visible {
    background: rgba(243, 100, 4, 0.12) !important;
    border-color: rgba(243, 100, 4, 0.24);
    color: #ffffff !important;
  }
}

@media (max-width: 768px) {
  .phone-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    min-width: 0 !important;
    white-space: nowrap;
  }

  .phone-number {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
    min-width: auto !important;
    margin: 0 !important;
    font-size: 0.82rem !important;
    font-weight: 700;
    line-height: 1;
    color: #f36404 !important;
    text-align: left;
  }

  .phone-number span {
    position: static !important;
    display: inline !important;
    transform: none !important;
    transition: none !important;
  }

  .phone-number .text-original {
    opacity: 1 !important;
  }

  .phone-number .text-morph {
    display: none !important;
    opacity: 0 !important;
  }

  .get-quote-btn {
    margin: 0 !important;
    padding: 0.62rem 0.9rem !important;
    font-size: 0.8rem !important;
    line-height: 1;
    white-space: nowrap;
  }
}

/* =========================================
WHO WE ARE PAGE â€” REAL MOBILE FIX
ADD TO VERY BOTTOM OF style.css
========================================= */
@media (max-width: 768px) {
  /* HERO */
  .hero.advanced-hero,
  .advanced-hero,
  .who-we-are-hero {
    min-height: 78svh !important;
    height: auto !important;
    max-height: none !important;
    padding: 7rem 1rem 3rem !important;
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .hero.advanced-hero::before,
  .advanced-hero::before,
  .who-we-are-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.62) !important;
    z-index: 1 !important;
  }

  .hero-text {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0.75rem !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-text h1,
  .hero h1 {
    position: relative !important;
    display: block !important;
    font-size: clamp(2rem, 9vw, 3rem) !important;
    line-height: 1.02 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    transform: none !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .hero-text .filled {
    margin-top: 0.2rem !important;
  }

  .hero-text .outlined {
    -webkit-text-stroke: 1px #f36404 !important;
  }

  .hero-text p {
    margin-top: 1rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    max-width: 30rem !important;
    color: #f0f0f0 !important;
    transform: none !important;
    opacity: 1 !important;
  }

  /* WHO SECTIONS */
  .who-section {
    padding: 3rem 1rem !important;
  }

  .who-content,
  .reverse .who-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 1.25rem !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .who-text {
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    order: 1 !important;
  }

  .who-text h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 0.8rem !important;
  }

  .who-text p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
    color: #d6d6d6 !important;
    max-width: 100% !important;
  }

  /* THE ACTUAL "IMAGES" ARE BACKGROUND DIVS */
  .who-img {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    min-height: 260px !important;
    height: 260px !important;
    max-height: none !important;
    flex: none !important;
    border-radius: 1rem !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28) !important;
    margin: 0 auto !important;
    opacity: 1 !important;
    transform: none !important;
  }

  /* keep centering clean in stats/footer areas */
  .stats.advanced {
    padding: 3.5rem 1rem !important;
  }

  .stats.advanced .stat {
    margin: 0.75rem 0 !important;
  }

  .footer,
  .footer-top {
    text-align: center !important;
  }
}

/* =========================================
WHO WE ARE MOBILE FULLSCREEN HERO + MOTION
PUT AT VERY BOTTOM OF style.css
========================================= */
@media (max-width: 768px) {
  .hero.advanced-hero {
    min-height: 100svh !important;
    height: 100svh !important;
    padding: 6.5rem 1.25rem 2.5rem !important;
    margin-top: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
  }

  .hero.advanced-hero::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.58)
    ) !important;
  }

  .hero-text {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 22rem !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .hero-text h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.02em;
    margin: 0 !important;
  }

  .hero-text .filled {
    margin-top: 0.25rem !important;
  }

  .hero-text p {
    margin: 1rem auto 0 !important;
    max-width: 20rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: #f1f1f1 !important;
  }
}

/* =========================================
OUR WORK MOBILE CAROUSEL FIX
PUT AT VERY BOTTOM OF style.css
========================================= */
@media (max-width: 768px) {
  .carousel-section,
  .carousel-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .carousel-container {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 0 3.5rem !important;
  }

  .carousel-track {
    display: flex !important;
    gap: 0.85rem !important;
    align-items: stretch !important;
    transition: transform 0.45s ease !important;
    will-change: transform;
  }

  .carousel-item {
    flex: 0 0 88% !important;
    width: 88% !important;
    min-width: 88% !important;
    margin: 0 auto !important;
    border-radius: 1rem !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18) !important;
  }

  .carousel-item img {
    display: block !important;
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 0 !important;
  }

  .carousel-caption,
  .carousel-content {
    padding: 1rem !important;
    text-align: center !important;
  }

  .carousel-title,
  .carousel-item h3,
  .carousel-item h4 {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.5rem !important;
  }

  .carousel-item p {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
  }

  .carousel-arrow {
    position: absolute !important;
    bottom: 0 !important;
    top: auto !important;
    transform: none !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(15, 17, 21, 0.9) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22) !important;
    z-index: 3 !important;
  }

  .carousel-arrow.prev {
    left: calc(50% - 56px) !important;
  }

  .carousel-arrow.next {
    right: calc(50% - 56px) !important;
  }

  .carousel-dots,
  .carousel-indicators {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.45rem !important;
    margin-top: 1rem !important;
  }

  .carousel-dots button,
  .carousel-indicators button,
  .carousel-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 999px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.24) !important;
  }

  .carousel-dots .active,
  .carousel-indicators .active,
  .carousel-dot.active {
    width: 22px !important;
    background: #f36404 !important;
  }
}

.split-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45em;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hollow-orange {
  color: transparent;
  -webkit-text-stroke: 2px #f36404;
  text-stroke: 2px #f36404;
}

.solid-white {
  color: #ffffff;
  font-weight: 900;
}

.hero .split-heading {
  font-size: clamp(2.2rem, 7vw, 5rem);
}

@media (max-width: 768px) {
  .hero .split-heading {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .hollow-orange {
    -webkit-text-stroke: 1.4px #f36404;
    text-stroke: 1.4px #f36404;
  }
}

/* =========================
INDEX POP HEADINGS
========================= */

.pop-heading {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  white-space: nowrap;
}

.pop-heading.center {
  justify-content: center;
  text-align: center;
}

.pop-heading .fill-white {
  color: #ffffff;
  font-weight: 900;
}

.pop-heading .fill-black {
  color: #111111;
  font-weight: 900;
}

.pop-heading .fill-orange {
  color: #f36404;
  font-weight: 900;
}

.pop-heading .hollow-orange {
  color: transparent;
  -webkit-text-stroke: 2px #f36404;
  text-stroke: 2px #f36404;
  font-weight: 900;
}

.pop-heading .hollow-white {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  font-weight: 900;
}

.service-section h3.pop-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
}

.why-choose-section h3.pop-heading,
.section-title.pop-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
  justify-content: center;
}

.advantage-card h4.pop-heading,
.why-card h4.pop-heading {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  line-height: 1;
  justify-content: center;
}

@media (max-width: 768px) {
  .pop-heading {
    gap: 0.18em;
    line-height: 1;
  }

  .pop-heading .hollow-orange {
    -webkit-text-stroke: 1.3px #f36404;
    text-stroke: 1.3px #f36404;
  }

  .pop-heading .hollow-white {
    -webkit-text-stroke: 1.3px #ffffff;
    text-stroke: 1.3px #ffffff;
  }

  .service-section h3.pop-heading,
  .why-choose-section h3.pop-heading,
  .section-title.pop-heading {
    font-size: clamp(1.55rem, 7vw, 2.4rem);
  }
}

/* =================================
INDEX MOBILE RESET
Turn off fancy heading styling on phones
================================= */
@media (max-width: 768px) {
  .pop-heading,
  h3.pop-heading,
  h4.pop-heading,
  .section-title.pop-heading,
  .why-choose-section h3.pop-heading,
  .why-card h4.pop-heading,
  .advantage-card h4.pop-heading,
  .service-section h3.pop-heading {
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.2 !important;
    text-align: center !important;
    gap: 0 !important;
  }

  .pop-heading span,
  .pop-heading .fill-white,
  .pop-heading .fill-black,
  .pop-heading .fill-orange,
  .pop-heading .hollow-orange,
  .pop-heading .hollow-white {
    display: inline !important;
    color: inherit !important;
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    font: inherit !important;
    letter-spacing: inherit !important;
  }

  .service-section h3.pop-heading {
    font-size: 1.9rem !important;
    color: var(--orange) !important;
    margin-bottom: 1rem !important;
  }

  .why-choose-section h3.pop-heading,
  .section-title.pop-heading {
    font-size: 2rem !important;
    color: #ffffff !important;
    margin-bottom: 1rem !important;
  }

  .why-card h4.pop-heading,
  .advantage-card h4.pop-heading {
    font-size: 1.25rem !important;
    color: #ffffff !important;
    margin-bottom: 0.75rem !important;
  }

  .service-content p,
  .service-content li,
  .why-card p,
  .advantage-card p,
  .why-footer {
    text-align: center !important;
  }
}

/* =========================
ADVANTAGE CARD ICON FIX
========================= */
.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantage-card img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem auto;
}

.advantage-card h4 {
  width: 100%;
  text-align: center;
}

.advantage-card p {
  width: 100%;
  text-align: center;
}

/* =========================
DESKTOP ONLY - WIDER ADVANTAGE CARDS
========================= */
@media (min-width: 769px) {
  .advantage-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
  }

  .advantage-card {
    flex: 1 1 360px;
    min-width: 360px;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  header {
    position: relative !important;
  }
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.why-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2.25rem 2rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, opacity 0.5s ease, border-color 0.35s ease, background 0.35s ease;
  opacity: 0;
  transform: translateY(50px);
  backdrop-filter: blur(6px);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243,100,4,0.35);
  background: rgba(255,255,255,0.07) !important;
}

.why-card i {
  font-size: 2.2rem;
  margin: 0 auto 1rem;
  color: var(--orange) !important;
}

.why-card h4 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  color: #fff !important;
  text-align: center;
}

.why-card p {
  color: #d0d5dd !important;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .why-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }
}

/* =========================
SHEPPARD STEEL ADVANTAGE â€” UPGRADE
========================= */

.cladding-advantage {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(243,100,4,0.10), transparent 24%),
    radial-gradient(circle at 82% 25%, rgba(243,100,4,0.08), transparent 18%),
    linear-gradient(180deg, #111418 0%, #171b21 50%, #0e1013 100%) !important;
  text-align: center;
}

.advantage-shell {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.advantage-bg-word {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.advantage-heading-wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.advantage-eyebrow {
  color: #f36404;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cladding-advantage .section-title {
  margin-bottom: 1rem;
  color: #fff !important;
  opacity: 1;
  transform: none;
}

.advantage-intro {
  max-width: 60ch;
  margin: 0 auto;
  color: #cfd5dc;
  font-size: 1.05rem;
  line-height: 1.8;
}

.advantage-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.advantage-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
  padding: 2.35rem 1.75rem 1.6rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.30) !important;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.12) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.advantage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(243,100,4,0.10), transparent 48%);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.advantage-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(243,100,4,0.34) !important;
  box-shadow: 0 28px 54px rgba(0,0,0,0.42) !important;
}

.advantage-card:hover::before {
  transform: translateX(140%);
}

.advantage-card > * {
  position: relative;
  z-index: 2;
}

.featured-advantage {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(243,100,4,0.28) !important;
}

.adv-card-count {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 3.1rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}

.adv-card-topline {
  width: 88px;
  height: 3px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #f36404, transparent);
  box-shadow: 0 0 18px rgba(243,100,4,0.35);
}

.advantage-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  margin: 0 auto 1rem auto;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter:
    brightness(0)
    saturate(100%)
    invert(55%)
    sepia(97%)
    saturate(2353%)
    hue-rotate(-3deg)
    brightness(110%)
    contrast(109%);
}

.advantage-card:hover img {
  transform: translateY(-4px) scale(1.08);
  filter:
    brightness(0)
    saturate(100%)
    invert(63%)
    sepia(100%)
    saturate(2900%)
    hue-rotate(-2deg)
    brightness(120%)
    contrast(114%);
}

.advantage-card h4 {
  width: 100%;
  margin: 0 0 0.85rem;
  color: #fff !important;
  font-size: 1.45rem;
  text-align: center;
}

.advantage-card p {
  width: 100%;
  margin: 0;
  color: #cfd5dc !important;
  text-align: center;
  line-height: 1.75;
  font-size: 1rem;
}

.adv-card-accent {
  width: 72px;
  height: 3px;
  margin: 1.35rem auto 0.95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(243,100,4,0.18), #f36404, rgba(243,100,4,0.18));
}

.adv-card-tag {
  display: inline-block;
  color: rgba(255,255,255,0.56);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.cladding-advantage.animate-on-scroll.visible .section-title,
.cladding-advantage.animate-on-scroll.visible .advantage-intro,
.cladding-advantage.animate-on-scroll.visible .advantage-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .advantage-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .featured-advantage {
    transform: none;
  }

  .advantage-bg-word {
    font-size: clamp(3rem, 16vw, 7rem);
    top: 54px;
  }
}

@media (max-width: 768px) {
  .cladding-advantage {
    padding: 5.5rem 1.2rem;
  }

  .advantage-heading-wrap {
    margin-bottom: 2.5rem;
  }

  .advantage-card {
    padding: 2rem 1.2rem 1.4rem;
  }

  .advantage-card h4 {
    font-size: 1.28rem;
  }

  .advantage-intro {
    font-size: 0.98rem;
  }
}

/* =========================
ADVANTAGE SECTION â€” ANIMATION UPGRADE ONLY
========================= */

.cladding-advantage {
  position: relative;
  overflow: hidden;
}

.cladding-advantage .section-title {
  opacity: 0;
  transform: translateY(42px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.cladding-advantage.visible .section-title,
.cladding-advantage.animate-on-scroll.visible .section-title {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.advantage-cards {
  perspective: 1200px;
}

.advantage-card {
  position: relative;
  overflow: hidden;
  transform-origin: center bottom;
  opacity: 0;
  transform: translateY(48px) rotateX(10deg) scale(0.96);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
  will-change: transform, opacity;
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 18%,
      rgba(255,255,255,0.08) 46%,
      rgba(255,255,255,0.18) 50%,
      rgba(255,255,255,0.08) 54%,
      transparent 82%
    );
  transform: translateX(-160%);
  opacity: 0;
  pointer-events: none;
}

.cladding-advantage.visible .advantage-card,
.cladding-advantage.animate-on-scroll.visible .advantage-card,
.advantage-card.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) scale(1);
}

.cladding-advantage.visible .advantage-card::before,
.cladding-advantage.animate-on-scroll.visible .advantage-card::before,
.advantage-card.animate-on-scroll.visible::before {
  opacity: 1;
  animation: advantageSheen 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.advantage-card:nth-child(1) {
  transition-delay: 0.12s;
}
.advantage-card:nth-child(2) {
  transition-delay: 0.28s;
}
.advantage-card:nth-child(3) {
  transition-delay: 0.44s;
}

.advantage-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 42px rgba(0,0,0,0.20);
  border-color: rgba(243, 100, 4, 0.45);
}

.advantage-card img {
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
  will-change: transform;
}

.advantage-card:hover img {
  transform: translateY(-6px) scale(1.1);
}

.advantage-card h4 {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}

.advantage-card:hover h4 {
  transform: translateY(-3px);
}

.advantage-card p {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}

.advantage-card:hover p {
  transform: translateY(-2px);
}

@keyframes advantageSheen {
  0% {
    transform: translateX(-160%);
  }
  100% {
    transform: translateX(160%);
  }
}


@media (max-width: 768px) {
  .advantage-card {
    transform: translateY(38px) scale(0.97);
  }

  .advantage-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cladding-advantage .section-title,
  .advantage-card,
  .advantage-card::before,
  .advantage-card img,
  .advantage-card h4,
  .advantage-card p {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

/* =========================
TEXT WIDTH + STEEL ERECTORS MINI GALLERY
========================= */

/* Keep section text from stretching too wide */
.service-content p,
.service-content ul,
.service-content ol,
.why-footer,
.why-choose-content p,
.why-choose-content ul,
.feature-card p,
.advantage-card p,
.bubble p,
.bubble ul {
  max-width: 58ch;
}

.service-content p,
.service-content ul,
.service-content ol,
.why-choose-content p,
.why-choose-content ul,
.bubble p,
.bubble ul {
  text-align: left;
}

/* Steel Building Erectors small images under text */
.erectors-mini-gallery {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.4rem;
  flex-wrap: nowrap;
  max-width: 520px;
}

.erectors-mini-gallery img {
  width: calc(33.333% - 0.57rem);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.erectors-mini-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
  border-color: rgba(243,100,4,0.35);
}

@media (max-width: 768px) {
  .service-content p,
  .service-content ul,
  .service-content ol,
  .why-footer,
  .why-choose-content p,
  .why-choose-content ul,
  .feature-card p,
  .advantage-card p,
  .bubble p,
  .bubble ul {
    max-width: 100%;
  }

  .erectors-mini-gallery {
    max-width: 100%;
    gap: 0.65rem;
  }

  .erectors-mini-gallery img {
    width: calc(33.333% - 0.44rem);
    border-radius: 10px;
  }
}

/* =========================
MINIMAL TESTIMONIAL SECTION
========================= */

.testimonial-minimal {
  padding: 6rem 2rem 5rem;
  background: #11151a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.testimonial-minimal-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-mini-kicker {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.testimonial-minimal h3 {
  color: #fff;
  margin-bottom: 2rem;
}

.testimonial-rotator {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonial-rotating-quote {
  color: #f4f6f8;
  font-size: clamp(1.2rem, 2.2vw, 1.95rem);
  line-height: 1.7;
  font-weight: 500;
  max-width: 30ch;
  margin: 0 auto 1rem;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-rotating-name {
  display: block;
  color: #aeb8c4;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.testimonial-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-mini-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.testimonial-mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.testimonial-mini-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonial-minimal {
    padding: 4.25rem 1.2rem 3.75rem;
  }

  .testimonial-rotating-quote {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

/* =========================================================
   CLEAN MOBILE + TABLET POLISH
   Header untouched
   Put at very bottom of style.css
========================================================= */

@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Safer section spacing */
  .service-section,
  .who-section,
  .cladding-advantage,
  .testimonial-minimal,
  .our-crew-section,
  .team,
  .testimonials,
  .stats.advanced,
  .carousel-section,
  section.preview {
    padding-top: clamp(3rem, 5vw, 5rem) !important;
    padding-bottom: clamp(3rem, 5vw, 5rem) !important;
  }

  /* Keep content from stretching too wide */
  .service-content,
  .who-text,
  .advantage-heading-wrap,
  .testimonial-minimal-inner,
  .company-info-card,
  .bubble,
  .form-overlay {
    max-width: 100%;
  }

  /* Image cleanup */
  .service-image img,
  .carousel-item img,
  .team-card img,
  .testimonial-card img,
  .crew-photo,
  .erectors-mini-gallery img,
  .image-end img {
    display: block;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .service-image img {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .carousel-item img {
    aspect-ratio: 4 / 3;
    height: auto !important;
    border-radius: 18px;
  }

  .erectors-mini-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 520px;
  }

  .erectors-mini-gallery img {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  /* Who we are background-image blocks */
  .who-img {
    width: 100% !important;
    min-height: clamp(260px, 42vw, 420px) !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 18px !important;
  }

  /* Crew image circles stay clean */
  .crew-photo-wrap {
    width: clamp(118px, 16vw, 148px);
    height: clamp(118px, 16vw, 148px);
  }

  .crew-photo {
    width: calc(clamp(118px, 16vw, 148px) - 12px);
    height: calc(clamp(118px, 16vw, 148px) - 12px);
    border-radius: 50%;
  }
}

@media (max-width: 900px) {
  /* Service sections stack nicely */
  .service-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.5rem !important;
  }

  .service-content,
  .service-image {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Who we are sections stack nicely */
  .who-content,
  .reverse .who-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1.5rem !important;
  }

  .who-text,
  .who-img {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Advantage cards go single column sooner */
  .advantage-cards {
    grid-template-columns: 1fr !important;
    max-width: 560px;
    margin-inline: auto;
  }

  .featured-advantage {
    transform: none !important;
  }

  /* Team/testimonials breathe better */
  .team-cards,
  .testimonial-cards,
  .footer-locations {
    gap: 1rem !important;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }

  /* =========================
     TYPOGRAPHY: CLEAN + ORDERED
  ========================= */

  /* Hero headings only */
  .hero h1,
  .hero h2,
  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.75rem !important;
  }

  .hero p,
  .hero-text p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
    max-width: 32rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Restore section heading hierarchy without flattening everything */
  .service-section h3,
  .who-text h2,
  .carousel-title,
  .team h2,
  .testimonials h2,
  .section-title,
  .company-info-card h3,
  .bubble h3,
  .bubble h4 {
    font-size: clamp(1.7rem, 6vw, 2.25rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.85rem !important;
  }

  .why-card h4,
  .advantage-card h4,
  .crew-meta h3 {
    font-size: 1.15rem !important;
    line-height: 1.25 !important;
  }

  .service-section p,
  .service-section li,
  .who-text p,
  .why-card p,
  .advantage-card p,
  .testimonial-card p,
  .carousel-item p,
  .bubble p,
  .bubble li,
  .company-info-card p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  /* =========================
     TEXT ALIGNMENT: INTENTIONAL
  ========================= */

  /* Left align content sections */
  .service-content,
  .service-content p,
  .service-content li,
  .service-content ul,
  .who-text,
  .who-text p,
  .bubble,
  .bubble p,
  .bubble li {
    text-align: left !important;
  }

  /* Keep designed centered sections centered */
  .carousel-title,
  .testimonial-minimal-inner,
  .team,
  .testimonials,
  .crew-heading,
  .company-info-card,
  .why-choose-overlay,
  .why-card,
  .advantage-card {
    text-align: center !important;
  }

  /* =========================
     POP HEADINGS: SIMPLIFIED, NOT BROKEN
  ========================= */

  .pop-heading,
  h3.pop-heading,
  h4.pop-heading,
  .section-title.pop-heading {
    display: block !important;
    white-space: normal !important;
    line-height: 1.08 !important;
    letter-spacing: 0.01em !important;
    gap: 0 !important;
  }

  .service-section h3.pop-heading {
    text-align: left !important;
    font-size: clamp(1.75rem, 7vw, 2.3rem) !important;
  }

  .why-choose-section h3.pop-heading,
  .section-title.pop-heading,
  .testimonial-minimal h3.pop-heading {
    text-align: center !important;
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
  }

  .why-card h4.pop-heading,
  .advantage-card h4.pop-heading {
    text-align: center !important;
    font-size: 1.15rem !important;
  }

  .pop-heading .hollow-orange,
  .pop-heading .hollow-white {
    -webkit-text-stroke-width: 1.1px !important;
  }

  /* =========================
     PAGE-SPECIFIC HERO FIXES
  ========================= */

  .hero,
  .advanced-hero,
  .contact-hero,
  .who-we-are-hero {
    min-height: clamp(420px, 72svh, 680px) !important;
    height: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    background-attachment: scroll !important;
    background-position: center center !important;
    background-size: cover !important;
  }

  .hero-overlay,
  .hero-text {
    padding-inline: 0.25rem !important;
  }

  .hero-logo {
    width: min(100%, 320px) !important;
    height: auto !important;
  }

  /* Built Strong / Built Right stays intentional */
  .hero-text .outlined,
  .hero-text .filled {
    display: block !important;
    margin: 0 !important;
  }

  .hero-text .filled {
    margin-top: 0.15rem !important;
  }

  .hero-text .outlined {
    -webkit-text-stroke: 1.2px #f36404 !important;
  }

  /* =========================
     CAROUSEL CLEANUP
  ========================= */

  .carousel-section {
    margin: 2.5rem auto !important;
    padding-inline: 1rem !important;
  }

  .carousel-wrapper {
    padding: 0.9rem !important;
    border-radius: 20px !important;
  }

  .carousel-track {
    gap: 0.85rem !important;
  }

  .carousel-item {
    flex: 0 0 88% !important;
    width: 88% !important;
    min-width: 88% !important;
  }

  .carousel-arrow {
    width: 42px !important;
    height: 42px !important;
    font-size: 1rem !important;
  }

  /* =========================
     CREW + CARDS
  ========================= */

  .crew-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .crew-card,
  .crew-card.featured-card,
  .team-card,
  .testimonial-card,
  .why-card,
  .advantage-card {
    min-height: auto !important;
    border-radius: 20px !important;
  }

  .crew-card,
  .crew-card.featured-card {
    padding: 1.4rem 1rem 1.15rem !important;
  }

  .company-info-card {
    padding: 1.5rem 1.1rem !important;
    border-radius: 20px !important;
  }

  /* =========================
     FORMS / MODALS / BUBBLES
  ========================= */

  .bubble,
  .form-overlay,
  .modal-content,
  #quoteModal .modal-content {
    padding: 1.25rem !important;
    border-radius: 18px !important;
    width: min(100%, 100%) !important;
    max-width: 100% !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }

  /* =========================
     MISC
  ========================= */

  .stats,
  .stats.advanced,
  .footer-locations {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .image-end img {
    border-radius: 16px !important;
  }
}

@media (max-width: 520px) {
  .carousel-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
  }

  .carousel-item img {
    aspect-ratio: 4 / 3;
  }

  .service-section h3,
  .service-section h3.pop-heading,
  .who-text h2,
  .section-title,
  .carousel-title {
    font-size: clamp(1.55rem, 8vw, 2rem) !important;
  }

  .erectors-mini-gallery {
    gap: 0.5rem;
  }
}

/* ==========================================
   MOBILE CONTENT TRIM
   Keep the important stuff on phones/tablets
   Header untouched
========================================== */

@media (max-width: 768px) {
  /* Homepage service sections:
     keep first core paragraph, hide supporting text/list overload */
  .service-section .service-content p:not(:first-of-type),
  .service-section .service-content ul {
    display: none !important;
  }

  /* Keep welding logo layout neat when text is reduced */
  .welding-header {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  /* Why choose section:
     keep cards, remove extra closing sentence */
  .why-footer {
    display: none !important;
  }

  /* Advantage section:
     keep headline + cards, trim intro paragraph */
  .advantage-intro {
    display: none !important;
  }

  /* Testimonials:
     keep one short testimonial area but tighten it */
  .testimonial-rotating-quote {
    max-width: 24ch !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  /* Who We Are page:
     keep section headings and one supporting paragraph,
     trim extra section intro/supporting text where possible */
  .hero-text p {
    max-width: 24ch !important;
  }

  .crew-intro,
  .company-info-card p:last-of-type {
    display: none !important;
  }

  /* Crew cards:
     show role/name, hide expandable bio copy on mobile */
  .crew-bio-panel {
    display: none !important;
  }

  .featured-card .crew-hitarea[aria-expanded="true"] .crew-bio-panel {
    display: none !important;
  }

  /* General long-copy trim for bubble sections and modal helpers */
  .bubble p:not(:first-of-type),
  .bubble ul,
  .modal-content p:not(:first-of-type) {
    display: none !important;
  }

  /* Slightly tighter spacing once text is reduced */
  .service-section,
  .who-section,
  .cladding-advantage,
  .our-crew-section,
  .testimonial-minimal {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .service-content,
  .who-text,
  .advantage-heading-wrap,
  .company-info-card,
  .bubble {
    gap: 0.75rem;
  }
}

@media (max-width: 520px) {
  /* Extra-small phones: reduce even more clutter */
  .testimonial-mini-kicker,
  .adv-card-tag,
  .adv-card-count,
  .adv-card-accent,
  .adv-card-topline,
  .crew-jump-btn {
    display: none !important;
  }

  .testimonial-mini-dots {
    margin-top: 1rem !important;
  }

  .service-section .service-content p:first-of-type,
  .who-text p,
  .why-card p,
  .advantage-card p {
    font-size: 0.97rem !important;
    line-height: 1.6 !important;
  }
}

/* ==========================================
   OUR WORK â€” MOBILE CAROUSEL UPGRADE
   Better image framing, spacing, arrows
   Header untouched
========================================== */

@media (max-width: 768px) {
  .carousel-section {
    padding: 0 0.9rem !important;
    margin: 2.4rem auto !important;
  }

  .carousel-title {
    font-size: clamp(1.55rem, 6vw, 2.1rem) !important;
    margin-bottom: 1.15rem !important;
    letter-spacing: 0.02em !important;
  }

  .carousel-title::after {
    width: 72px !important;
    height: 3px !important;
    margin-top: 0.7rem !important;
  }

  .carousel-wrapper {
    position: relative !important;
    overflow: hidden !important;
    padding: 0.8rem 0.75rem 4.25rem !important;
    border-radius: 1.35rem !important;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow:
      0 18px 34px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(10px) !important;
  }

  .carousel-track {
    display: flex !important;
    gap: 0.85rem !important;
    align-items: stretch !important;
    will-change: transform !important;
    touch-action: pan-y pinch-zoom !important;
  }

  .carousel-item {
    flex: 0 0 88% !important;
    width: 88% !important;
    min-width: 88% !important;
    margin: 0 !important;
    border-radius: 1.1rem !important;
    overflow: hidden !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22) !important;
  }

  .carousel-item img {
    display: block !important;
    width: 100% !important;
    height: clamp(240px, 54vw, 310px) !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    box-shadow: none !important;
    filter: contrast(1.04) saturate(1.04) !important;
    transform: none !important;
  }

  /* Give smaller galleries a little extra polish too */
  #metal-decking .carousel-item img,
  #steel-cladding .carousel-item img {
    height: clamp(250px, 58vw, 320px) !important;
  }

  .carousel-arrow {
    position: absolute !important;
    bottom: 0.95rem !important;
    top: auto !important;
    transform: none !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(10, 12, 16, 0.92) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.28) !important;
    backdrop-filter: blur(8px) !important;
  }

  .carousel-arrow.prev {
    left: calc(50% - 56px) !important;
  }

  .carousel-arrow.next {
    right: calc(50% - 56px) !important;
  }

  .carousel-arrow:hover,
  .carousel-arrow:focus-visible {
    background: rgba(243, 100, 4, 0.95) !important;
    border-color: rgba(243, 100, 4, 0.55) !important;
    box-shadow: 0 12px 26px rgba(243,100,4,0.28) !important;
  }

  /* Subtle fade edges make it feel like a real carousel */
  .carousel-wrapper::before,
  .carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0.8rem;
    bottom: 4.25rem;
    width: 18px;
    z-index: 2;
    pointer-events: none;
  }

  .carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(15,17,21,0.7), transparent);
  }

  .carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(15,17,21,0.7), transparent);
  }
}

@media (max-width: 520px) {
  .carousel-section {
    padding: 0 0.7rem !important;
    margin: 2rem auto !important;
  }

  .carousel-wrapper {
    padding: 0.7rem 0.65rem 4rem !important;
    border-radius: 1.15rem !important;
  }

  .carousel-item {
    flex: 0 0 92% !important;
    width: 92% !important;
    min-width: 92% !important;
    border-radius: 1rem !important;
  }

  .carousel-item img {
    height: clamp(230px, 64vw, 280px) !important;
  }

  #metal-decking .carousel-item img,
  #steel-cladding .carousel-item img {
    height: clamp(240px, 68vw, 290px) !important;
  }

  .carousel-arrow {
    width: 44px !important;
    height: 44px !important;
    bottom: 0.75rem !important;
  }

  .carousel-arrow.prev {
    left: calc(50% - 54px) !important;
  }

  .carousel-arrow.next {
    right: calc(50% - 54px) !important;
  }

  .carousel-wrapper::before,
  .carousel-wrapper::after {
    width: 12px;
  }
}

/* ==========================================
   IPAD IMAGE CONTAINMENT FIX
   Smaller images on tablet, not stretched
   Header untouched
========================================== */

@media (min-width: 769px) and (max-width: 1100px) {
  html, body {
    overflow-x: hidden;
  }

  /* HOME SERVICE SECTIONS */
  .service-section {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr) !important;
    align-items: center !important;
    gap: 2rem !important;
  }

  .service-image {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .service-image img,
  .section-image {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 1.25rem !important;
    margin-inline: auto !important;
    display: block !important;
  }

  /* SMALL GALLERY UNDER STEEL ERECTORS */
  .erectors-mini-gallery {
    max-width: 420px !important;
    margin-top: 1.25rem !important;
    gap: 0.7rem !important;
  }

  .erectors-mini-gallery img {
    width: calc(33.333% - 0.47rem) !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
  }

  /* OUR WORK PAGE */
  .carousel-section {
    max-width: 1100px !important;
    margin: 3.25rem auto !important;
    padding: 0 1.25rem !important;
  }

  .carousel-wrapper {
    padding: 1rem 3.25rem !important;
  }

  .carousel-track {
    gap: 0.85rem !important;
    align-items: stretch !important;
  }

  .carousel-item {
    flex: 0 0 calc(33.333% - 0.57rem) !important;
    width: calc(33.333% - 0.57rem) !important;
    min-width: calc(33.333% - 0.57rem) !important;
    display: flex !important;
    justify-content: center !important;
  }

  .carousel-item img {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    margin-inline: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 1.1rem !important;
    display: block !important;
  }

  /* WHO WE ARE IMAGE PANELS */
  .who-content,
  .reverse .who-content {
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr) !important;
    gap: 2rem !important;
    align-items: center !important;
  }

  .who-img {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    margin-inline: auto !important;
    border-radius: 1.25rem !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* CREW PHOTOS */
  .crew-photo-wrap {
    width: 118px !important;
    height: 118px !important;
  }

  .crew-photo {
    width: 106px !important;
    height: 106px !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* CONTACT / GENERAL IMAGE END BLOCKS */
  .image-end img {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    margin-inline: auto !important;
    display: block !important;
  }
}

/* ==========================================
   MOBILE HERO â€” LOGO ONLY, NO TEXT
========================================== */
@media (max-width: 768px) {
  .hero {
    min-height: 58svh !important;
    height: 58svh !important;
    max-height: none !important;
    padding: 0 1.25rem !important;
    margin-top: 0 !important;
    border-radius: 0 0 1.5rem 1.5rem !important;
    background-position: center center !important;
    background-size: cover !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }

  .hero::before {
    background:
      radial-gradient(circle at center, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.72) 100%) !important;
  }

  .hero-overlay {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .hero-logo {
    width: min(78vw, 290px) !important;
    max-width: 290px !important;
    height: auto !important;
    animation: none !important;
    transform: none !important;
    filter:
      drop-shadow(0 14px 34px rgba(0, 0, 0, 0.38))
      drop-shadow(0 3px 10px rgba(243, 100, 4, 0.16));
  }

  .hero h2,
  .hero p,
  .hero-overlay h2,
  .hero-overlay p {
    display: none !important;
  }
}

/* ===== HARD MOBILE PERFORMANCE FIX ===== */
@media (max-width: 1024px) {
  html {
    scroll-behavior: auto !important;
  }

  *, *::before, *::after {
    animation: none !important;
    transition-property: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .fade-in.visible,
  .zoom-in,
  .zoom-in.visible,
  .slide-up,
  .slide-up.visible,
  .animate-on-scroll,
  .animate-on-scroll.visible,
  .why-choose-section,
  .why-choose-section.visible,
  .why-bg-image,
  .why-card,
  .advantage-card,
  .section-title,
  .service-section,
  .hero,
  .hero.visible,
  .hero-logo,
  .hero-overlay,
  .hero h2,
  .hero p,
  .testimonial-fade-in,
  .testimonial-fade-out {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    filter: none !important;
    will-change: auto !important;
  }

  .why-bg-image {
    opacity: 0.25 !important;
  }

  .hero::before {
    transition: none !important;
  }
}

/* =========================
STEEL ERECTOR GALLERY UPGRADE
Desktop / tablet only
========================= */

.erectors-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  width: 100%;
  max-width: 980px;
  margin-top: 1.5rem;
  align-items: stretch;
}

.erectors-mini-gallery img {
  width: 100%;
  height: 320px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  filter: saturate(1.02) contrast(1.03);
}

.erectors-mini-gallery img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
  filter: saturate(1.08) contrast(1.05);
}

/* give the middle one a slightly stronger presence */
.erectors-mini-gallery img:nth-child(2) {
  height: 360px;
}

/* tablet */
@media (max-width: 1024px) {
  .erectors-mini-gallery {
    max-width: 100%;
    gap: 0.9rem;
  }

  .erectors-mini-gallery img {
    height: 260px;
    border-radius: 18px;
  }

  .erectors-mini-gallery img:nth-child(2) {
    height: 290px;
  }
}

/* hide completely on mobile */
@media (max-width: 768px) {
  .erectors-mini-gallery {
    display: none !important;
  }
}

/* =========================================
HARD MOBILE NO-ANIMATION MODE
Removes all motion on touch devices to stop first-scroll freezing
========================================= */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html {
    scroll-behavior: auto !important;
  }

  body {
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    will-change: auto !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .zoom-in,
  .slide-up,
  .animate-on-scroll,
  .hero,
  .hero-overlay,
  .hero-logo,
  .hero h1,
  .hero h2,
  .hero p,
  .hero-text,
  .hero-text h1,
  .hero-text p,
  .who-content,
  .who-img,
  .why-card,
  .advantage-card,
  .section-title,
  .stats,
  .stat,
  .team-card,
  .testimonial-card,
  .carousel-section,
  .parallax-text,
  .crew-card,
  .crew-photo,
  .crew-bio-panel {
    opacity: 1 !important;
    transform: none !important;
  }

  .parallax,
  .advanced-hero,
  .who-we-are-hero,
  .contact-hero,
  .cookie-hero,
  .why-bg-image {
    background-attachment: scroll !important;
  }
}

/* ==========================================
OUR CREW – GRID LAYOUT (3 / 4 / 5)
========================================== */

.our-crew-section {
  position: relative;
  padding: 6rem 6vw 6.5rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 100, 4, 0.18), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(243, 100, 4, 0.12), transparent 24%),
    radial-gradient(circle at 15% 88%, rgba(243, 100, 4, 0.18), transparent 34%),
    linear-gradient(180deg, #000000 0%, #050608 40%, #0b0e13 100%);
  overflow: hidden;
}

.our-crew-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.our-crew-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.our-crew-eyebrow {
  margin: 0 0 0.5rem;
  color: #f36404;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.our-crew-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.our-crew-subtitle {
  margin: 0;
  color: #d0d5dd;
  font-size: 1rem;
  line-height: 1.75;
}

/* grid rows */

.crew-row {
  display: grid;
  gap: 1.75rem;
}

.crew-row + .crew-row {
  margin-top: 2.5rem;
}

/* desktop templates */

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

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

.crew-row-crew {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* card base */

.crew-card {
  position: relative;
  border-radius: 24px;
  padding: 1.6rem 1.2rem 1.25rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(243,100,4,0.22), transparent 68%),
    linear-gradient(180deg, rgba(24,24,24,0.96), rgba(9,9,11,0.98));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.75),
    0 0 0 1px rgba(243,100,4,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    opacity 0.5s ease;
  overflow: hidden;
}

.crew-card.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.crew-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 12% 0, rgba(243,100,4,0.14), transparent 52%),
    radial-gradient(circle at 90% 100%, rgba(243,100,4,0.13), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.crew-card:hover,
.crew-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(243,100,4,0.6);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.85),
    0 0 0 1px rgba(243,100,4,0.3);
}

.crew-card:hover::before,
.crew-card:focus-within::before {
  opacity: 1;
}

/* photo + spinning ring */

.crew-photo-wrap {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    rgba(243,100,4,0.18),
    rgba(243,100,4,0.98),
    rgba(243,100,4,0.32),
    rgba(243,100,4,0.18)
  );
  animation: crewRingSpin 11s linear infinite;
}

.crew-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(243,100,4,0.6);
  box-shadow:
    0 0 0 4px rgba(243,100,4,0.22),
    0 0 24px rgba(243,100,4,0.35);
}

.crew-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(12%) contrast(1.06);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1),
              filter 0.35s ease;
}

.crew-card:hover .crew-photo,
.crew-card:focus-within .crew-photo {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.12);
}

.crew-name {
  margin: 0.2rem 0 0.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.crew-role {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d0d5dd;
}

/* size tiers */

.crew-card-owner .crew-photo-wrap {
  width: 178px;
  height: 178px;
}

.crew-card-owner .crew-name {
  font-size: 1.25rem;
}

.crew-card-owner .crew-role {
  color: #f36404;
}

.crew-card-leader .crew-photo-wrap {
  width: 150px;
  height: 150px;
}

.crew-card-leader .crew-name {
  font-size: 1.05rem;
}

.crew-card-regular .crew-photo-wrap {
  width: 126px;
  height: 126px;
}

.crew-card-regular .crew-name {
  font-size: 0.95rem;
}

@keyframes crewRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* responsive */

@media (max-width: 1100px) {
  .crew-row-owners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .crew-row-leaders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .crew-row-crew {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .our-crew-section {
    padding: 4rem 1.5rem 4.5rem;
  }
  .crew-row-owners,
  .crew-row-leaders {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .crew-row-crew {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .crew-row-owners,
  .crew-row-leaders,
  .crew-row-crew {
    grid-template-columns: minmax(0, 1fr);
  }
  .crew-card-owner .crew-photo-wrap,
  .crew-card-leader .crew-photo-wrap,
  .crew-card-regular .crew-photo-wrap {
    width: 136px;
    height: 136px;
  }
}

/* Modern crew header card */
.our-crew-section .our-crew-header {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  padding: 1.4rem 1.8rem 1.6rem;
  text-align: center;
  background: radial-gradient(circle at 0 0, rgba(243,100,4,0.14), transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(243,100,4,0.10), transparent 52%),
              #05070a;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 14px 32px rgba(0,0,0,0.7),
    0 0 0 1px rgba(243,100,4,0.16);
}

/* reset any weird inherited layout inside */
.our-crew-section .our-crew-header *,
.our-crew-section .our-crew-header {
  display: block;
  white-space: normal;
}

/* eyebrow */
.our-crew-eyebrow {
  margin: 0 0 0.4rem;
  color: #f36404;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* title */
.our-crew-title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.9rem, 3.1vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* subtitle */
.our-crew-subtitle {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #d0d5dd;
}

/* small screens: a little looser */
@media (max-width: 640px) {
  .our-crew-section .our-crew-header {
    max-width: 100%;
    margin-bottom: 2.2rem;
    padding: 1.3rem 1.1rem 1.5rem;
    border-radius: 16px;
  }

  .our-crew-title {
    font-size: 1.7rem;
    letter-spacing: 0.06em;
  }

  .our-crew-subtitle {
    font-size: 0.94rem;
  }
}

.footer-address {
  margin: 0;
  font-size: 0.98rem;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-address i {
  color: var(--orange);
  font-size: 1rem;
}