/* Titan Arabian — PlumFix-inspired design system */

:root {
  --bg-cream: #f5f1ec;
  --accent: rgb(178, 150, 93);
  --accent-hover: #5F4129;
  --accent-orange: #ff5e15;
  --plumfix-bg: #121212;
  --plumfix-card: #f5f1ec;
  --dark: #0b212d;
  --dark-deep: #010a11;
  --text-primary: #211d1d;
  --text-secondary: #4f5055;
  --white: #ffffff;
  --border-light: rgba(33, 29, 29, 0.1);
  --shadow: 0 8px 32px rgba(11, 33, 45, 0.08);
  --shadow-lg: 0 16px 48px rgba(11, 33, 45, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Ubuntu", sans-serif;
  --font-body: "Ubuntu", sans-serif;
  --nav-height: 80px;
  --transition: 0.3s ease;
  --section-heading-size: clamp(1.5rem, 3.25vw, 2.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
}

body,
.btn,
.form-control,
.form-select,
input,
textarea,
select,
button {
  font-family: inherit;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text-primary);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.75);
}

/* Buttons */
.btn-titan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  text-decoration: none;
}

.btn-titan-primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-titan-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-titan-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-titan-outline:hover {
  background-color: var(--text-primary);
  color: var(--white);
}

.btn-titan-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-titan-outline-light:hover {
  background-color: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Navbar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 1rem 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background-color: rgba(245, 241, 236, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(11, 33, 45, 0.06);
  padding: 0.6rem 0;
}

/* Dark hero header (home page) */
.site-header--hero {
  background: transparent;
}

.site-header.menu-open {
  background: transparent !important;
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.menu-open .navbar-brand-titan,
.site-header.menu-open .navbar-brand-titan:hover,
.site-header.menu-open .navbar-brand-titan span {
  color: var(--white);
}

.site-header.menu-open .brand-icon .bi-wrench {
  color: var(--white);
}

.site-header.menu-open .nav-toggle-label {
  color: var(--white);
}

.site-header.menu-open .nav-toggle-icon span {
  background-color: var(--white);
}

.site-header--hero .navbar-brand-titan {
  color: var(--white);
}

.site-header--hero .navbar-brand-titan:hover {
  color: var(--white);
}

.site-header--hero .navbar-brand-titan span {
  color: var(--white);
}

.container--plumfix {
  max-width: 1320px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1200px) {
  .container--plumfix {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* PlumFix navbar — logo left, hamburger right */
.navbar-titan--plumfix {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  width: 100%;
}

.navbar-brand-titan--icon.navbar-brand-titan {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.navbar-brand-titan--icon.navbar-brand-titan:hover {
  color: var(--white);
}

.site-header--hero .nav-links-titan a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header--hero .nav-links-titan a:hover,
.site-header--hero .nav-links-titan a.active {
  color: var(--white);
}

.site-header--hero .nav-links-titan a::after {
  background-color: var(--accent);
}

.site-header--hero .nav-toggle--light .nav-toggle-label {
  color: var(--white);
}

.site-header--hero .nav-toggle--light .nav-toggle-icon span {
  background-color: var(--white);
}

.site-header--hero.scrolled {
  background-color: rgba(245, 241, 236, 0.97);
}

.site-header--hero.scrolled .navbar-brand-titan {
  color: var(--text-primary);
}

.site-header--hero.scrolled .navbar-brand-titan:hover {
  color: var(--text-primary);
}

.site-header--hero.scrolled .nav-links-titan a {
  color: var(--text-primary);
}

.site-header--hero.scrolled .nav-links-titan a:hover,
.site-header--hero.scrolled .nav-links-titan a.active {
  color: var(--accent);
}

.site-header--hero.scrolled .nav-toggle--light .nav-toggle-label {
  color: var(--text-primary);
}

.site-header--hero.scrolled .nav-toggle--light .nav-toggle-icon span {
  background-color: var(--text-primary);
}

.navbar-brand-titan--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-icon .bi-gear-fill {
  font-size: 1.5rem;
  color: var(--accent);
}

.site-header--hero .brand-icon .bi-gear-fill {
  color: var(--accent);
}

.brand-icon .bi-wrench {
  position: absolute;
  font-size: 0.85rem;
  color: var(--white);
  transform: rotate(-35deg);
}

.site-header--hero.scrolled .brand-icon .bi-wrench {
  color: var(--text-primary);
}

.btn-hero-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 44px;
}

.btn-hero-nav:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.site-header--hero.scrolled .btn-hero-nav {
  background: var(--accent);
  color: var(--white);
}

.site-header--hero.scrolled .btn-hero-nav:hover {
  background: var(--accent-hover);
}

.navbar-titan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-brand-titan {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

.navbar-brand-titan span {
  color: var(--accent);
}

.navbar-brand-titan:hover {
  color: var(--text-primary);
}

.navbar-brand-titan--logo,
.footer-brand--logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 105px;
  max-width: min(320px, 70vw);
  object-fit: contain;
}

.site-header.scrolled .brand-logo,
.site-header--hero.scrolled .brand-logo {
  height: 60px;
}

.footer-brand--logo .brand-logo {
  height: 72px;
  max-width: 320px;
}

.nav-links-titan {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links-wrap {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--plumfix-bg);
  padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  z-index: 1040;
  overflow-y: auto;
}

.nav-links-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 75% 35%, rgba(247, 65, 62, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.nav-links-wrap.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links-wrap .nav-links-titan {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 560px;
}

.nav-links-wrap .nav-links-titan li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease, color var(--transition);
}

.nav-links-wrap.open .nav-links-titan li {
  opacity: 1;
  transform: translateY(0);
}

.nav-links-wrap.open .nav-links-titan li:nth-child(1) { transition-delay: 0.06s; }
.nav-links-wrap.open .nav-links-titan li:nth-child(2) { transition-delay: 0.12s; }
.nav-links-wrap.open .nav-links-titan li:nth-child(3) { transition-delay: 0.18s; }
.nav-links-wrap.open .nav-links-titan li:nth-child(4) { transition-delay: 0.24s; }
.nav-links-wrap.open .nav-links-titan li:nth-child(5) { transition-delay: 0.3s; }
.nav-links-wrap.open .nav-links-titan li:nth-child(6) { transition-delay: 0.36s; }

.site-header--hero.scrolled .nav-links-wrap .nav-links-titan a,
.nav-links-wrap .nav-links-titan a {
  display: block;
  padding: 1.35rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.25vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--white);
}

.nav-links-wrap .nav-links-titan a::after {
  display: none;
}

.site-header--hero.scrolled .nav-links-wrap .nav-links-titan a:hover,
.site-header--hero.scrolled .nav-links-wrap .nav-links-titan a.active,
.site-header--hero .nav-links-wrap .nav-links-titan a:hover,
.site-header--hero .nav-links-wrap .nav-links-titan a.active,
.nav-links-wrap .nav-links-titan a:hover,
.nav-links-wrap .nav-links-titan a.active {
  color: var(--accent);
}

.nav-links-wrap .nav-cta {
  margin-left: 0;
  margin-top: 2rem;
  width: auto;
  border-bottom: none;
  padding-top: 0.5rem;
  display: flex;
  justify-content: center;
}

.nav-links-wrap .nav-cta .btn-titan,
.nav-links-wrap .nav-cta .btn-hero-nav {
  width: auto;
  min-width: 0;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #000;
  background: var(--white);
}

.nav-links-wrap .nav-cta .btn-titan:hover,
.nav-links-wrap .nav-cta .btn-hero-nav:hover {
  color: var(--white);
  background: var(--accent);
}

.nav-overlay {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .nav-links-wrap,
  .nav-links-wrap .nav-links-titan li {
    transition: none;
    transform: none;
  }

  .nav-links-wrap.open .nav-links-titan li {
    opacity: 1;
  }
}

.nav-links-titan a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links-titan a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width var(--transition);
}

.nav-links-titan a:hover::after,
.nav-links-titan a.active::after {
  width: 100%;
}

.nav-links-titan a:hover,
.nav-links-titan a.active {
  color: var(--accent);
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  width: auto;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 1051;
  flex-shrink: 0;
}

.nav-toggle-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
}

.nav-toggle-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition);
}

.nav-toggle.open .nav-toggle-label {
  color: var(--white);
}

.nav-toggle.open .nav-toggle-icon span {
  background-color: var(--white);
}

.nav-toggle.open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero — PlumFix split banner */
.hero--plumfix {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 2.5rem) 0 2rem;
  overflow-x: hidden;
  overflow-y: visible;
  background-color: var(--plumfix-bg);
  --hero-bg: var(--plumfix-bg);
}

.hero--plumfix::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 75% 65% at 72% 42%, rgba(247, 65, 62, 0.22) 0%, rgba(247, 65, 62, 0.06) 40%, transparent 68%);
  pointer-events: none;
}

.hero-plumfix-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-plumfix-content {
  padding-right: 2rem;
  max-width: 620px;
}

.hero-watermark {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  line-height: 0.9;
}

.hero-glow {
  position: absolute;
  top: 6%;
  right: 8%;
  width: min(560px, 44vw);
  height: min(720px, 88vh);
  background: radial-gradient(circle, rgba(247, 65, 62, 0.5) 0%, rgba(247, 65, 62, 0.12) 42%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-visual-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  height: auto;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.hero-person-img {
  width: auto;
  height: auto;
  max-width: 105%;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin-bottom: -6px;
  transform-origin: bottom center;
  will-change: transform;
  animation: heroPersonFloat 5.5s ease-in-out 1.15s infinite;
}

.hero-person-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding-top: calc(var(--nav-height) + 0.5rem);
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(56px);
  animation: heroPersonEnter 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroPersonEnter {
  from {
    opacity: 0;
    transform: translateY(56px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPersonFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.008);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-person-wrap,
  .hero-person-img {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-float-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  top: auto;
  background: var(--plumfix-card);
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  width: fit-content;
  max-width: min(290px, calc(100vw - 4rem));
  z-index: 5;
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.04);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.hero-plumfix-title {
  margin: 0 0 2.5rem;
  line-height: 0.92;
}

.hero-plumfix-line {
  display: block;
  font-family: var(--font-display);
  font-size: 65px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.hero-plumfix-line--split {
  white-space: nowrap;
}

.hero-plumfix-accent {
  color: var(--accent);
}

.hero--plumfix .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 50px;
}

.btn-hero--white {
  background: var(--white);
  color: #121212;
  border-color: var(--white);
}

.btn-hero--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-hero--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--accent);
}

.btn-hero--outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.hero-float-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(33, 29, 29, 0.1);
}

.hero-float-stat {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: #121212;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.hero-float-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.15rem;
}

.hero-float-meta strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #121212;
  line-height: 1.25;
}

.hero-float-meta span {
  font-size: 0.6875rem;
  color: #6b6b6b;
  line-height: 1.35;
}

.hero-float-card-bottom {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-avatar-stack {
  display: flex;
}

.hero-avatar-stack img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--plumfix-card);
  margin-left: -9px;
  object-fit: cover;
}

.hero-avatar-stack img:first-child {
  margin-left: 0;
}

.hero-float-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #121212;
}

/* Legacy hero (inner pages if needed) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 33, 45, 0.88) 0%, rgba(1, 10, 17, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent-orange);
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Inner page banner */
.inner-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(380px, 55vh, 560px);
  text-align: center;
  overflow: hidden;
}

.inner-banner__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.inner-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(5px);
  transform: scale(1.08);
}

.inner-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.inner-banner__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  padding: calc(var(--nav-height) + 3rem) 1.5rem 4.5rem;
}

.inner-banner__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.inner-banner__title {
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 4.25vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
  margin: 0;
}

/* Sections */
.section-mt {
  margin-top: 140px;
}

.site-footer.section-mt {
  padding: 140px 0;
}

.cta-band + .site-footer.section-mt,
.pre-footer-cta + .site-footer.section-mt {
  margin-top: 0;
  padding-top: 4.5rem;
}

.section {
  padding: 0;
}

.section--dark {
  background-color: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.section--dark .section-title {
  color: var(--white);
}

/* Split content */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section--reverse .split-image {
  order: 2;
}

.split-section--reverse .split-content {
  order: 1;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-content .feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.split-content .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.split-content .feature-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Banner tag */
.banner-tag {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
}

/* About + Count area (PlumFix style) */
.about-count-section {
  background-color: var(--bg-cream);
}

.about-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(33, 29, 29, 0.06);
  border: 1px solid rgba(33, 29, 29, 0.08);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-count-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.about-count-heading {
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 2rem;
  max-width: 540px;
}

.about-count-heading .text-accent {
  color: var(--accent);
}

.about-count-cta {
  margin-bottom: 3rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 520px;
}

.about-stat-item {
  text-align: left;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.about-stat-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.4;
}

.about-count-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 480px;
}

.about-count-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

/* Legacy stats (if used elsewhere) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.25vw, 2.75rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.about-stats-row .about-stat-number,
.about-stats-row .stat-number {
  color: var(--text-primary);
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(247, 65, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card-icon i {
  font-size: 1.4rem;
  color: var(--accent);
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-secondary);
}

/* Why Choose Us — sticky stack layout */
.why-choose-section {
  --why-stack-top: calc(var(--nav-height) + 1.75rem);
  --why-stack-step: 26px;
  background-color: var(--bg-cream);
  overflow: clip;
  padding-bottom: min(20vh, 160px);
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem 4rem;
  align-items: start;
}

.why-choose-sticky {
  position: sticky;
  top: var(--why-stack-top);
  padding-right: 1rem;
}

.why-choose-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(33, 29, 29, 0.04);
  border: 1px solid rgba(33, 29, 29, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.why-choose-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.why-choose-heading {
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  max-width: 420px;
}

.why-choose-heading .text-accent {
  color: var(--accent);
}

.why-choose-intro {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  max-width: 380px;
}

.why-choose-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: min(32vh, 280px);
}

.why-choose-card {
  position: sticky;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 8px 32px rgba(11, 33, 45, 0.08);
  border: 1px solid rgba(33, 29, 29, 0.05);
  min-height: 260px;
  margin-bottom: min(24vh, 200px);
}

.why-choose-card:last-child {
  margin-bottom: 0;
}

.why-choose-card:nth-child(1) {
  top: var(--why-stack-top);
  z-index: 1;
}

.why-choose-card:nth-child(2) {
  top: calc(var(--why-stack-top) + var(--why-stack-step));
  z-index: 2;
}

.why-choose-card:nth-child(3) {
  top: calc(var(--why-stack-top) + var(--why-stack-step) * 2);
  z-index: 3;
}

.why-choose-card:nth-child(4) {
  top: calc(var(--why-stack-top) + var(--why-stack-step) * 3);
  z-index: 4;
}

.why-choose-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.why-choose-card-icon i {
  font-size: 1.65rem;
}

.why-choose-card-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.why-choose-card-content p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  max-width: 280px;
}

.why-choose-card-image {
  height: 100%;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
}

.why-choose-card-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-sticky {
    position: static;
    padding-right: 0;
  }

  .why-choose-heading,
  .why-choose-intro {
    max-width: 100%;
  }

  .why-choose-card {
    position: static;
    margin-bottom: 1.25rem;
    min-height: 0;
  }

  .why-choose-cards {
    padding-bottom: 3rem;
  }

  .why-choose-section {
    padding-bottom: 3rem;
  }

  .why-choose-card-content p {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .why-choose-card {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .why-choose-card-image {
    order: -1;
    min-height: 200px;
  }

  .why-choose-card-image img {
    min-height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-choose-card {
    position: static;
    margin-bottom: 1.25rem;
  }
}

/* Service cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.service-card-body p {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: 1rem;
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card-link:hover {
  gap: 0.6rem;
}

/* Services section — PlumFix layout */
.services-section--plumfix {
  --services-pin-top: var(--nav-height);
  background-color: var(--bg-cream);
}

.services-header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem 3.5rem;
  align-items: center;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(33, 29, 29, 0.04);
  border: 1px solid rgba(33, 29, 29, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.services-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.services-heading {
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
  color: var(--text-primary);
  margin: 0;
  max-width: 520px;
}

.services-heading .text-accent {
  color: var(--accent);
}

.services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1.5rem;
  margin-left: auto;
  max-width: 400px;
}

.services-intro {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.services-see-all {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  min-height: 46px;
}

/* Services horizontal scroll */
.services-scroll-pin {
  position: relative;
}

.services-scroll-sticky {
  position: sticky;
  top: var(--services-pin-top);
  min-height: calc(100svh - var(--services-pin-top));
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(1.25rem, 2.5vh, 2rem);
  padding: clamp(0.75rem, 2vh, 1.5rem) 0 clamp(1.25rem, 2.5vh, 2rem);
  background-color: var(--bg-cream);
  z-index: 1;
}

.services-scroll-sticky .services-header {
  flex-shrink: 0;
}

.services-scroll-viewport {
  overflow: hidden;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
}

.services-scroll-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.services-scroll-item {
  flex: 0 0 var(--services-card-width, 280px);
  padding: 0.35rem 0;
}

.services-section--plumfix .service-card {
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(11, 33, 45, 0.07);
  border: 1px solid rgba(33, 29, 29, 0.05);
}

.services-section--plumfix .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 33, 45, 0.1);
}

.services-section--plumfix .service-card-img {
  height: 220px;
}

.services-section--plumfix .service-card-body {
  padding: 1.35rem 1.5rem 1.6rem;
}

.services-section--plumfix .service-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
}

.services-section--plumfix .service-card-body h4::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.services-section--plumfix .service-card-body p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.35rem;
}

.services-section--plumfix .service-card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: auto;
  gap: 0.45rem;
}

.services-section--plumfix .service-card-link:hover {
  color: var(--accent);
  gap: 0.65rem;
}

@media (prefers-reduced-motion: reduce) {
  .services-scroll-pin {
    height: auto !important;
  }

  .services-scroll-sticky {
    position: static;
    min-height: 0;
    padding: 0 0 1rem;
  }

  .services-scroll-viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .services-scroll-track {
    transform: none !important;
  }
}

@media (max-width: 991.98px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-header-right {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    margin-left: 0;
  }

  .services-heading {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .services-section--plumfix {
    --services-pin-top: calc(var(--nav-height) + 0.5rem);
  }

  .services-section--plumfix .service-card-img {
    height: 200px;
  }

  .services-scroll-sticky {
    gap: 1rem;
    padding: 0.5rem 0 1.5rem;
  }
}

/* Pre-footer CTA — PlumFix banner */
.pre-footer-cta {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 52vw, 580px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0;
  border-radius: 0;
  margin-top: 0;
}

.pre-footer-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pre-footer-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pre-footer-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 4, 4, 0.9) 0%, rgba(14, 6, 6, 0.75) 35%, rgba(20, 8, 8, 0.5) 58%, rgba(24, 10, 10, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(ellipse 60% 75% at 80% 45%, rgba(247, 65, 62, 0.28) 0%, rgba(180, 40, 35, 0.1) 40%, transparent 70%);
}

.pre-footer-cta__person {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(46%, 540px);
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.pre-footer-cta__person img {
  width: auto;
  max-width: 100%;
  max-height: 96%;
  object-fit: contain;
  object-position: bottom center;
}

.pre-footer-cta__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.pre-footer-cta__content {
  text-align: left;
  max-width: 680px;
  margin: 0;
}

.pre-footer-cta__title {
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 1.35rem;
}

.pre-footer-cta__accent {
  color: var(--accent);
}

.pre-footer-cta__text {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 2.25rem;
  max-width: 580px;
}

.pre-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
}

.btn-hero--call i {
  font-size: 0.9rem;
}

@media (min-width: 992px) {
  .pre-footer-cta__content {
    max-width: 640px;
    margin-left: 0;
    margin-right: auto;
  }
}

@media (max-width: 991.98px) {
  .pre-footer-cta {
    min-height: clamp(520px, 85vw, 640px);
    padding: 3.5rem 0 0;
    align-items: flex-start;
  }

  .pre-footer-cta__content {
    padding-top: 1rem;
    padding-bottom: 42%;
    max-width: 100%;
  }

  .pre-footer-cta__person {
    width: 100%;
    max-width: 380px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    height: 42%;
    top: auto;
  }

  .pre-footer-cta__person img {
    max-height: 100%;
  }
}

@media (max-width: 767.98px) {
  .pre-footer-cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .pre-footer-cta__actions .btn-hero {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    align-self: flex-start;
  }

}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-deep) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(247, 65, 62, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Footer — PlumFix style */
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #2a0a0a 0%, #180505 28%, #0a0202 58%, #000000 100%);
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__inner {
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 2rem 3rem;
  align-items: start;
  position: relative;
  z-index: 3;
}

.footer-mid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(6.5rem, 15vw, 11.5rem);
  margin-top: 0.25rem;
  padding-bottom: 0.25rem;
  overflow: hidden;
  pointer-events: none;
}

.footer-watermark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 16vw, 13rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 0.82;
  white-space: nowrap;
  margin: 0;
  transform: translateY(18%);
  background: linear-gradient(
    180deg,
    rgba(220, 220, 220, 0.62) 0%,
    rgba(175, 175, 175, 0.38) 24%,
    rgba(110, 110, 110, 0.18) 50%,
    rgba(45, 45, 45, 0.06) 76%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 1.1rem;
}

.footer-brand--logo {
  margin-bottom: 1.25rem;
}

.footer-brand:hover {
  color: #ffffff;
}

.footer-brand .brand-icon .bi-gear-fill {
  color: var(--accent);
}

.footer-brand .brand-icon .bi-wrench {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin: 0 0 1.1rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact-list p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a i {
  font-size: 0.72rem;
  opacity: 0.9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem 0 0;
  border-top: none;
  margin-top: 0;
  font-size: 0.8125rem;
  text-align: center;
  position: relative;
  z-index: 3;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991.98px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
  }

  .footer-mid {
    min-height: clamp(5rem, 14vw, 8rem);
  }

  .footer-watermark {
    font-size: clamp(3.75rem, 14vw, 7.5rem);
    transform: translateY(14%);
  }
}

@media (max-width: 575.98px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-mid {
    min-height: 4.5rem;
  }

  .footer-watermark {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
    transform: translateY(10%);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Team carousel */
.team-section {
  background-color: var(--white);
  padding: 140px 0 5rem;
}

.team-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  min-height: 0;
  text-align: center;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(33, 29, 29, 0.04);
  border: 1px solid rgba(33, 29, 29, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.team-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.team-heading {
  font-family: var(--font-display);
  font-size: var(--section-heading-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  margin: 0;
  max-width: 620px;
  text-align: center;
}

.team-heading .text-accent {
  color: var(--accent);
}

.team-card {
  background: var(--bg-cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(33, 29, 29, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card__image img {
  transform: scale(1.05);
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(11, 33, 45, 0.55);
  opacity: 0;
  transition: opacity var(--transition);
}

.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__overlay a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-primary);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}

.team-card__overlay a:hover {
  background: var(--accent);
  color: var(--white);
}

.team-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  text-align: center;
}

.team-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--text-primary);
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}

.team-carousel.owl-carousel .owl-dots {
  margin-top: 2rem;
  text-align: center;
}

.team-carousel.owl-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: rgba(33, 29, 29, 0.15);
  transition: background var(--transition), transform var(--transition);
}

.team-carousel.owl-carousel .owl-dots .owl-dot.active span,
.team-carousel.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 991.98px) {
  .team-section {
    padding-bottom: 3.5rem;
  }

  .team-header {
    margin-bottom: 2.5rem;
  }
}

/* Services page */
.services-nav {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(245, 241, 236, 0.97);
  backdrop-filter: blur(12px);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.services-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.services-nav-list a {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border-radius: 50px;
  border: 1px solid var(--border-light);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.services-nav-list a:hover,
.services-nav-list a.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.service-detail {
  padding: 0;
}

.service-detail-number {
  font-family: var(--font-display);
  font-size: 3.25rem;
  color: rgba(247, 65, 62, 0.15);
  line-height: 1;
  margin-bottom: -1rem;
}

/* Contact */
.contact-discuss-row {
  margin-top: 100px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(247, 65, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-info-icon i {
  font-size: 1.4rem;
  color: var(--accent);
}

.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 65, 62, 0.12);
}

/* Career */
.career-placeholder {
  background: var(--white);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.career-placeholder i {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.position-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Utilities */
.text-accent {
  color: var(--accent) !important;
}

.bg-white-section {
  background-color: var(--white);
}

.about-vision-section {
  padding: 140px 0;
}

.industry-overview-section {
  padding: 140px 0;
}

.industry-overview-section .split-section {
  grid-template-columns: 5fr 7fr;
  align-items: stretch;
}

.industry-overview-section .split-image {
  display: flex;
  min-height: 0;
}

.industry-overview-section .split-image img {
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.service-portfolio-section {
  padding: 140px 0;
}

.mb-section {
  margin-bottom: 3rem;
}

/* Hero desktop — PlumFix match */
@media (min-width: 992px) {
  .site-header--hero {
    padding: 1.35rem 0;
  }

  .hero-visual-overlay {
    width: 50%;
    right: 0;
  }

  .hero-person-img {
    max-height: 100%;
  }

  .hero-float-card {
    bottom: 2rem;
    right: max(2rem, calc((100vw - 1320px) / 2 + 2rem)) !important;
  }

  .hero-glow {
    top: 4%;
    right: 6%;
  }

  .hero-plumfix-content {
    padding-top: 1rem;
    padding-left: 0.5rem;
  }
}

/* Responsive */
@media (max-width: 1199.98px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 991.98px) {
  .about-count-content {
    text-align: left;
  }

  .about-count-heading {
    max-width: 100%;
  }

  .about-count-image {
    min-height: 320px;
  }

  .about-count-image img {
    min-height: 320px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .industry-overview-section .split-section {
    grid-template-columns: 1fr;
  }

  .split-section--reverse .split-image,
  .split-section--reverse .split-content {
    order: unset;
  }

  .split-image img {
    height: 300px;
  }

  .industry-overview-section .split-image img {
    height: 300px;
    min-height: 300px;
  }

  .hero--plumfix {
    min-height: 100svh;
    padding: calc(var(--nav-height) + 1.5rem) 0 1.5rem;
    align-items: flex-start;
  }

  .hero-plumfix-content {
    text-align: left;
    padding-right: 0;
    max-width: 100%;
    position: relative;
    z-index: 3;
    padding-bottom: 1rem;
  }

  .hero-plumfix-line--split {
    white-space: normal;
  }

  .hero-visual-overlay {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .hero-person-wrap {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-person-img {
    max-height: 100%;
  }

  .hero-float-card {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 1rem;
  }

  .hero-float-stat {
    font-size: 1.85rem;
  }

  .hero-watermark {
    font-size: clamp(3rem, 11vw, 5.5rem);
    top: 42%;
  }

  .hero-glow {
    top: auto;
    bottom: 8%;
    right: 0;
    width: 80%;
    height: 50%;
  }
}

@media (max-width: 767.98px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .about-stat-number {
    font-size: 1.4rem;
  }

  .about-stat-label {
    font-size: 0.72rem;
  }

  .about-count-cta {
    margin-bottom: 2rem;
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-titan,
  .hero--plumfix .hero-actions .btn-hero {
    width: 100%;
    justify-content: center;
  }

  .about-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .about-stat-label {
    font-size: 0.75rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.4rem 0.9rem;
  }

  .hero-plumfix-line {
    font-size: clamp(1.85rem, 8.5vw, 2.85rem);
  }

  .hero-float-card {
    bottom: 1rem;
    right: 1rem;
    padding: 0.9rem;
  }

  .hero-visual-overlay {
    height: 46%;
  }

  .hero-person-img {
    max-height: 100%;
  }

  .inner-banner__content {
    padding: calc(var(--nav-height) + 2rem) 1.25rem 3rem;
  }

  .inner-banner__title {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }

  .services-nav {
    top: 60px;
  }

  .services-nav-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .position-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(33, 29, 29, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background-color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent-hover);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.125rem;
  }
}

/* Scroll-triggered fade animations */
.fade-up,
.fade-in,
.fade-left,
.fade-right {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.no-scroll-anim,
.no-scroll-anim *:not(.services-scroll-track) {
  opacity: 1 !important;
  transition: none !important;
  will-change: auto !important;
}

.no-scroll-anim.fade-up,
.no-scroll-anim.fade-in,
.no-scroll-anim.fade-left,
.no-scroll-anim.fade-right,
.no-scroll-anim .fade-up,
.no-scroll-anim .fade-in,
.no-scroll-anim .fade-left,
.no-scroll-anim .fade-right {
  transform: none !important;
}

.site-footer,
.site-footer * {
  opacity: 1 !important;
  transition: none !important;
  will-change: auto !important;
}

.site-footer .fade-up,
.site-footer .fade-in,
.site-footer .fade-left,
.site-footer .fade-right {
  transform: none !important;
}

.fade-up {
  transform: translateY(36px);
}

.fade-in {
  transform: none;
}

.fade-left {
  transform: translateX(-36px);
}

.fade-right {
  transform: translateX(36px);
}

.fade-up.is-visible,
.fade-in.is-visible,
.fade-left.is-visible,
.fade-right.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-in,
  .fade-left,
  .fade-right {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Site preloader */
body:not(.preloader-done) {
  overflow: hidden;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-deep);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.site-preloader__logo {
  width: min(120px, 40vw);
  height: auto;
  animation: preloader-pulse 1.8s ease-in-out infinite;
}

.site-preloader__bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.site-preloader__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 3px;
  animation: preloader-progress 1.2s ease-in-out infinite alternate;
}

@keyframes preloader-pulse {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes preloader-progress {
  0% {
    width: 15%;
  }

  100% {
    width: 85%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__logo,
  .site-preloader__bar-fill {
    animation: none;
  }

  .site-preloader__bar-fill {
    width: 60%;
  }
}
