/* ============================================
   NIRVANA PROJECTS - Construction Chemicals
   Palette from assets/logo/nirvana-protects.svg:
   Navy #02255F · Teal #01766F · Blue #046BBB
   ============================================ */

:root {
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --navy: #02255f;
  --navy-mid: #022460;
  --navy-deep: #01235f;
  --blue: #046bbb;
  --blue-light: #4a9fd9;
  /* Logo teal swoosh & tagline — kept as --orange* for existing rules */
  --orange: #01766f;
  --orange-light: #019e94;
  --orange-pale: #e8f5f3;
  --accent-on-dark: #9ee8df;
  --cream: #f8f5f0;
  --surface-warm: #f4f1eb;
  --surface-warm-deep: #e8e3db;
  --slate: #6b8199;
  --white: #ffffff;
  --text-dark: #111827;
  --text-mid: #3d4f63;
  --text-light: #7a8fa3;
  --border: #dde5ef;
  --shadow-sm: 0 2px 8px rgba(2, 37, 95, 0.08);
  --shadow-md: 0 8px 32px rgba(2, 37, 95, 0.12);
  --shadow-lg: 0 20px 60px rgba(2, 37, 95, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --nav-height: 92px;
  --logo-width: 200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-sans);
  line-height: 1.2;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5%, 48px);
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 12px 8px 4px;
  margin-right: 4px;
}

.navbar .site-logo {
  width: var(--logo-width);
  height: auto;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-logo {
  width: var(--logo-width);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
  transform: translateY(-1px);
}

.nav-links a.nav-cta.active {
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--text-mid);
  font-size: 1rem;
}

.mobile-menu a:hover {
  color: var(--orange);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1, 118, 111, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--orange);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--orange-pale);
  transform: translateY(-2px);
}

/* ── SECTION COMMON ── */
section {
  padding: 90px 5%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--orange);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 50%, var(--blue) 100%);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45) saturate(1.1);
  transform: scale(1.05);
  animation: heroVideoZoom 18s ease-in-out infinite alternate;
}

@keyframes heroVideoZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.12);
  }
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(1, 118, 111, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(37, 99, 168, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 118, 111, 0.2);
  border: 1px solid rgba(1, 118, 111, 0.4);
  color: var(--accent-on-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {}

.stat-num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.stat-num span {
  color: var(--orange-light);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(10px);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-card-main h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-card-main p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-pill {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  animation: float 4s ease-in-out infinite;
}

.hero-pill-1 {
  top: -24px;
  right: -20px;
  animation-delay: 0s;
}

.hero-pill-2 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}

.hero-pill-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ── CLIENTS ── */
.clients {
  padding: 20px 5%;
  background: linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
  border-top: 1px solid rgba(221, 229, 239, 0.85);
  border-bottom: 1px solid rgba(221, 229, 239, 0.85);
}

.clients-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.clients-marquee {
  overflow: hidden;
  flex: 1;
  display: flex;
  min-width: 0;
}

.clients-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.clients-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scroll-x 20s linear infinite;
  flex-shrink: 0;
}

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.9;
  transition: none;
  background: transparent;
}


.client-logo img {
  height: 62px;
  width: auto;
  max-width: min(190px, 30vw);
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: normal;
}

.client-logo:hover {
  opacity: 0.9;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── SERVICES ── */
.services {
  background: var(--white);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.icon-orange {
  background: var(--orange-pale);
}

.icon-blue {
  background: rgba(37, 99, 168, 0.1);
}

.icon-teal {
  background: rgba(20, 184, 166, 0.1);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* ── WHY US ── */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(1, 118, 111, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-left .section-tag {
  background: rgba(1, 118, 111, 0.2);
  color: var(--accent-on-dark);
  border: 1px solid rgba(1, 118, 111, 0.3);
}

.why-us-left .section-title {
  color: white;
}

.why-us-left .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.why-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 32px;
  height: 32px;
  background: rgba(1, 118, 111, 0.2);
  border: 1px solid rgba(1, 118, 111, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-text h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 4px;
}

.why-item-text p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* About page: four milestone cards (responsive; avoid inline grid on the HTML) */
.why-grid.milestones-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.3s;
}

.why-stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.why-stat-card .num {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-card .lbl {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ── PRODUCTS SECTION (homepage) ── */
.products-home {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.product-img-orange {
  background: var(--orange-pale);
}

.product-img-blue {
  background: rgba(37, 99, 168, 0.08);
}

.product-img-teal {
  background: rgba(20, 184, 166, 0.08);
}

.product-img-green {
  background: rgba(34, 197, 94, 0.08);
}

.product-body {
  padding: 20px;
}

.product-body h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.product-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
}

.product-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 12px;
  letter-spacing: 0.04em;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-sans);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.2;
}

.stars {
  color: var(--orange-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #016c65 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo .site-logo {
  width: var(--logo-width);
  height: auto;
  max-width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  background: var(--orange);
}

.footer-col h4 {
  font-family: var(--font-sans);
  color: white;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange-light);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-icon {
  font-size: 1rem;
  margin-top: 2px;
  color: var(--orange-light);
  flex-shrink: 0;
}

.footer-contact-text {
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.83rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(1, 118, 111, 0.2) 0%, transparent 70%);
}

/* Photo banner variant (About, Products, category pages) — overlay tuned to warm/night site photography */
.page-hero.page-hero--banner {
  background-color: var(--navy-deep);
  min-height: 260px;
  background-image:
    linear-gradient(
      125deg,
      rgba(10, 22, 42, 0.88) 0%,
      rgba(2, 37, 95, 0.52) 42%,
      rgba(36, 28, 22, 0.76) 100%
    ),
    radial-gradient(ellipse 90% 70% at 75% 15%, rgba(1, 118, 111, 0.14), transparent 52%),
    var(--hero-banner-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero.page-hero--banner::before {
  display: none;
}

.page-hero--banner-about {
  --hero-banner-img: url('assets/banners/about-us-hero.webp');
}

.page-hero--banner-products {
  --hero-banner-img: url('assets/banners/products-hero.webp');
}

.page-hero--banner-business-divisions {
  --hero-banner-img: url('assets/banners/business-divisions-hero.webp');
}

.page-hero--banner-waterproofing {
  --hero-banner-img: url('assets/categories/waterproofing-chemicals.webp');
}

.page-hero--banner-tapes {
  --hero-banner-img: url('assets/categories/tapes-adhesives.webp');
}

.page-hero--banner-paints {
  --hero-banner-img: url('assets/categories/paints.webp');
}

.page-hero--banner-construction {
  --hero-banner-img: url('assets/categories/construction-chemicals.webp');
}

.page-hero--banner-tile-adhesives-more {
  --hero-banner-img: url('assets/categories/tile-adhesives-more.webp');
}

.page-hero-tag {
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 118, 111, 0.2);
  border: 1px solid rgba(1, 118, 111, 0.4);
  color: var(--accent-on-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 100%;
  line-height: 1.7;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange-light);
}

.breadcrumb span {
  color: var(--orange-light);
}

/* ── ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-block {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--surface-warm-deep);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge-card .num {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.about-badge-card .lbl {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-badge-card {
    right: 12px;
    bottom: -16px;
  }
}

@media (max-width: 640px) {
  .about-img-block {
    margin-bottom: 28px;
  }

  .about-badge-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -18px;
    padding: 16px 20px;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--orange);
  transition: transform 0.2s;
}

.value-card:hover {
  transform: translateX(4px);
}

.value-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.av1 {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.av2 {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.av3 {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.av4 {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.team-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
}

/* ── PRODUCTS PAGE ── */
.products-page-section {
  background: var(--cream);
  padding: 80px 5%;
}

.products-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px 16px;
  margin-bottom: 56px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.products-stats-item {
  text-align: center;
  min-width: 0;
}

.products-stats-num {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
}

.products-stats-num--orange {
  color: var(--orange);
}

.products-stats-num--navy {
  color: var(--navy);
}

.products-stats-num--blue {
  color: var(--blue);
}

.products-stats-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.35;
}

.products-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.products-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-full-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.product-full-card > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-full-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef2f8 100%);
}

.product-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-full-body {
  padding: 24px;
}

.product-full-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-full-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.product-full-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-spec-tag {
  background: rgba(37, 99, 168, 0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ── WATERPROOFING DETAIL PAGE: PRODUCT CARDS + TABLE ── */
.products-section {
  max-width: 1100px;
  margin: 0 auto;
}

.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(2, 37, 95, 0.58);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.product-modal-backdrop.open {
  display: flex;
}

.product-modal {
  width: min(760px, 100%);
  max-height: min(78vh, 720px);
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(221, 229, 239, 0.9);
  box-shadow: 0 30px 90px rgba(2, 37, 95, 0.35);
  display: flex;
  flex-direction: column;
}

.product-modal-head {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-modal-title {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.2;
}

.product-modal-meta {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 0.86rem;
}

.product-modal-chip {
  background: rgba(37, 99, 168, 0.08);
  color: var(--navy);
  border: 1px solid rgba(37, 99, 168, 0.16);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  flex-shrink: 0;
}

.product-modal-close:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(2, 37, 95, 0.18);
}

.product-modal-body {
  padding: 18px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.product-modal-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.products-selected-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 10px 0 22px;
}

.products-selected-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
}

.products-selected-emoji {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 17, 40, 0.06);
}

.products-selected-sub {
  flex-basis: 100%;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-top: -6px;
}

.products-selected-cta {
  padding: 10px 18px;
  font-size: 0.86rem;
}

.products-tiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.product-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 280px;
  max-width: 360px;
  min-width: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  cursor: pointer;
}

.product-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-tile:focus {
  outline: none;
}

.product-tile:focus-visible {
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(37, 99, 168, 0.35);
}

.product-tile-visual {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.product-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
}

.pbg-waterproofing {
  background-image:
    radial-gradient(900px 280px at 15% 25%, rgba(37, 99, 168, 0.40), transparent 60%),
    radial-gradient(700px 260px at 85% 15%, rgba(20, 184, 166, 0.26), transparent 60%),
    linear-gradient(180deg, #f3f9ff, #ffffff);
}

.product-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px 20px;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(180deg, rgba(2, 37, 95, 0.05) 0%, rgba(2, 37, 95, 0.78) 55%, rgba(10, 18, 28, 0.88) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-tile:hover .product-tile-overlay {
    opacity: 1;
  }
}

.product-tile-overlay-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.product-tile-overlay-cta {
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.product-tile-footer {
  position: relative;
  padding: 14px 18px 18px;
  background: #fff;
  border-top: 1px solid var(--border);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-tile-brand-chip {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 168, 0.08);
  border: 1px solid rgba(37, 99, 168, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
}

.product-tile-name {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0;
}

.product-tile-sizes {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-light);
}

/* Legacy row (if used elsewhere) */
.product-tile-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-light);
}

.product-tile-meta .dot {
  opacity: 0.55;
}

.products-details-card {
  margin-top: 26px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.products-details-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.products-details-head h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy);
}

.products-details-sub {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-light);
}

.products-details-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.products-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.products-details-table th,
.products-details-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.products-details-table th {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: rgba(37, 99, 168, 0.06);
}

.products-details-table tbody tr:hover td {
  background: rgba(1, 118, 111, 0.04);
}

/* ── CONTACT PAGE ── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info-card h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-info-card .sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(1, 118, 111, 0.2);
  border: 1px solid rgba(1, 118, 111, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h5 {
  color: white;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-card .sub {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(1, 118, 111, 0.12);
  background: white;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--cream);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  background: var(--cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--orange);
  color: white;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── BLOG PAGE ── */
.blog-page-section {
  background: var(--cream);
  padding: 80px 5%;
}

.blog-section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.blog-cat {
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.blog-newsletter {
  background: var(--navy);
  padding: 64px 5%;
}

.blog-newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.blog-newsletter-inner h2 {
  color: white;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 12px;
}

.blog-newsletter-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── BUSINESS DIVISIONS PAGE ── */
.division-split {
  padding: 80px 5%;
}

.division-split--cream {
  background: var(--cream);
}

.division-split--white {
  background: white;
}

.division-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.division-split--reverse .division-split-inner {
  direction: rtl;
}

.division-split--reverse .division-split-inner > * {
  direction: ltr;
}

.division-split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-warm-deep);
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.division-split-media picture,
.division-split-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

.division-split-media img {
  object-fit: cover;
  object-position: center;
}

/* Portrait bd photo (business divisions) — keep crane/building centered */
.division-split--cream .division-split-media img {
  object-position: 55% 35%;
}

/* Landscape project photo — favor finished tower facade */
.division-split--reverse .division-split-media img {
  object-position: 42% 40%;
}

.division-split-content .section-title {
  margin-bottom: 20px;
}

.division-split-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.division-split-content p:last-child {
  margin-bottom: 0;
}

.divisions-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 5%;
  position: relative;
  overflow: hidden;
}

.divisions-cta::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(1, 118, 111, 0.25) 0%, transparent 70%);
}

.divisions-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.divisions-cta-inner h2 {
  color: white;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 12px;
}

.divisions-cta-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .division-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .division-split--reverse .division-split-inner {
    direction: ltr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-grid.milestones-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-img-main {
    height: 280px;
  }

  .division-split-media,
  .division-split-media img {
    min-height: 260px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .products-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 5%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    padding: 8px 8px 8px 2px;
    margin-right: 0;
  }

  .navbar .site-logo {
    width: min(var(--logo-width), 168px);
    max-height: 56px;
  }

  .footer-logo .site-logo {
    width: min(var(--logo-width), 180px);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-full-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid.milestones-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 96px 5% 52px;
  }

  .page-hero.page-hero--banner {
    min-height: 200px;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  .products-page-section {
    padding: 56px 5%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

/* ── SHARED LAYOUT & PAGE HELPERS (no inline styles) ── */
.section-cream-page {
  background: var(--cream);
  padding: 80px 5%;
}

.section-cream-tall {
  background: var(--cream);
  padding: 90px 5%;
}

.section-white-padded {
  background: white;
  padding: 80px 5%;
}

.services--white {
  background: white;
}

.section-bulk-cta {
  background: var(--navy);
  padding: 70px 5%;
}

.bulk-order-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.bulk-order-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 118, 111, 0.2);
  border: 1px solid rgba(1, 118, 111, 0.4);
  color: var(--accent-on-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bulk-order-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  margin-bottom: 12px;
}

.bulk-order-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

.bulk-order-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 1;
  flex-wrap: wrap;
}

.btn-on-navy-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-on-dark-soft {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline--hero-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline--hero-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-card-link {
  color: var(--orange-light);
  margin-top: 20px;
  display: inline-flex;
  gap: 6px;
  font-weight: 600;
}

.hero-card-link:hover {
  color: var(--orange-light);
}

.section-title--white {
  color: white;
}

.section-sub--muted-white {
  color: rgba(255, 255, 255, 0.6);
}

.section-tag--center {
  margin: 0 auto 16px;
}

.section-sub--centered {
  margin: 0 auto;
}

.text-center-mt-lg {
  text-align: center;
  margin-top: 48px;
}

.section-sub--max-720 {
  max-width: 720px;
}

.flex-row-gap-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-story-lead {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.values-section {
  background: var(--cream);
  padding: 90px 5%;
}

.values-grid--constrained {
  max-width: 960px;
  margin: 48px auto 0;
}

.why-us--page-pad {
  padding: 90px 5%;
}

.milestones-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag--warm-on-dark {
  margin: 0 auto 16px;
  background: rgba(1, 118, 111, 0.2);
  color: var(--accent-on-dark);
  border: 1px solid rgba(1, 118, 111, 0.3);
}

.milestone-title-accent {
  color: var(--orange-light);
}

.why-stat-card.milestone-stat-card {
  text-align: center;
}

.why-stat-card.milestone-stat-card .num {
  font-size: 1.6rem;
  color: var(--accent-on-dark);
}

.why-stat-card.milestone-stat-card .lbl {
  margin-top: 8px;
}

.team-card-bio {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.5;
}

/* Contact page */
.contact-main-section {
  background: var(--cream);
  padding: 90px 5%;
}

.contact-regional-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-regional-title {
  color: white;
  font-family: var(--font-sans);
  margin-bottom: 16px;
}

.contact-regional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-regional-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px;
}

.contact-regional-city {
  font-weight: 600;
  color: var(--orange-light);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-regional-address {
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-option-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.form-option-row input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.form-option-row label {
  font-size: 0.85rem;
  color: var(--text-mid);
  cursor: pointer;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.contact-success-panel {
  text-align: center;
  padding: 40px;
}

.contact-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.contact-success-title {
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-success-text {
  color: var(--text-light);
}

.contact-success-panel .btn {
  margin-top: 24px;
}

.contact-form-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ── Contact inquiries admin (contact-lists.html) ── */
.inquiries-page-body {
  background: linear-gradient(180deg, #f0f2f5 0%, #e8eaed 100%);
  min-height: 100vh;
}

.inquiries-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 24px) 5% 64px;
}

.nav-refresh-btn {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-refresh-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.nav-refresh-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.inquiries-state {
  text-align: center;
  padding: 56px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.inquiries-state h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.inquiries-state p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.inquiries-state-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiries-state-icon--muted {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 1.1rem;
}

.inquiries-loading .inquiries-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: inquiries-spin 0.7s linear infinite;
}

@keyframes inquiries-spin {
  to {
    transform: rotate(360deg);
  }
}

.inquiries-table-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.inquiries-table-scroll {
  overflow-x: auto;
}

.inquiries-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.inquiries-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.inquiries-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: #f5f5f5;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.inquiries-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-mid);
  line-height: 1.5;
}

.inquiries-table tbody tr:hover td {
  background: #fafbfc;
}

.inquiries-table tbody tr:last-child td {
  border-bottom: none;
}

.inquiries-cell-date {
  white-space: nowrap;
  min-width: 120px;
}

.inquiries-date {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
}

.inquiries-time {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.inquiries-cell-contact {
  min-width: 180px;
}

.inquiries-name {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.inquiries-link {
  display: block;
  font-size: 0.82rem;
  color: var(--blue);
  text-decoration: none;
  margin-top: 2px;
}

.inquiries-link:hover {
  color: var(--orange);
  text-decoration: underline;
}

.inquiries-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--orange-pale);
  color: var(--orange);
  line-height: 1.3;
  max-width: 200px;
}

.inquiries-product {
  font-size: 0.85rem;
  color: var(--text-dark);
}

.inquiries-muted {
  color: var(--text-light);
}

.inquiries-cell-message {
  min-width: 220px;
  max-width: 360px;
}

.inquiries-message {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inquiries-cards {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.inquiries-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.inquiries-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.inquiries-card-name {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.inquiries-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.inquiries-card-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.inquiries-card-meta div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  font-size: 0.85rem;
}

.inquiries-card-meta dt {
  font-weight: 600;
  color: var(--text-light);
}

.inquiries-card-meta dd {
  margin: 0;
  color: var(--text-mid);
}

.inquiries-card-meta a {
  color: var(--blue);
  text-decoration: none;
}

.inquiries-card-meta a:hover {
  color: var(--orange);
}

.inquiries-card-message {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .inquiries-table-card {
    display: none !important;
  }

  .inquiries-cards {
    display: flex;
  }
}

.contact-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-card--centered {
  text-align: center;
}

.service-card--centered .service-icon {
  margin: 0 auto 24px;
}

/* Full-bleed map on contact page (no section padding) */
.contact-map {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  overflow: hidden;
}

.contact-map__embed {
  display: block;
  width: 100%;
  height: min(480px, 60vh);
  min-height: 320px;
  border: 0;
  vertical-align: top;
}

@media (max-width: 900px) {
  .contact-regional-grid {
    grid-template-columns: 1fr;
  }

  .contact-promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-promise-grid {
    grid-template-columns: 1fr;
  }
}

/* ── UTILITIES ── */
.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-48 {
  margin-top: 48px;
}




.product-tile-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(165deg, #f4f7fb 0%, #eef2f8 50%, #e8ecf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 85%;
  transition: transform 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-tile:hover .product-tile-img img {
    transform: scale(1.03);
  }
}