/**
 * Washnah Design System — Components
 * Buttons, cards, menus, responsive refinements and unified component alignment.
 */
/* ==============================================================
   Washnah mobile navigation fixes
   ============================================================== */
@media (max-width: 1199px) {
  .header .container {
    gap: 10px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    touch-action: manipulation;
  }

  .mobile-nav-toggle:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
  }
}

/* =============================================================
   WASHNAH PROFESSIONAL RESPONSIVE SYSTEM 2026
   Unified corporate UI, motion, accessibility and device support
   ============================================================= */
:root {
  --brand: #801922;
  --brand-deep: #5f1018;
  --brand-bright: #a72b38;
  --ink: #17212b;
  --ink-soft: #344054;
  --muted: #667085;
  --line: rgba(23, 33, 43, 0.1);
  --soft-bg: #f5f7fa;
  --soft-brand: rgba(128, 25, 34, 0.07);
  --white: #ffffff;
  --shadow-xs: 0 2px 10px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0 10px 30px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 22px 60px rgba(16, 24, 40, 0.12);
  --shadow-brand: 0 16px 36px rgba(128, 25, 34, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-height: 88px;
  --section-space: clamp(72px, 8vw, 120px);
  --content-width: 1240px;
  --transition-fast: 180ms ease;
  --transition: 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --accent-color: var(--brand);
  --heading-color: var(--ink);
  --default-color: var(--ink-soft);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
}
body.washnah-site {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.mobile-nav-active {
  overflow: hidden;
  touch-action: none;
}
main {
  overflow: clip;
}
img,
video {
  max-width: 100%;
}
img {
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  color: #fff;
  background: var(--brand);
}

.container {
  width: min(calc(100% - 40px), var(--content-width));
  max-width: var(--content-width);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
a {
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(128, 25, 34, 0.25);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000000;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand);
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}

section,
.section {
  padding: var(--section-space) 0;
  scroll-margin-top: calc(var(--header-height) + 12px);
}
.light-background {
  --background-color: var(--soft-bg);
}
.section-title {
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: clamp(38px, 5vw, 64px);
  text-align: center;
}
.section-eyebrow,
.page-kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section-eyebrow::before,
.page-kicker::before,
.hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.section-title h2 {
  margin-bottom: 18px;
  padding: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
}
.section-title h2::after {
  display: none;
}
.section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.85;
}

/* Header */
.site-header.header {
  min-height: var(--header-height);
  padding: 10px 0;
  border: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 20, 0.68),
    rgba(10, 15, 20, 0)
  );
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    min-height var(--transition);
  will-change: transform;
}
.site-header.header.header-hidden {
  transform: translateY(-110%);
}
.scrolled .site-header.header,
.site-header.header.is-solid {
  min-height: 76px;
  background: rgba(17, 24, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}
.site-header .container {
  min-height: 56px;
  gap: 24px;
}
.site-header .logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header .logo img {
  width: auto;
  height: 58px;
  max-height: 58px;
  margin: 0;
  object-fit: contain;
  transition:
    height var(--transition),
    transform var(--transition);
}
.scrolled .site-header .logo img {
  height: 50px;
}
.header .header-cta,
.header .header-cta:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 10px 23px;
  color: #fff;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(128, 25, 34, 0.24);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.header .header-cta:hover {
  color: #fff;
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

@media (min-width: 1200px) {
  .navmenu {
    margin-left: auto;
  }
  .navmenu > ul {
    gap: 2px;
  }
  .navmenu > ul > li {
    padding: 18px 10px;
  }
  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.82);
    padding: 5px 3px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.015em;
  }
  .navmenu > ul > li > a::before {
    bottom: -9px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
  }
  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }
  .navmenu .dropdown > ul {
    min-width: 220px;
    left: 50%;
    top: calc(100% + 14px);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transform: translateX(-50%) translateY(8px);
  }
  .navmenu .dropdown:hover > ul {
    top: calc(100% + 2px);
    transform: translateX(-50%) translateY(0);
  }
  .navmenu .dropdown ul a {
    min-height: 44px;
    padding: 10px 14px;
    color: var(--ink-soft);
    border-radius: 10px;
    font-size: 14px;
  }
  .navmenu .dropdown ul a:hover {
    color: var(--brand);
    background: var(--soft-brand);
  }
}

/* Home hero and page banners */
.hero.hero-home {
  min-height: 100svh;
  min-height: 100dvh;
  padding: calc(var(--header-height) + 80px) 0 90px;
  isolation: isolate;
}
.hero.hero-home::before {
  background:
    radial-gradient(
      circle at 18% 72%,
      rgba(128, 25, 34, 0.38),
      transparent 35%
    ),
    linear-gradient(
      110deg,
      rgba(7, 12, 17, 0.84) 10%,
      rgba(7, 12, 17, 0.56) 54%,
      rgba(7, 12, 17, 0.7) 100%
    );
}
.hero .hero-video,
.video-banner .bg-video,
.vision-cta .hero-video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.hero-content {
  align-items: flex-start !important;
  max-width: var(--content-width);
  text-align: left !important;
}
.hero .hero-kicker {
  color: rgba(255, 255, 255, 0.88);
}
.hero.hero-home h2 {
  max-width: 1020px;
  color: #fff;
  font-size: clamp(2.5rem, 6.1vw, 5.5rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.hero.hero-home p {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn-primary-pro,
.btn-secondary-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 600;
}
.btn-primary-pro {
  color: #fff;
  background: var(--brand);
  box-shadow: var(--shadow-brand);
}
.btn-primary-pro:hover {
  color: #fff;
  background: var(--brand-bright);
  transform: translateY(-2px);
}
.btn-secondary-pro {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn-secondary-pro:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.hero-scroll-cue {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: 34px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--nav-font);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-scroll-cue i {
  font-size: 18px;
  animation: washnahBounce 1.8s ease-in-out infinite;
}
@keyframes washnahBounce {
  50% {
    transform: translateY(6px);
  }
}

.video-banner {
  min-height: clamp(540px, 72svh, 760px);
  padding: calc(var(--header-height) + 80px) 0 80px;
  isolation: isolate;
}
.video-banner .overlay {
  background:
    radial-gradient(circle at 78% 28%, rgba(128, 25, 34, 0.3), transparent 32%),
    linear-gradient(
      110deg,
      rgba(8, 14, 19, 0.86),
      rgba(8, 14, 19, 0.52) 65%,
      rgba(8, 14, 19, 0.72)
    );
}
.video-banner .container {
  max-width: 980px;
}
.video-banner h1 {
  color: #fff;
  font-size: clamp(2.55rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: none;
}
.video-banner p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  line-height: 1.7;
}
.video-banner .page-kicker {
  color: rgba(255, 255, 255, 0.84);
}

/* About */
.about-pro {
  background: linear-gradient(180deg, #fff, #fbfbfc);
}
.about-pro .section-title {
  margin-bottom: 6px;
}
.about-grid > [class*="col-"] {
  display: flex;
}
.about-copy-card,
.profile-downloads {
  min-height: 100%;
}
.about-copy-card {
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-copy-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
}
.about-copy-card ul li {
  align-items: flex-start;
  gap: 13px;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}
.about-copy-card ul i {
  flex: 0 0 auto;
  margin-top: 4px;
  padding: 0;
  color: #d98b93;
  font-size: 23px;
}
.about-copy-card b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 17px;
}
.profile-downloads {
  display: grid !important;
  gap: 18px;
}
.profile-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 145px;
  padding: 26px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}
.profile-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 170px;
  height: 170px;
  background: var(--soft-brand);
  border-radius: 50%;
  transition: transform var(--transition);
}
.profile-card:hover {
  color: var(--ink);
  border-color: rgba(128, 25, 34, 0.24);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}
.profile-card:hover::after {
  transform: scale(1.2);
}
.profile-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--brand);
  border-radius: 18px;
  font-size: 27px;
  box-shadow: 0 12px 26px rgba(128, 25, 34, 0.22);
}
.profile-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.profile-content small {
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.profile-content strong {
  margin: 4px 0 8px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}
.profile-content > span {
  color: var(--muted);
  font-size: 13px;
}

/* Statistics */
.stats-pro {
  padding: var(--section-space) 0;
  isolation: isolate;
}
.stats-pro::before {
  background: linear-gradient(
    120deg,
    rgba(12, 17, 23, 0.96),
    rgba(42, 16, 20, 0.86)
  );
}
.stats-pro .section-title,
.stats-pro .subheading {
  position: relative;
  z-index: 3;
}
.stats-pro .section-title h2,
.stats-pro .section-title p,
.stats-pro .section-eyebrow,
.stats-pro .subheading h3,
.stats-pro .subheading p {
  color: #fff;
}
.stats-pro .section-eyebrow {
  color: #e8aeb4;
}
.stats-pro .subheading {
  max-width: 760px;
  margin: 0 auto 38px;
}
.stats-pro .subheading h3 {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
}
.stats-pro .subheading p {
  color: rgba(255, 255, 255, 0.68);
}
.stats-pro .stats-item {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}
.stats-pro .stats-item span {
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1;
}
.stats-pro .stats-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* Partners */
.partners-pro {
  overflow: hidden;
  background: #fff;
}
.partners-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(40px, 8vw, 140px);
  pointer-events: none;
}
.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.partners-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.logo-track {
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.logo-track img {
  width: 150px;
  height: 96px;
  padding: 18px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
  filter: grayscale(100%);
  opacity: 0.72;
  transition:
    transform var(--transition),
    filter var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
}
.logo-track img:hover {
  transform: translateY(-4px);
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow-sm);
}
.track-1,
.track-2 {
  animation-duration: 65s;
}
.partners-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* Services */
.sector-services {
  background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}
.sector-services .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}
.services .service-item {
  position: relative;
  min-height: 100%;
  padding: clamp(28px, 3.5vw, 38px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}
.services .service-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.services .service-item .icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  color: var(--brand);
  background: var(--soft-brand);
  border: 1px solid rgba(128, 25, 34, 0.1);
  border-radius: 18px;
  font-size: 25px;
}
.services .service-item h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.4rem);
  line-height: 1.35;
}
.services .service-item p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}
.services .service-item > a {
  color: inherit;
}
.services .service-item .service-cta {
  margin-top: auto;
  color: var(--brand);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
}
.services .service-item .service-cta i {
  margin-left: 5px;
}

/* Video call-to-action */
.vision-cta {
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.vision-cta::before {
  background: linear-gradient(
    110deg,
    rgba(13, 18, 23, 0.92),
    rgba(79, 14, 22, 0.76)
  );
}
.vision-cta .hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.vision-cta .container {
  position: relative;
  z-index: 3;
}
.vision-cta h3 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.vision-cta p {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.85;
}
.vision-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  color: #fff;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: var(--shadow-brand);
}
.vision-cta .cta-btn:hover {
  color: #fff;
  background: var(--brand-bright);
  transform: translateY(-2px);
}

/* Contact surfaces */
.contact-page-section,
.contact-pro {
  padding: var(--section-space) 0;
}
.contact-intro {
  max-width: 760px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}
.contact-intro h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}
.contact-intro h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 18px auto 0;
  background: var(--brand);
  border-radius: 99px;
}
.contact-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.contact-info-panel,
.contact-form-card,
.contact-form-surface {
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-info-panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(128, 25, 34, 0.98), rgba(45, 10, 15, 0.97)),
    url("../../assets/img/stats-bg.jpg") center/cover;
}
.contact-info-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.contact-info-panel h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}
.contact-info-panel > p {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
}
.contact-detail {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-detail:last-of-type {
  border-bottom: 0;
}
.contact-detail .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-size: 19px;
}
.contact-detail h4 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 16px;
}
.contact-detail p,
.contact-detail a {
  margin: 0;
  color: rgba(255, 255, 255, 0.79);
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.contact-detail a:hover {
  color: #fff;
}
.contact-socials {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.contact-socials a:hover {
  color: var(--brand);
  background: #fff;
  transform: translateY(-3px);
}
.contact-form-card,
.contact-form-surface {
  padding: clamp(25px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
}
.contact-form-card h3 {
  margin-bottom: 5px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}
.contact-form-card .form-lead {
  margin-bottom: 26px;
  color: var(--muted);
}
.contact .php-email-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form input[type="tel"],
.contact .php-email-form select,
.contact .php-email-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d7dce2;
  border-radius: 12px;
  outline: 0;
  box-shadow: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}
.contact .php-email-form textarea {
  min-height: 165px;
  resize: vertical;
}
.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(128, 25, 34, 0.09);
}
.contact .php-email-form button[type="submit"] {
  min-width: 190px;
  min-height: 52px;
  padding: 13px 28px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(128, 25, 34, 0.2);
}
.contact .php-email-form button[type="submit"]:hover {
  background: var(--brand-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}
.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  border-radius: 12px;
}
.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.home-contact-pro .info-item {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
}
.home-contact-pro .info-item + .info-item {
  margin-top: 16px;
}

/* Footer */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  background: #111820;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(128, 25, 34, 0.34), transparent 65%);
  pointer-events: none;
}
.footer-main {
  position: relative;
  z-index: 1;
  padding: clamp(65px, 8vw, 96px) 0 55px;
}
.footer-brand {
  display: inline-flex;
  margin-bottom: 20px;
}
.footer-brand img {
  width: auto;
  height: 64px;
  object-fit: contain;
}
.footer-intro {
  max-width: 390px;
  margin: 0 0 23px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.8;
}
.site-footer h3 {
  margin: 4px 0 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li,
.footer-contact li + li {
  margin-top: 11px;
}
.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.66);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.66);
}
.footer-contact i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: #d98b93;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.footer-socials a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 17px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.footer-contact-btn:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}
.footer-tagline {
  text-align: right;
}

/* Preloader and scroll top */
#preloader {
  background: #fff;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}
.loader-wrapper {
  width: 210px;
  height: 210px;
}
.loader-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}
.circle-loader {
  width: 185px;
  height: 185px;
  border-width: 3px;
  border-top-color: var(--brand);
}
.scroll-top {
  right: max(18px, env(safe-area-inset-right));
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 48px;
  height: 48px;
  background: var(--brand);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 25px rgba(128, 25, 34, 0.25);
}
.scroll-top.active {
  bottom: calc(18px + env(safe-area-inset-bottom));
}
.scroll-top:hover {
  background: var(--brand-bright);
  transform: translateY(-3px);
}

/* Mobile and tablet navigation */
@media (max-width: 1199px) {
  :root {
    --header-height: 76px;
  }
  .container {
    width: min(calc(100% - 32px), var(--content-width));
  }
  .site-header.header {
    min-height: var(--header-height);
    padding: 8px 0;
  }
  .site-header .container {
    gap: 12px;
  }
  .site-header .logo img {
    height: 48px;
  }
  .header .header-cta {
    order: 2;
    min-height: 40px;
    padding: 8px 16px;
    font-size: 12px;
  }
  .header .navmenu {
    order: 3;
    position: static !important;
    padding: 0;
    z-index: 9997;
  }
  .mobile-nav-toggle {
    position: relative;
    z-index: 10002;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    font-size: 27px;
    cursor: pointer;
  }
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 16px;
    right: 18px;
    color: var(--ink);
    background: #f4f5f7;
    border-color: var(--line);
  }
  .navmenu::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9997;
    background: rgba(8, 12, 17, 0.68);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--transition),
      visibility var(--transition);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }
  body.mobile-nav-active .navmenu::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .navmenu > ul {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    z-index: 9998 !important;
    display: block !important;
    width: min(88vw, 390px);
    height: 100svh;
    height: 100dvh;
    margin: 0 !important;
    padding: 88px 20px 30px !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.22) !important;
    transform: translateX(105%);
    visibility: hidden;
    transition:
      transform var(--transition),
      visibility var(--transition);
  }
  body.mobile-nav-active .navmenu > ul {
    transform: translateX(0);
    visibility: visible;
  }
  .mobile-nav-active .navmenu {
    position: static !important;
    inset: auto !important;
    overflow: visible !important;
    background: transparent !important;
  }
  .navmenu > ul > li {
    border-bottom: 1px solid var(--line);
  }
  .navmenu > ul > li:last-child {
    border-bottom: 0;
  }
  .navmenu a,
  .navmenu a:focus {
    min-height: 53px;
    padding: 12px 6px;
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 600;
    white-space: normal;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--brand);
  }
  .navmenu a i,
  .navmenu a:focus i {
    width: 34px;
    height: 34px;
    margin-left: auto;
    color: var(--brand);
    background: var(--soft-brand);
  }
  .navmenu .dropdown ul {
    display: block !important;
    max-height: 0;
    margin: 0 0 0 10px !important;
    padding: 0 0 0 12px !important;
    overflow: hidden;
    background: #f7f8fa !important;
    border: 0;
    border-radius: 12px;
    opacity: 0;
    transition:
      max-height var(--transition),
      opacity var(--transition),
      margin var(--transition),
      padding var(--transition);
  }
  .navmenu .dropdown > .dropdown-active {
    max-height: 260px;
    margin: 4px 0 12px 10px !important;
    padding: 6px 12px !important;
    opacity: 1;
  }
  .navmenu .dropdown ul a {
    min-height: 46px;
    padding: 9px 7px;
    font-size: 14px;
  }
  .hero.hero-home {
    min-height: max(700px, 100svh);
    padding-top: calc(var(--header-height) + 70px);
  }
  .hero-content {
    align-items: center !important;
    text-align: center !important;
  }
  .hero.hero-home h2 {
    max-width: 900px;
  }
  .hero.hero-home p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-scroll-cue {
    right: 50%;
    transform: translateX(50%);
  }
  .video-banner {
    min-height: 620px;
  }
  .vision-cta {
    min-height: 480px;
    text-align: center;
  }
  .vision-cta p {
    margin-left: auto;
    margin-right: auto;
  }
  .vision-cta .cta-btn-container {
    margin-top: 20px;
  }
  .contact-form-card,
  .contact-info-panel {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  :root {
    --section-space: clamp(64px, 9vw, 90px);
  }
  .about-grid {
    gap: 22px;
  }
  .video-banner {
    min-height: 560px;
  }
  .stats-pro .stats-item {
    min-height: 160px;
  }
  .footer-main {
    padding-bottom: 45px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 28px), var(--content-width));
  }
  .header .header-cta {
    display: none;
  }
  .site-header .logo img {
    height: 45px;
  }
  .hero.hero-home {
    min-height: max(680px, 100svh);
    padding-bottom: 100px;
  }
  .hero.hero-home h2 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
  }
  .hero-actions {
    width: 100%;
  }
  .btn-primary-pro,
  .btn-secondary-pro {
    flex: 1 1 220px;
  }
  .hero-scroll-cue span {
    display: none;
  }
  .video-banner {
    min-height: 530px;
    padding-top: calc(var(--header-height) + 58px);
  }
  .video-banner h1 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
  }
  .about-copy-card {
    padding: 28px 24px;
  }
  .profile-card {
    min-height: 130px;
    padding: 22px;
  }
  .logo-track {
    gap: 14px;
  }
  .logo-track img {
    width: 125px;
    height: 82px;
    padding: 14px;
  }
  .track-1,
  .track-2 {
    animation-duration: 48s;
  }
  .services .service-item {
    padding: 28px 24px;
  }
  .vision-cta {
    min-height: 520px;
  }
  .footer-tagline {
    text-align: center;
  }
}

@media (max-width: 575px) {
  :root {
    --header-height: 70px;
    --radius-lg: 22px;
    --radius-md: 17px;
  }
  body.washnah-site {
    font-size: 15px;
  }
  .container {
    width: calc(100% - 24px);
  }
  .site-header.header {
    min-height: var(--header-height);
  }
  .site-header .logo img {
    height: 42px;
  }
  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
  .mobile-nav-active .mobile-nav-toggle {
    top: 14px;
    right: 14px;
  }
  .navmenu > ul {
    width: min(92vw, 370px);
    padding: 80px 16px 24px !important;
  }
  .hero.hero-home {
    min-height: max(660px, 100svh);
    padding-top: calc(var(--header-height) + 50px);
  }
  .hero.hero-home h2 {
    font-size: clamp(2.05rem, 10.8vw, 3rem);
    line-height: 1.07;
  }
  .hero.hero-home p {
    font-size: 1rem;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }
  .btn-primary-pro,
  .btn-secondary-pro {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
  }
  .section-title {
    padding-bottom: 36px;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .video-banner {
    min-height: 500px;
  }
  .video-banner h1 {
    font-size: 2.45rem;
  }
  .profile-card {
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
  .profile-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    font-size: 23px;
  }
  .stats-pro .stats-item {
    min-height: 145px;
  }
  .contact-form-card,
  .contact-info-panel,
  .contact-form-surface {
    padding: 24px 18px;
  }
  .contact .php-email-form button[type="submit"] {
    width: 100%;
  }
  .footer-main {
    padding-top: 58px;
  }
  .footer-brand img {
    height: 56px;
  }
}

/* Hover effects only on devices that support hover */
@media (hover: hover) and (pointer: fine) {
  .stats-pro .stats-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
  }
  .services .service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 25, 34, 0.22);
    box-shadow: var(--shadow-md);
  }
  .services .service-item:hover::before {
    transform: scaleY(1);
  }
  .services .service-item:hover .icon {
    color: #fff;
    background: var(--brand);
    transform: rotate(-4deg) scale(1.04);
  }
}

/* Respect accessibility and battery-saving preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .logo-track {
    animation: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .scroll-top,
  #preloader,
  .hero-scroll-cue,
  .hero-video,
  .bg-video {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  section,
  .section {
    padding: 24px 0;
  }
}

/* =============================================================
   Unified component rhythm
   Keeps equivalent elements aligned across every page.
   ============================================================= */
.section-title,
.contact-intro {
  width: min(100%, 920px);
  margin-inline: auto;
}

.section-title h2,
.contact-intro h2 {
  text-wrap: balance;
}

.hero-actions,
.sector-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.sector-hero-actions {
  justify-content: flex-start;
}

.btn-primary-pro,
.btn-secondary-pro,
.footer-contact-btn,
.vision-cta .cta-btn,
.contact-form-card button[type="submit"] {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.services .row > [class*="col-"],
.about-grid > [class*="col-"],
.contact .contact-layout > [class*="col-"] {
  display: flex;
}

.services .service-item,
.about-copy-card,
.profile-downloads,
.contact-info-panel,
.contact-form-card {
  width: 100%;
}

.services .service-item {
  display: flex;
  flex-direction: column;
}

.services .service-item .service-cta {
  margin-top: auto;
  padding-top: 20px;
}

.services .service-item h3 {
  text-wrap: balance;
}

.services .service-item p {
  flex-grow: 1;
}

.contact-detail {
  align-items: flex-start;
}

.contact-detail .icon-box {
  flex: 0 0 auto;
}

.site-footer h3,
.footer-intro,
.footer-links,
.footer-contact {
  margin-top: 0;
}

@media (max-width: 767px) {
  .hero-actions,
  .sector-hero-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary-pro,
  .btn-secondary-pro,
  .sector-hero-actions a,
  .hero-actions a {
    width: 100%;
  }

  .section-title,
  .contact-intro {
    text-align: center;
  }
}
