:root {
    --brand-dark: #0a0a0a;
    --brand-blue: #1e90ff;
    --brand-light: #f8f9fb;
    --brand-lightpurple: #a78ac0;
    --brand-darkpurple: #662382;
    --brand-darkgrey: #5f5b66;
    --brand-text: #333;
    --font-sans: 'Source Sans Pro', sans-serif;
    --font-serif: 'Source Serif 4', serif;
}


/* ========================= */
/*   GLOBAL BRAND STYLING   */
/* ========================= */

body {
  
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background: black;
  color: black;
  line-height: 1.6;
}
html, body {
    overflow-x: hidden;
}



h1, h2, h3 {
  font-weight: 300;
  letter-spacing: 0.5px;
}

section {
  padding: 80px 4%;
}

/* --------------------------------------------------
   NAVIGATION
-------------------------------------------------- */
.nav {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: black;
    margin-bottom: 40px;
    
    padding: 12px 0;
}

.nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
hr {
    border: none;
    height: 35px; /* thickness of the bar */
    width: 100%;
    

    background: linear-gradient(
        to left,
        var(--brand-darkpurple) 0%,
        var(--brand-darkpurple) 50%,
        var(--brand-lightpurple) 100%
    );

    margin-top: -11px;
    padding: 4px;
    border-radius: 0; /* optional */
}


.nav-contact {
    position: absolute;
    top: 14px;
    right: 30px;

    display: flex;
    align-items: center;
    gap: 19px;
    margin-right: -10px;
    
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 900;
}

.nav-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: -8px;
    transition: opacity 0.25s ease;
}

.nav-contact a:hover {
    opacity: 1;
}

.nav-contact .icon {
    font-size: 1.1rem;
    line-height: 0;
    
}
.nav-contact {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    
}

.nav-contact__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-contact__icon img {
    width: 20px;   /* adjust to your design system */
    height: 20px;
    display: block;
    margin-right: -10px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.35)); /* subtle chrome glow */
}

.nav-contact__label {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-sans);
    color: white;
}



.nav-brand img {
    height: 138px;
    margin-right: 18px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
}

.nav-links a {
    
    color: white;
    border-radius: 6px;
    padding: 6px;
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 18px;
    text-decoration: none;
    font-weight: 800;
    
}

.nav-links a:hover {
    opacity: 0.9;
    color: var(--brand-lightpurple);
}

.nav-cta {
    color: #000000;
   

    
    
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    height: 75px; /* adjust as needed */
    width: auto;
    margin-left: -25px;
    animation: LogoSlide 1.4s ease-out forwards;


}



/* Dropdown container */
.nav-links li {
    position: relative;
}
.dropdown ul,
.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Hide dropdown by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -52px;
    background: black;
    border: 1px solid var(--brand-lightpurple);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 180px;
    display: none;
    flex-direction: column;
    z-index: 999;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Dropdown links */
.dropdown-menu a {
    padding: 10px 18px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--brand-lightpurple);
    color: #000000;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s ease;
}



/* HERO WRAPPER */
.hero-surfacing {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
    text-align: center;
}

/* FLOWING BACKGROUND */
.hero-surfacing .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/practice16.avif'); /* replace with surfacing bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

/* DARK OVERLAY */
.hero-surfacing .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.85)
    );
    z-index: 2;
}

/* CONTENT */
.hero-surfacing {
    position: relative;
    min-height: 70vh; /* gives the hero real height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* flowing background */
.hero-surfacing .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/Backgroundsurfacerevised.png'); /* your surfacing bg */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(1.1);
    z-index: 1;
}

/* overlay */
.hero-surfacing .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.25)
    );
    z-index: 2;
}

/* content */
.hero-surfacing .hero-content {
    position: relative;
    z-index: 3;
}

.hero-surfacing .hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: black;
}

.hero-surfacing .hero-title .dark {
    color: white;
}

/* HERO BACKGROUND — ALWAYS VISIBLE */
.hero-bg,
.hero-overlay {
    opacity: 1 !important;
    transform: none !important;
}

/* SECTION WRAPPER — optional fade */
.hero-surfacing {
    opacity: 0;
}
.hero-surfacing.visible {
    animation: fadeUp 0.8s ease-out forwards;
}

/* TITLE — fade up */
.hero-title {
    opacity: 0;
}
.hero-title.visible {
    animation: fadeUp 1.7s ease-out forwards;
}

/* “SOLUTIONS” — delayed fade */
.hero-title .dark {
    opacity: 0;
}
.hero-title .dark.visible {
    animation: fadeUp 1.9s ease-out forwards;
}

/* KEYFRAME */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(-80vh); }
    100% { opacity: 1; transform: translateY(0); }
}




/* --------------------------------------------------
   BRAND INTRO (SCROLL‑TRIGGERED ANIMATED)
-------------------------------------------------- */
/* ================================
   SURFACING SOLUTIONS SECTION
================================ */

.surfacing-section {
  background-color: #000;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  padding: 80px 100px;
}

/* ROW LAYOUT */
.surfacing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 50px;
}

.surfacing-row.bottom p {
  max-width: 1300px;
  font-size: 1.2rem;
  line-height: 1.75;
}

/* IMAGES */
.surfacing-img {
  width: 35%;
  border-radius: 6px;
  object-fit: cover;
}

/* TEXT BLOCK */
.surfacing-text {
  width: 95%;
  font-size: 1.15rem;
  line-height: 2.0;
}

/* MIDDLE ROW */
.surfacing-row.middle {
  flex-direction: row;
}

/* BOTTOM ROW */
.surfacing-row.bottom {
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
}

.surfacing-row.bottom .surfacing-text {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  border-left: solid 4px var(--brand-darkpurple);
  padding-left: 12px;
}

/* CONTACT LINE */
.contact {
  margin-top: 25px;
  font-size: 1.15rem;
  color: #fff;
}

.inline-contact {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.inline-contact:hover {
  color: var(--brand-darkpurple);
}

.inline-contact-info {
  font-weight: 700;
  margin-left: 6px;
}

/* ================================
   SIMPLE ANIMATIONS
================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE — MOBILE
================================ */

@media (max-width: 900px) {
  .surfacing-section {
    padding: 50px 30px;
  }

  .surfacing-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .surfacing-img {
    width: 100%;
  }

  .surfacing-text {
    width: 100%;
    font-size: 1.05rem;
  }

  .surfacing-row.middle {
    flex-direction: column;
  }

  .surfacing-row.bottom p {
    font-size: 1.05rem;
  }

  .contact {
    font-size: 1.05rem;
  }
}

/* ================================
   SURFACING APPLICATIONS
================================ */

.surfacing-applications {
  padding: 40px 0;
  text-align: center;
  background: #0c0c11;
  opacity: 0;
}

.surfacing-applications.visible {
  animation: fadeIn 0.8s ease-out forwards;
}

.surfacing-applications .section-title {
  font-size: 1.9rem;
  font-weight: 900;
  font-family: var(--font-sans);
  background: linear-gradient(90deg, var(--brand-lightpurple), var(--brand-darkpurple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  text-transform: uppercase;
  opacity: 0;
}

.surfacing-applications .section-title.visible {
  animation: fadeUp 0.8s ease-out forwards;
}

/* BULLET GRID */
.app-bullet-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  justify-items: center;
}

.app-bullet-grid li {
  position: relative;
  padding-left: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #e8e8e8;
  text-align: left;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(20px);
}

.app-bullet-grid li.visible {
  animation: fadeUp 0.6s ease-out forwards;
}

.app-bullet-grid li:nth-child(1).visible { animation-delay: 0.05s; }
.app-bullet-grid li:nth-child(2).visible { animation-delay: 0.10s; }
.app-bullet-grid li:nth-child(3).visible { animation-delay: 0.15s; }
.app-bullet-grid li:nth-child(4).visible { animation-delay: 0.20s; }
.app-bullet-grid li:nth-child(5).visible { animation-delay: 0.25s; }
.app-bullet-grid li:nth-child(6).visible { animation-delay: 0.30s; }
.app-bullet-grid li:nth-child(7).visible { animation-delay: 0.35s; }
.app-bullet-grid li:nth-child(8).visible { animation-delay: 0.40s; }

.app-bullet-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-darkpurple);
  opacity: 0.9;
}

/* RESPONSIVE BULLETS */
@media (max-width: 900px) {
  .app-bullet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .app-bullet-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SURFACING PRODUCTS
================================ */

.surfacing-products {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.surfacing-products .products-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/flip1.JPG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(1.1);
  z-index: 1;
}

.surfacing-products .products-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2;
}

.surfacing-products > * {
  position: relative;
  z-index: 3;
}

.surfacing-products .section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  font-family: var(--font-sans);
  opacity: 0;
  transform: translateY(20px);
}

.surfacing-products .section-title.visible {
  animation: fadeUp 0.8s ease-out forwards;
}

.surfacing-products .products-subtitle {
  font-size: 1.25rem;
  color: #e6e6e6;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0.9;
}

.surfacing-products .product-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  opacity: 0;
  transform: translateY(20px);
}

.surfacing-products .product-links.visible {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.15s;
}

.surfacing-products .product-btn {
  padding: 14px 32px;
  font-size: 1.25rem;
  font-weight: 700;
  color: black;
  text-decoration: none;
  border-radius: 10px;
  background: var(--brand-lightpurple);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  transition: 0.35s ease;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.15),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.surfacing-products .product-btn:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 25px rgba(255, 255, 255, 0.55),
    0 0 45px rgba(180, 200, 255, 0.35),
    inset 0 0 20px rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.8),
    0 0 14px rgba(180, 200, 255, 0.6);
}

/* MOBILE BUTTON STACK */
@media (max-width: 600px) {
  .surfacing-products .product-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* ================================
   SIMPLE KEYFRAMES
================================ */

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* ================================
   SIMPLE, SLOW, PREMIUM ANIMATIONS
================================ */

/* Base state */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section fade-in */
.surfacing-applications {
    opacity: 0;
    transition: opacity 1.4s ease-out;
}

.surfacing-applications.visible {
    opacity: 1;
}

/* Title fade-up */
.surfacing-applications .section-title {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}

.surfacing-applications .section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bullet items — soft stagger */
.app-bullet-grid li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.app-bullet-grid li.visible {
    opacity: 1;
    transform: translateY(0);
}

.app-bullet-grid li:nth-child(1).visible { transition-delay: 0.10s; }
.app-bullet-grid li:nth-child(2).visible { transition-delay: 0.20s; }
.app-bullet-grid li:nth-child(3).visible { transition-delay: 0.30s; }
.app-bullet-grid li:nth-child(4).visible { transition-delay: 0.40s; }
.app-bullet-grid li:nth-child(5).visible { transition-delay: 0.50s; }
.app-bullet-grid li:nth-child(6).visible { transition-delay: 0.60s; }
.app-bullet-grid li:nth-child(7).visible { transition-delay: 0.70s; }
.app-bullet-grid li:nth-child(8).visible { transition-delay: 0.80s; }

/* Surfacing Products title */
.surfacing-products .section-title {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}

.surfacing-products .section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.surfacing-products .product-links {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}

.surfacing-products .product-links.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}



/* ========================= */
/*     BALCONY GALLERY       */
/* ========================= */

.metal-gallery {
    position: relative;
    padding: 100px 4%;
    overflow: hidden;
}

/* Flowing background */
.system-gallery-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/practice16.avif'); /* change if needed */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.35);
    z-index: 1;
}

/* Dark overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    
    z-index: 2;
}

/* IMPORTANT: don't override the background layers */
.metal-gallery > :not(.system-gallery-bg):not(.gallery-overlay) {
    position: relative;
    z-index: 3;
}

/* TITLE + TEXT */

.gallery-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gallery-title .white {
    color: white;
}

.gallery-title .purple {
    color: #c38bff;
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    color: white;
    font-size: 1.25rem;
    opacity: 0.9;
}

/* CAROUSEL */

.carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.carousel-card {
    min-width: 300px;
    max-width: 300px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card:hover {
    transform: scale(1.05);
}

/* Arrows */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 5;
    transition: background 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.3);
}

.carousel-btn.prev {
    left: -50px;
}

.carousel-btn.next {
    right: -50px;
}

/* Dots */

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.carousel-dots div {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .active {
    background: var(--brand-darkpurple);

}

/* SUMMARY + CTA */

.gallery-summary {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: white;
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.gallery-cta {
    text-align: center;
}

.gallery-button {
    display: inline-block;
    padding: 14px 32px;
    background: #c38bff;
    color: white;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.gallery-button:hover {
    background: #a56be0;
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}






/* --------------------------------------------------
   WHY CHOOSE US
-------------------------------------------------- */

.why-choose-us {
    width: 100%;
    position: relative;
     background-image: url('/images/background\ pic.\ 2jpg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
    
    
    
    margin: 8px auto;
    font-family: var(--font-sans);
    box-shadow: 0 0 40px rgba(0,0,0,0.45);
}

.why-inner {
    padding-left: 0;
}

.why-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.1;
    
    font-family: var(--font-sans);
   
}


.why-title .light {
    display: block;
    background: linear-gradient(90deg,#ffffff,#dcdcdc,#7a7a7a,#dcdcdc,#ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: black;
}

.why-title .dark {
    display: inline;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--brand-darkpurple);
    display: flex;
}


.logo-inline {
    display: block;
    margin-top: 6px;
}

.logo-inline img {
    height: 90px;
    width: auto;
    display: block;
}

/* --------------------------------------------------
   TWO COLUMN LAYOUT
-------------------------------------------------- */

.why-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* forces equal height columns */
    gap: 40px;
    width: 100%;
}

.why-left {
    flex: 1;
}

/* RIGHT COLUMN — card top-right, button bottom-right */
.why-right {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-bottom: 30px; /* move button lower */
}


/* --------------------------------------------------
   ITEMS (icons + text)
-------------------------------------------------- */

.why-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2px;
}

.why-icon {
    width: 30px;
    height: 30px;
    filter: brightness(1.2);
    margin-left: -15px;
}

.why-text {
    font-size: 1.1rem;
    color: black;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--font-sans);
}

/* --------------------------------------------------
   PARTNER CARD (chrome glow)
-------------------------------------------------- */



.partner-card h3 {
    font-size: 1.9rem;
    font-weight: 900;
    color: black;
    text-align: center;
    margin: 0 0 14px 0;
    letter-spacing: -0.5px;
    font-family: var(--font-sans);
    text-transform: uppercase;
}



.partner-card p {
    margin: 0;
    color: black;
    font-size: 1.15rem;
    line-height: 1.55;
    font-weight: 500;
    opacity: 0.9;
}
.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 16px;
}

.partner-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-style: italic;

    font-size: 1.15rem;
    color: black;
    font-weight: 700;
    opacity: 0.9;
}
.partner-card .big {
    color: var(--brand-darkpurple);
    
}

/* Checkmark icon */
.partner-list li::before {
    content: "✔";
    color: var(--root-purple);
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 4px;
}
/* Right-side image container */


/* When visible */
.partner-image-container.visible {
    animation: fadeUp 0.9s ease-out forwards;
}

/* Image styling */


/* Animation */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* Right-side image cleanup */
.benefits-right img,
.partner-image {
    display: block;
    width: 100%;
    max-width: 420px; /* adjust for your layout */
    height: auto;
    object-fit: cover; /* fills space without distortion */
    border-radius: 8px; /* optional, smooth corners */
    
    margin: 0 auto;
}


/* Remove any weird glow or background bleed */
.benefits-right,
.partner-image-container {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* Remove all the card styling that ruins the image */
.why-right .partner-card,
.why-right .fragment,
.why-right .text-anim {
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

/* New clean image container */
.benefits-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateY(40px);
}

/* When visible */
.benefits-image-wrap.visible {
    animation: fadeUp 0.8s ease-out forwards;
}

/* The actual image */
.benefits-image {
    width: 600px;
    max-width: 380px;
    height: 400px;
    margin-left: -190px;
    object-fit: cover;
    border-radius: 10px;
    
}

/* Animation */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* --------------------------------------------------
   BUTTON (bottom-right)
-------------------------------------------------- */

.why-btn {
    margin-top: auto; /* pins button to bottom */
    margin-right: 20px;
    padding: 16px 38px;
    background: blue;
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.25s ease;
    white-space: nowrap;
}

.why-btn:hover {
    background: #a56bff;
    transform: translateY(-3px);
}
.why-bottom-btn {
    width: 100%;
    padding: 0% 40px;

    margin-top: 50px; /* adjust spacing above button */
}

.why-btn {
    padding: 16px 18px;
    margin-left: 250px;
    background: var(--brand-darkpurple);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s ease, transform 0.25s ease;
    white-space: nowrap;
    
}

.why-btn:hover {
    background: black;
    transform: translateY(-3px);
}

/* ============================= */
/* WHY CHOOSE US — ANIMATIONS   */
/* ============================= */

/* TITLE — slide from RIGHT */
.why-title {
    opacity: 0;
    transform: translateX(60px);
}

.why-title.visible {
    animation: whyTitleRight 1s ease-out forwards;
}

@keyframes whyTitleRight {
    0% { opacity: 0; transform: translateX(60vh); }
    100% { opacity: 1; transform: translateX(0); }
}

/* PARAGRAPH TEXT — slide UP */
.why-text {
    opacity: 0;
    transform: translateY(60px);
}

.why-text.visible {
    animation: whyTextUp 1s ease-out forwards;
}

@keyframes whyTextUp {
    0% { opacity: 0; transform: translateY(60vh); }
    100% { opacity: 1; transform: translateY(0); }
}

/* PARTNER CARD — drop DOWN */
.partner-card {
    opacity: 0;
    transform: translateY(-60px);
}

.partner-card.visible {
    animation: partnerCardDown 1s ease-out forwards;
}


@keyframes partnerCardDown {
    0% { opacity: 0; transform: translateY(-60vh); }
    100% { opacity: 1; transform: translateY(0); }
}

/* OPTIONAL: ICONS — fade + slight rise */
.why-icon {
    opacity: 0;
    transform: translateY(30px);
}

.why-icon.visible {
    animation: whyIconUp 0.8s ease-out forwards;
}

@keyframes whyIconUp {
    0% { opacity: 0; transform: translateY(60vh); }
    100% { opacity: 1; transform: translateY(0); }
}
/* BUTTON CONTAINER — slide UP */
.why-bottom-btn {
    opacity: 0;
    transform: translateY(60px);
}

.why-bottom-btn.visible {
    animation: whyBtnUp 1s ease-out forwards;
}

@keyframes whyBtnUp {
    0% { opacity: 0; transform: translateX(60vh); }
    100% { opacity: 1; transform: translateX(0); }
}

/* --------------------------------------------------
   BRAND STATEMENT
-------------------------------------------------- */
.brand-statement {
    padding: 0px 15px;
    text-align: center;
    background: var(--brand-dark);

    opacity: 0;
    transform: translateX(40px);
    z-index: 50; /* 🔥 ensures it sits ABOVE everything */
    position: relative; /* required for z-index to work */
}

/* When visible */
.brand-statement.visible {
    animation: brandSlideRight 0.9s ease-out forwards;
}

/* Small line */
.brand-statement .small {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-darkpurple);
    letter-spacing: 1px;
    font-style: italic;
    font-family: var(--font-sans);

    opacity: 0;
    transform: translateX(40px);
}

.brand-statement .small.visible {
    animation: brandTextRight 0.9s ease-out forwards;
    animation-delay: 0.15s;
}

/* Big line */
.brand-statement .big {
    margin: 5px 0 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    font-style: italic;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;

    opacity: 0;
    transform: translateX(40px);
}

.brand-statement .big.visible {
    animation: brandTextRight 1.4s ease-out forwards;
    animation-delay: 0.3s;
}

/* Animations */
@keyframes brandSlideRight {
    0% { opacity: 0; transform: translateX(40vh); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes brandTextRight {
    0% { opacity: 0; transform: translateX(40vh); }
    100% { opacity: 1; transform: translateX(0); }
}




/* ============================================
   MAIN FOOTER — 3 COLUMN LAYOUT
============================================ */
.impermitek-footer {
    background: #141414;
    color: #ffffff;
    padding: 70px 50px;

    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-bottom p {
        text-align: center;
        margin: 0 auto;
        padding: 14px 0;
        color: white;
        font-size: 0.85rem;
    }

/* ============================================
   CENTER COLUMN — LOGO + DESCRIPTION + SOCIALS
============================================ */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-img {
    width: 350px;
    margin-bottom: 2px;
}

.footer-logo-wrapper {
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.footer-logo-wrapper::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-darkpurple), var(--brand-lightpurple));
    border-radius: 2px;
    margin-top: 8px;
}

.footer-desc {
    color: #dcdcdc;
    line-height: 1.6;
    max-width: 360px;
}

.footer-social-center {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-social-center .social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
}

/* ============================================
   LEFT COLUMN — QUICK LINKS
============================================ */
.footer-links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.footer-links-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
    padding-left: 50px;
}

.footer-link {
    color: white;
    text-decoration: none;
    padding: 0px 12px;

    text-align: center;
    font-weight: 600;
    font-size: 18px;
    
}
.footer-link-contact {
     color: white;
    background: var(--brand-darkpurple);
    text-decoration: none;
    padding: 5px;
    border-radius: 5px;
    transform: translateY(30px);

    text-align: center;
    font-weight: 600;
    font-size: 18px;
}




.footer-link:hover {
    color: white;
}

/* ============================================
   RIGHT COLUMN — CONTACT ABOVE SOCIALS
============================================ */
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 5px;
    
}

.footer-contact-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: left;
    transform: translateY(44px);
}

.footer-social-right {
    align-items: flex-start !important;   /* ← finally moves left */
    text-align: left;
    margin-left: 0;                       /* reset your earlier test */
}



.footer-social-right .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
}


.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-contact-item p {
    margin: 0;
    line-height: 1.15;
}

.footer-icon-svg {
    width: 20px;
    height: 20px;
    fill: var(--brand-darkpurple);
}

.footer-heading {
    font-size: 1.35rem;
    margin-bottom: 3px;
    font-weight: 700;
    text-align: center;
}

.footer-heading::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #6a4dfc;
    margin-top: 6px;
    border-radius: 2px;
}

/* ============================================
   SOCIAL ICON CIRCLES
============================================ */
.social-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.social-icon-circle.facebook {
    background: #1877F2;
}

.social-icon-circle.linkedin {
    background: #0A66C2;
}

.social-icon-circle.instagram-bg {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}

.social-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: 0.25s ease;
}

.social-icon-circle:hover .social-icon-img {
    transform: translateY(-3px);
    opacity: 0.85;
}
.footer-follow-inline {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: var(--font-sans);
    font-style: italic;
}

.footer-contact-right .footer-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  text-decoration: none;
  pointer-events: none;
  cursor: default;

  /* Positioning */
  align-self: flex-start;     /* keeps it aligned with info */
  margin-left: 4px;           /* subtle left alignment tweak */
  margin-top: -8px;           /* moves it closer to info block */
}

     .footer-links-left .footer-heading, .footer-links-left .footer-link {
        text-align: left !important;
        margin-left: 0 !important;
    }


/* ============================
   GLOBAL KEYFRAMES
============================ */

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(60vh); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(-60vh); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(-60vh); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  0% { opacity: 0; transform: translateX(60vh); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeScale {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeRotate {
  0% { opacity: 0; transform: rotateX(25deg) translateY(40vh); }
  100% { opacity: 1; transform: rotateX(0deg) translateY(0); }
}

@keyframes fadeColorPurple {
  0% { opacity: 0; color: white; transform: translateY(40vh); }
  100% { opacity: 1; color: var(--brand-darkpurple); transform: translateY(0); }
}

@keyframes fadeGradient {
  0% {
    opacity: 0;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(40vh);
  }
  100% {
    opacity: 1;
    background: linear-gradient(90deg, var(--brand-darkpurple), var(--brand-lightpurple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(0);
  }
}


/* ============================================================
   GLOBAL
============================================================ */
.nav-toggle {
    display: none;
}


/* ============================================================
   NAVIGATION
============================================================ */

/* ---------- Desktop (1400px+) ---------- */
@media (min-width: 1400px) {

    .nav-links a {
        font-size: 22px;
        padding: 10px 14px;
    }

    .nav-contact__label {
        font-size: 1.25rem;
    }

    .nav-brand img {
        height: 95px;
    }

    .nav-links {
        gap: 16px;
    }
}

/* ============================================================
   MOBILE NAVIGATION — FULL LEFT SLIDE PANELS
============================================================ */

@media (max-width: 600px) {

    /* NAV CONTAINER */
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
        position: relative;
        width: 90%;
        margin: auto;
    }

    /* HAMBURGER */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 9999;
        order: 1;
        margin-right: 10px;
    }

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: 0.3s ease;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* LOGO */
    .nav-brand img {
        height: 75px;
        order: 2;
        margin-left: -5px;
    }

    /* CONTACT INFO */
    .nav-contact {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
        position: absolute;
        top: 20px;
        right: 42px;
        z-index: 9999;
    }

    .nav-contact__label {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* MAIN MOBILE MENU */
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: black;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        z-index: 9999;
        overflow: visible !important;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }

    /* ============================================================
       FULL-SCREEN LEFT SLIDE PANEL FOR ALL DROPDOWNS
    ============================================================ */

    .dropdown-menu {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;

        background: #000;
        padding: 90px 30px 40px;

        display: flex;
        flex-direction: column;
        gap: 28px;

        z-index: 999999;

        /* Start hidden off-screen */
        transform: translateX(-100%);
        opacity: 0;

        /* Smooth premium animation */
        transition:
            transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
            opacity 0.35s ease;
    }

    /* Slide in when open */
    .dropdown.open > .dropdown-menu {
        transform: translateX(0);
        opacity: 1;
    }

    /* Close button */
    .dropdown-menu .close-panel {
        position: absolute;
        top: 22px;
        
        font-size: 2.2rem;
        color: var(--brand-darkpurple);
        cursor: pointer;
    }
    /* Center all dropdown content inside the slide panel */
.dropdown-menu {
    justify-content: center;      /* vertical centering */
    align-items: center;          /* horizontal centering */
    text-align: center;           /* center text */
}

/* Center each link */
.dropdown-menu li a {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
}


/* =========================================================
   PURPLE ARROW — TOP CENTER
   ========================================================= */
.menu-arrow {
    position: absolute;
    top: 20px;                /* distance from top edge */
    left: 50%;                /* center horizontally */
    transform: translateX(-50%) rotate(180deg); /* rotate if needed */
    font-size: 2rem;          /* adjust size */
    color: var(--brand-lightpurple); /* your purple tone */
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10;
}




}

@media (max-width: 600px) {

    /* ========================= */
    /* SURFACING HERO — MOBILE   */
    /* ========================= */

    .hero-surfacing {
        padding: 100px 0 80px;
        min-height: 60vh;
        text-align: center;
        height: 12px;
    }

    /* Background fixes for mobile */
    .hero-surfacing .hero-bg {
        background-attachment: scroll; /* prevent mobile jitter */
        background-position: center;
        filter: brightness(1.05);
    }

    /* Overlay stays the same */
    .hero-surfacing .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.85)
        );
    }

    /* Content wrapper */
    .hero-surfacing .hero-content {
        padding: 0 20px;
        max-width: 90%;
        margin: 0 auto;
    }

    /* Title */
    .hero-surfacing .hero-title {
        font-size: 2.4rem;
        line-height: 1.1;
        font-weight: 900;
        color: black;
        margin: 0 auto;
    }

    .hero-surfacing .hero-title .dark {
        color: black;
    }




    /* ========================= */
    /* BRAND INTRO               */
    /* ========================= */

    .brand-intro {
        padding: 50px 10px;
        background-size: cover;
        text-align: center;
    }

    .intro-container {
        flex-direction: column;
        gap: 20px;
        width: 92%;
        text-align: center;
    }

    .intro-logo {
        height: 140px;
        margin: 0 auto;
    }

    .intro-wrapper {
        flex-direction: column;
        padding: 10px;
        font-size: 1rem;
        text-align: center;
    }

    .intro-inline-img {
        height: 280px;
        width: 360px;
        margin: 0 auto 15px auto;
    }

    .intro-text p {
        text-align: center;
    }

    .intro-photo {
        height: 180px;
        width: 100%;
        margin: 0 auto;
    }

    .contact-link {
        margin: 20px auto 0 auto;
        width: 140px;
    }
  }
  @media (max-width: 600px) {

    /* ========================= */
    /* DEALER + INLINE CONTACT   */
    /* ========================= */

    .dealer-link {
        font-size: 1rem;
        margin-top: 14px;
        display: block;
        text-align: center;
    }

    .inline-contact {
        font-size: 1rem;
        display: inline-block;
        margin-top: 10px;
    }

    /* ========================= */
    /* INTRO PHOTO               */
    /* ========================= */

    .intro-photo {
        height: 160px;
        width: 100%;
        object-fit: cover;
        margin: 0 auto;
        border-width: 2px;
    }
}

@media (max-width: 600px) {

    /* ========================= */
    /* SURFACING APPLICATIONS    */
    /* ========================= */

    .surfacing-applications {
        padding: 40px 10px;
    }

    .surfacing-applications .section-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .app-bullet-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 92%;
    }

    .app-bullet-grid li {
        font-size: 1.2rem;
        padding-left: 14px;
        line-height: 1.3;
    }

    .app-bullet-grid li::before {
        top: 10px;
        width: 6px;
        height: 6px;
    }



    /* ========================= */
    /* SURFACING PRODUCTS        */
    /* ========================= */

    .surfacing-products {
        padding: 60px 0;
    }

    .surfacing-products .section-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .surfacing-products .products-subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 30px;
    }

    .surfacing-products .product-links {
        flex-direction: column;
        gap: 16px;
        width: 90%;
        margin: 0 auto;
    }

    .surfacing-products .product-btn {
        font-size: 1.1rem;
        padding: 12px 0;
        width: 100%;
    }



    /* ========================= */
    /* BALCONY GALLERY           */
    /* ========================= */

    .metal-gallery {
        padding: 60px 4%;
    }

    .gallery-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 1rem;
        max-width: 92%;
        margin-bottom: 40px;
    }

    /* MOBILE CAROUSEL */
    .carousel-wrapper {
        max-width: 100%;
        overflow: hidden;
        padding: 0 10px;
    }

    .carousel-track {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-track::-webkit-scrollbar {
        display: none;
    }

    .carousel-card {
        min-width: 80%;
        max-width: 80%;
        height: 180px;
        scroll-snap-align: center;
    }

    /* ARROWS */
    .carousel-btn {
        display: none; /* hide arrows on mobile */
    }

    /* DOTS */
    .carousel-dots {
        gap: 8px;
        margin-bottom: 30px;
    }

    .carousel-dots div {
        width: 10px;
        height: 10px;
    }

    /* SUMMARY + CTA */
    .gallery-summary {
        font-size: 1rem;
        max-width: 92%;
        margin-bottom: 30px;
    }

    .gallery-button {
        padding: 12px 26px;
        font-size: 1rem;
    }

    /* LIGHTBOX */
    .lightbox img {
        max-width: 92%;
        max-height: 80%;
    }
}

/* --------------------------------------------------
   WHY CHOOSE US — MOBILE FIX (≤600px)
-------------------------------------------------- */
@media (max-width: 600px) {

    /* SECTION */
.why-choose-us {
    position: relative;
    padding: 40px 15px;
    text-align: center;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* DARK OVERLAY */
.why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* adjust darkness */
    z-index: 1;
}

/* KEEP CONTENT ABOVE OVERLAY */
.why-choose-us > * {
    position: relative;
    z-index: 2;
}


    /* TITLE */
    .why-title {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 4px;
        font-size: 1.9rem;
        margin-bottom: 10px;
    }

    .why-title .light { font-size: 1.5rem; }
    .why-title .dark  { font-size: 1.3rem; }

    .logo-inline img {
        height: 55px;
        margin-top: 10px;
    }

    /* COLUMNS STACK */
    .why-columns {
        flex-direction: column;
        width: 100%;
        gap: 25px;
        align-items: center;
    }

    .why-left,
    .why-right {
        width: 100%;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    /* ITEMS */
    .why-item {
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 10px;
    }

    .why-icon {
        width: 22px;
        height: 22px;
        margin: 0;
    }

    .why-text {
        font-size: 0.95rem;
        max-width: 90%;
        margin: 0 auto;
        line-height: 1.35;
        padding: 0;
    }

    /* PARTNER CARD */
    .partner-card {
        width: 100% !important;
        margin: 2px !important;
        padding: 20px 16px !important;
        border-radius: 8px;
        margin-right: -20px !important;
        margin-top: 0 !important;
        box-shadow:
            0 0 18px rgba(162, 94, 255, 0.45),
            0 0 6px rgba(255,255,255,0.25),
            inset 0 0 10px rgba(255,255,255,0.12);
    }

    .partner-card h3 {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }

    .partner-card h3::after {
        width: 140px;
        height: 3px;
        margin: 6px auto 0 auto;
    }

    .partner-card p,
    .partner-list li {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .partner-list li::before {
        font-size: 1rem;
    }

    /* BUTTON AREA */
    .why-bottom-btn {
        width: 100%;
        display: flex;
        justify-content: flex-start; /* left alignment */
        padding-left: 16px;          /* match card padding */
        margin-top: 20px;
    }

    .why-btn {
        width: auto;
        display: inline-block;
        padding: 12px 12px;
        font-size: 1rem;
        border-radius: 6px;
        background: var(--brand-darkpurple);
        color: #fff;
        font-weight: 700;
        margin-left: 12px;
    }

    /* MOBILE TITLE RESET */
    .why-title {
        all: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-family: var(--font-sans);
        font-weight: 900;
        text-transform: uppercase;
        font-size: 1.8rem;
        line-height: 1.1;
        margin: 0 auto 20px auto;
        width: 100%;
    }

    .why-title .light,
    .why-title .dark {
        all: unset;
        display: block;
        font-family: var(--font-sans);
        text-transform: uppercase;
        line-height: 1.1;
    }

    .why-title .light {
        font-size: 3.2rem;
        color: white;
        opacity: 0.9;
        margin-bottom: 4px;
    }

    .why-title .dark {
        font-size: 2.8rem;
        color: var(--brand-darkpurple);
        font-weight: 900;
    }

    .logo-inline img {
        height: 50px;
        margin: 10px auto 0 auto;
    }
}
@media (max-width: 600px) {
    .partner-list {
        list-style: none;
        margin: 0;
        padding-left: 28px; /* moves whole list right */
        text-align: left !important;
        overflow: visible !important;
    }

    .partner-list li {
        position: relative;
        padding-left: 26px; /* space for checkmark */
        margin-bottom: 8px;
        display: block;
    }

    .partner-list li::before {
        content: "✔";
        position: absolute;
        left: 0;
        top: 0;
        color: var(--brand-darkpurple);
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.2;
        transform: translateY(2px);
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 3;
    }
}
@media (min-width: 1400px) {
  .partner-card {
    width: 265%;                 /* wider */
    padding: 60px 40px;         /* more breathing room */
    margin-right: 0;            /* centers better */
    margin-top: -100px;         /* lifts it slightly */
    border-radius: 4px;         /* subtle upscale */
    font-size: 1.4rem;          /* scales inner text */
  }

  .partner-card h3 {
    font-size: 2.4rem;          /* bigger title */
  }

  .partner-list li {
    font-size: 1.3rem;          /* bigger list items */
    margin-bottom: 14px;
  }
}
/* --- MOBILE ROTATOR ONLY --- */
@media (max-width: 768px) {

  /* Hide desktop items completely */
  .why-item {
    display: none !important;
    visibility: hidden !important;
  }

  /* Show only the mobile rotator */
  .why-rotate-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 220px;
    padding: 20px 0;
    background: transparent;
  }

  /* Each rotating card */
  .rotate-item {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
   
    
    width: 90%;
    margin-left: -34px;    
  }

  /* Icon above text */
  .rotate-item img.why-icon {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px auto;
  }

  /* Text styling */
  .rotate-item p {
    font-size: 1rem;
    line-height: 1.4;
    color: #fff;
    margin: 0;
  }

  /* Dots container */
  .why-rotate-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .why-rotate-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-purple);
    opacity: 0.4;
    transition: opacity 0.3s ease;
  }

  .why-rotate-dots .dot.active {
    opacity: 1;
  }
}
/* Hide rotating version on desktop */
.why-rotate-mobile {
    display: none;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

    /* Hide the entire DESKTOP list */
    .why-left .why-item {
        display: none;
    }

    /* Show rotating icon + text */
    .why-rotate-mobile {
        display: block;
        text-align: center;
        padding: 20px 10px;
    }

    /* Each rotating pair (icon + text) */
    .why-rotate-mobile .rotate-item {
        display: none; /* JS will show one at a time */
    }

    /* ⭐ FORCE ICONS TO SHOW ⭐ */
@media (max-width: 768px) {
    .why-rotate-mobile .rotate-item img {
        display: block !important;
        width: 70px;
        height: auto;
        margin-left: auto;
        margin-right: auto;

        /* ⭐ FORCE ICON TO MOVE UP ⭐ */
        margin-top: -20px !important;

        margin-bottom: 12px;
        opacity: 1 !important;
        visibility: visible !important;
    }
}
/* Apply to both desktop list and mobile rotator */
.why-item .why-icon,
.why-rotate-mobile .rotate-item img {
    display: block;
    margin-left: auto;
    margin-right: auto;

    /* 👇 increase this to push text further down (more readable) */
    margin-bottom: 40px;
}



    /* Text */
    .why-rotate-mobile .rotate-item p {
        font-size: 1.7rem;
        font-weight: 600;
        color: white;
        line-height: 1.5;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Stack columns */
    .why-columns {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* Benefits card under rotating list */
    .why-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* Fade animation */
.rotate-item {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}




@media (max-width: 600px) {

    /* ========================= */
    /* BRAND STATEMENT           */
    /* ========================= */

    .brand-statement {
        padding: 12px 0;
        text-align: center;
    }

    .brand-statement p {
        font-size: 0.58rem;
        letter-spacing: 0.5px;
        color: white;
    }

    .brand-statement .big {
        font-size: 0.7rem;
        color: white;
    }




/* ============================================================
   FOOTER (LAST SECTION)
============================================================ */
@media (max-width: 600px) {

    /* Make footer a vertical flexbox */
    .impermitek-footer {
        display: flex;
        flex-direction: column;
        align-items: center;   /* CENTER EVERYTHING */
        text-align: center;
        gap: 28px;
        padding: 32px 20px;
        flex-wrap: wrap;
    }


    /* ============================
       FORCE MOBILE ORDER
       ============================ */

    /* LOGO FIRST */
    .footer-brand {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* CENTER LOGO + TEXT */
    }

    /* QUICK LINKS SECOND (BOTTOM LEFT BUTTON) */
    .footer-col:first-child {
        order: 2;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center; /* CENTER BUTTON */
    }

    /* CONTACT THIRD (BOTTOM RIGHT BUTTON) */
    .footer-right {
        order: 3;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center; /* CENTER BUTTON */
    }

    /* ============================
       TURN QUICK LINKS + CONTACT INTO BUTTONS
       ============================ */

    /* Hide desktop content */
    .footer-links-left .footer-link,
    .footer-contact-right .footer-contact-item,
    .footer-contact-right .footer-link-contact {
        display: none;
        text-align: center;
    }
    .footer-links-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
    padding-left: 0;
}

    /* BUTTON STYLE */
    .footer-heading {
        width: 140px;
        padding: 12px 0;
        background: var(--brand-darkpurple);
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.35);
        transition: all 0.25s ease;
        letter-spacing: 0.4px;
        margin: 0 auto; /* CENTER BUTTON */
    }

    .footer-heading:hover {
        background: var(--brand-lightpurple);
        transform: translateY(-2px);
    }

    /* ============================
       SHOW DROPDOWN CONTENT WHEN ACTIVE
       ============================ */
    .footer-links-left.active .footer-link {
        display: block;
        margin-top: 6px;
        text-align: center;
    }

    .footer-contact-right.active .footer-contact-item,
    .footer-contact-right.active .footer-link-contact {
        display: block;
        margin-top: 6px;
    }

    /* ============================
       LOGO + SOCIALS
       ============================ */
    .footer-logo-wrapper img {
        width: 160px;
        margin: 0 auto;
    }

    .footer-desc {
        max-width: 90%;
        margin: 10px auto 18px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 8px;
    }

    /* ============================
       BOTTOM BAR
       ============================ */
    .footer-bottom p {
        text-align: center;
        margin: 0 auto;
        padding: 14px 0;
    }
}



    /* ========================= */
    /* BUTTON (BOTTOM)           */
    /* ========================= */

    .why-bottom-btn {
        margin-top: 20px;
        padding: 0;
        text-align: center;
    }

    .why-btn {
        margin-left: 0;
        width: auto;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    /* Stack layout vertically */
    .brand-intro .intro-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    /* Inline image scaling */
    .brand-intro .intro-inline-img {
        width: 100%;
        max-width: 340px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* Text block full width */
    .brand-intro .intro-text {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    /* MOBILE TOGGLE BUTTON — visible only on phone */
    .mobile-toggle-desc {
        display: block !important;
        width: 100%;
        padding: 12px 16px;
        background: var(--brand-darkpurple);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 14px;
        text-align: center;
    }

    /* Description collapsed by default */
    .intro-description {
        display: none;
        margin-top: 10px;
        text-align: left;
        background: #f7f7f7;
        padding: 16px;
        color: black;
        border-radius: 8px;
        line-height: 1.55;
    }

    /* When JS toggles it */
    .intro-description.active {
        display: block;
    }

    /* Contact link styling */
    .inline-contact {
        display: inline-block;
        margin-top: 12px;
        font-weight: 700;
        color: white;
    }
}
@media (min-width: 1024px) {
  .mobile-toggle-desc {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  .intro-description {
    max-height: none !important;
    display: block !important;
    opacity: 1 !important;
  }
}
@media (max-width: 768px) {

    .benefits-image {
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0 auto;
        object-fit: cover;
        border-radius: 10px;
        
    }

    .benefits-image-wrap {
        justify-content: center;
        align-items: center;
        margin-left: 0 !important;
        padding: 10px 0;
    }
}
@media (min-width: 1440px) {

    .benefits-image {
        width: 700px;        /* bigger, cinematic */
        height: 520px;       /* proportional height */
        object-fit: cover;
        margin-left: 0;      /* remove the bad offset */
        border-radius: 12px;
        box-shadow: 0 0 35px rgba(0,0,0,0.45);
    }

    .benefits-image-wrap {
        justify-content: center; /* centers the image */
        align-items: center;
    }
    
}
@media (min-width: 1440px) {
    .benefits-right,
    .benefits-image-wrap {
        flex: 1 1 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible; /* allows image to expand */
    }

    .benefits-image {
        width: 900px; /* enlarge */
        height: 600px; /* proportional */
        object-fit: cover;
        margin-left: 0; /* remove offset */
        border-radius: 12px;
        
    }
}
@media (min-width: 1440px) {
    .benefits-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 0;
        border-radius: 0;
    }

    .benefits-right {
        flex: 1 1 50%;
        padding: 0;
    }
}
@media (min-width: 1440px) {
    .benefits-image {
        max-width: 700px;
        height: 200%;
        object-fit: cover;
        margin-left: -520px;
        border-radius: 0;
    }

    .benefits-right {
        flex: 1 1 50%;
        padding: 0;
    }
    /* Right column wrapper */
.why-right,
.benefits-right {
    display: flex;
    justify-content: flex-end; /* image hugs the right side of the section */
    align-items: center;
}

/* Image wrapper */
.benefits-image-wrap {
    width: 100%;
    max-width: 700px; /* how wide the image area can be */
    display: flex;
    justify-content: flex-start; /* lets us push image left inside this area */
    align-items: center;
    overflow: visible;
}

/* The image itself */
.benefits-image {
    width: 160%;          /* blow it up past its container */
    max-width: none;
    height: auto;
    object-fit: cover;
    transform: translateX(50%); /* move it left */
    border-radius: 0;
}

}


/* ============================================================
   FOOTER (LAST SECTION)
============================================================ */
@media (max-width: 600px) {

    /* Make footer a vertical flexbox */
    .impermitek-footer {
        display: flex;
        flex-direction: column;
        align-items: center;   /* CENTER EVERYTHING */
        text-align: center;
        gap: 28px;
        padding: 32px 20px;
        flex-wrap: wrap;
    }
.brand-statement .big {
    margin: 18px auto 1;     /* auto centers it */
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    font-style: italic;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;

    opacity: 0;
    transform: none;        /* remove the right shift */
    text-align: center;     /* ensure text is centered */
    animation: fadeIn 1.2s ease forwards;
}

    /* ============================
       FORCE MOBILE ORDER
       ============================ */

    /* LOGO FIRST */
    .footer-brand {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* CENTER LOGO + TEXT */
    }

    /* QUICK LINKS SECOND (BOTTOM LEFT BUTTON) */
    .footer-col:first-child {
        order: 2;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center; /* CENTER BUTTON */
    }

    /* CONTACT THIRD (BOTTOM RIGHT BUTTON) */
    .footer-right {
        order: 3;
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center; /* CENTER BUTTON */
    }

    /* ============================
       TURN QUICK LINKS + CONTACT INTO BUTTONS
       ============================ */

    /* Hide desktop content */
    .footer-links-left .footer-link,
    .footer-contact-right .footer-contact-item,
    .footer-contact-right .footer-link-contact {
        display: none;
        text-align: center;
    }
    .footer-links-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
    padding-left: 0;
}
.footer-title {
    width: 140px;
    padding: 12px 0;
    background: var(--brand-darkpurple);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    transition: all 0.25s ease;
    letter-spacing: 0.4px;
    margin: 0 auto;
    color: white;
    text-decoration: none;
    display: block;
}

.footer-title:hover {
    background: var(--brand-lightpurple);
    transform: translateY(-2px);
}


    /* BUTTON STYLE */
    .footer-heading {
        width: 140px;
        padding: 12px 0;
        background: var(--brand-darkpurple);
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.35);
        transition: all 0.25s ease;
        letter-spacing: 0.4px;
        margin: 0 auto; /* CENTER BUTTON */
    }

    .footer-heading:hover {
        background: var(--brand-lightpurple);
        transform: translateY(-2px);
    }

    /* ============================
       SHOW DROPDOWN CONTENT WHEN ACTIVE
       ============================ */
    .footer-links-left.active .footer-link {
        display: block;
        margin-top: 6px;
        text-align: center;
    }

    @media (max-width: 600px) {
    .footer-contact-right.active .footer-link-contact {
        display: block !important;
        margin-top: 10px;
        pointer-events: auto !important;
        z-index: 999;
    }
}


    /* ============================
       LOGO + SOCIALS
       ============================ */
    .footer-logo-wrapper img {
        width: 160px;
        margin: 0 auto;
    }

    .footer-desc {
        max-width: 50%;
        margin: 10px auto 18px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 8px;
    }

    /* ============================
       BOTTOM BAR
       ============================ */
    .footer-bottom p {
        text-align: center;
        margin: 0 auto;
        padding: 14px 0;
    }
    .footer-contact-right .footer-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 22px;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
    align-self: flex-start;
    margin-left: 4px;
    margin-top: -70px;
}
}

@media (max-width: 600px) {
  /* Ensure CONTACT button is clickable */
  .footer-contact-right  {
    display: block !important;
    pointer-events: auto !important;
    z-index: 999 !important;
    position: relative;
  }
  .footer-links-left .footer-heading,
  .footer-links-left .footer-link {
    text-align: center !important;
    margin-left: 0 !important;
  }

  /* Prevent parent containers from blocking clicks */
  .footer-contact-right,
  .footer-contact-right * {
    pointer-events: auto !important;
  }

  /* Optional: keep dropdown reveal logic */
  .footer-contact-right.active .footer-link-contact {
    display: block !important;
  }
}
@media (max-width: 600px) {
  .footer-contact-right .footer-link-contact {
    display: none !important;
  }
}
@media (max-width: 600px) {
  footer a[href="/DealerPage/ContactUs.html"] {
    display: none !important;
  }
}



/* ============================================
   FOOTER — CENTERED LAYOUT FOR LARGE SCREENS
============================================ */
@media (min-width: 1600px) {

  .impermitek-footer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    padding: 70px 100px;
    text-align: center;
  }

  .footer-col,
  .footer-brand,
  .footer-right {
    flex: 1;
    max-width: 420px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-links-left {
    align-items: left;
    text-align: left;
    padding-left: 0;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-contact-right {
    align-items: flex-start;
    transform: translateY(99px);
    text-align: left;
  }

  /* 🚫 Hide ONLY the stray underlined link */
  .footer-contact-right a[href="/DealerPage/ContactUs.html"]:not(.footer-link-contact):not(.footer-title) {
    display: none !important;
  }
  .footer-links-left .footer-heading, .footer-links-left .footer-link {
    text-align: left !important;
    margin-left: 0 !important;
}



  /* ✅ CONTACT title — match QUICK LINKS */
  .footer-contact-right .footer-title {
    display: block !important;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 12px;
    text-decoration: none;
    pointer-events: none;   /* not clickable */
    cursor: default;
    text-align: left;
    align-self: flex-start;
  }

  /* ✅ Purple Contact button */
  .footer-link-contact {
    display: inline-block !important;
    margin-top: 14px;
    background: var(--brand-darkpurple);
    color: white;
    text-align: center;
    font-weight: 700;
    padding: 12px 0;
    border-radius: 5px;
    width: 140px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    transition: all 0.25s ease;
    letter-spacing: 0.4px;
    text-decoration: none;
  }

  .footer-link-contact:hover {
    background: var(--brand-lightpurple);
    
  }
}
@media (min-width: 1600px) {
  .footer-links-left {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    transform: translateX(160px);
  }

  .footer-links-left .footer-heading,
  .footer-links-left .footer-link {
    text-align: left !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 600px) {
    .footer-links-left .footer-heading {
        display: none !important;
    }
      .footer-bottom p { 
        text-align: center; 
        margin: 0 auto; 
        padding: 14px 0;
        color: white; 
    }
    
.inline-contact-info {
  font-weight: 700;
  margin-left: 6px;
}
}

@media (min-width: 1700px) {

  .surfacing-section {
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 40px;
  }

  .surfacing-row {
    gap: 50px; /* space between image + text */
    align-items: center;
  }

  /* IMAGE SIZE FIX */
  .surfacing-img {
    max-width: 550px;   /* smaller image */
    height: 380px;      /* consistent height */
    object-fit: cover;
    border-radius: 12px;
  }

  /* TEXT FIX */
  .surfacing-text p {
    font-size: 1.35rem;
    line-height: 1.85;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: -10px; /* pulls text closer to top */
  }

  /* Bottom row alignment */
  .surfacing-row.bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .surfacing-row.bottom .contact {
    margin-top: 10px;
    font-size: 1.3rem;
  }
}

/* ============================================
   WHY CHOOSE US — 1700px ULTRA-WIDE OPTIMIZATION
============================================ */

@media (min-width: 1700px) {

  .why-choose-us {
    padding: 100px 120px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .why-title {
    font-size: 3.6rem;
    margin-bottom: 50px;
  }

  .why-columns {
    gap: 70px;
  }

  .why-left {
    flex: 1.2;
  }

  .why-text {
    font-size: 1.35rem;
    line-height: 1.6;
    padding-right: 20px;
  }

  .why-item {
    gap: 24px;
    margin-bottom: 12px;
  }

  .why-icon {
    width: 38px;
    height: 38px;
    margin-left: -10px;
  }

  /* Right column */
  .why-right {
    width: 420px;
    padding-bottom: 40px;
  }

  /* Partner image */
  .benefits-image {
    width: 480px;
    height: 480px;
    max-width: none;
    
    border-radius: 12px;
  }

  /* Button */
  .why-btn {
    font-size: 1.35rem;
    padding: 18px 42px;
    margin-right: 0;
  }

  /* Slow + simple animations */
  .why-title,
  .why-text,
  .why-icon,
  .partner-card,
  .benefits-image-wrap,
  .why-bottom-btn {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  }

  .why-title.visible,
  .why-text.visible,
  .why-icon.visible,
  .partner-card.visible,
  .benefits-image-wrap.visible,
  .why-bottom-btn.visible {
    opacity: 1;
    transform: translateY(0);
  }


}
@media (min-width: 1700px) {

  /* Bottom button container */
  .why-bottom-btn {
    width: 100%;
    display: flex;
    justify-content: flex-start; /* move button LEFT */
    padding: 0 80px;             /* adjust left spacing */
    margin-top: 60px;
  }

  /* Button itself */
  .why-btn {
    margin-left: 0 !important;   /* override old forced margin */
    padding: 18px 42px;
    font-size: 1.35rem;
    background: var(--brand-darkpurple);
    border-radius: 8px;
  }
}

/* Hidden by default */
.phone-only {
  display: none;
}

/* Center image row styling */
.center-image-row {
  justify-content: center;
  margin: 30px 0;
}

.surfacing-center-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0,0,0,0.35);
}

/* PHONE ONLY */
@media (max-width: 600px) {
  .phone-only {
    display: flex;
  }

  .center-image-row {
    margin: 20px 0 35px;
  }

  .surfacing-center-img {
    max-width: 100%;
    height: auto;
  }
}
