/* ═══════════════════════════════════════════════════
   VENAIR SOLUTIONS — COMPLETE STYLESHEET
   Fonts: Playfair Display (serif) + Plus Jakarta Sans
   Colors: #2466a4 blue · #d22e7f pink · same BG pattern
═══════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --vs-blue: #2466a4;
  --vs-blue-dark: #1a4f8a;
  --vs-blue-deep: #132f52;
  --vs-pink: #d22e7f;
  --vs-pink-dark: #a82264;
  --vs-white: #ffffff;
  --vs-off: #f8f9fc;
  --vs-grey: #f3f4f6;
  --vs-grey-mid: #e8edf5;
  --vs-text: #1a2332;
  --vs-text-mid: #4b5563;
  --vs-text-light: #6b7280;
  --vs-serif: "Oswald", "Arial Narrow", sans-serif;
  --vs-sans: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
  --vs-shadow-sm: 0 2px 12px rgba(36, 102, 164, 0.09);
  --vs-shadow-md: 0 6px 28px rgba(36, 102, 164, 0.13);
  --vs-shadow-lg: 0 16px 52px rgba(36, 102, 164, 0.18);
  --vs-r: 12px;
  --vs-r-lg: 20px;
}

/* ─── BASE ──────────────────────────────────────── */
body {
  font-family: var(--vs-sans);
  color: var(--vs-text);
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: var(--vs-sans);
}

/* ─── LAYOUT ─────────────────────────────────────── */
.vs-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────── */
.vs-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.vs-label-line {
  width: 28px;
  height: 2px;
  background: var(--vs-pink);
  border-radius: 2px;
  flex-shrink: 0;
}
.vs-label-line--white {
  background: rgba(255, 255, 255, 0.35);
}
.vs-label-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vs-pink);
}
.vs-label-text--dim {
  color: rgba(255, 255, 255, 0.55);
}
.vs-section-h2 {
  font-family: var(--vs-serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--vs-blue);
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.vs-section-h2 em {
  color: var(--vs-pink);
}
.vs-h2--white {
  color: #fff;
}
.vs-em-light {
  color: #f9c0dc;
}
.vs-body-text {
  font-size: 16px;
  color: var(--vs-text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}
.vs-center {
  justify-content: center;
}
.vs-center-text {
  text-align: center;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.vs-btn-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vs-pink);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(210, 46, 127, 0.38);
  white-space: nowrap;
}
.vs-btn-pink:hover {
  background: var(--vs-pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(210, 46, 127, 0.5);
}
.vs-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--vs-blue);
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid var(--vs-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.vs-btn-outline:hover {
  background: var(--vs-blue);
  color: #fff;
}
.vs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  padding-bottom: 2px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vs-btn-ghost:hover {
  color: #fff;
  border-bottom-color: var(--vs-pink);
}
.vs-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--vs-blue);
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
.vs-btn-white:hover {
  background: var(--vs-pink);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   HEADER (overrides existing header styles)
═══════════════════════════════════════════════════ */
.header {
  background: var(--vs-blue);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 2px solid rgba(210, 46, 127, 0.32);
  box-shadow: 0 2px 20px rgba(20, 50, 90, 0.22);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-circle {
  display: flex;
  align-items: center;
}
.logo-v img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--vs-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vs-pink);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-cta-btn {
  background: var(--vs-pink);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-left: 8px;
}
.nav-cta-btn:hover {
  background: var(--vs-pink-dark);
  transform: translateY(-1px);
}

/* ─── NAV DROPDOWN ─────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}
.nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-arrow {
  flex-shrink: 0;
  opacity: 0.65;
  transition: transform 0.25s ease;
}
.nav-dropdown-wrap:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(20, 50, 90, 0.18);
  border: 1px solid var(--vs-grey-mid);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  z-index: 9000;
  overflow: hidden;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* arrow pointer */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--vs-grey-mid);
  border-top: 1px solid var(--vs-grey-mid);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-family: var(--vs-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--vs-text);
  text-decoration: none;
  border-bottom: 1px solid var(--vs-grey-mid);
  transition:
    background 0.15s ease,
    color 0.15s ease;
  gap: 8px;
}
.nav-dropdown-item:last-of-type {
  border-bottom: none;
}
.nav-dropdown-item:hover {
  background: rgba(36, 102, 164, 0.05);
  color: var(--vs-blue);
}
.nav-dropdown-item:hover .nav-dropdown-item-arrow {
  stroke: var(--vs-pink);
  transform: translateX(3px);
}
.nav-dropdown-item-label {
  flex: 1;
}
.nav-dropdown-item-arrow {
  flex-shrink: 0;
  stroke: var(--vs-text-light);
  transition:
    stroke 0.15s,
    transform 0.15s;
}
.nav-dropdown-all {
  display: block;
  padding: 10px 16px;
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-dropdown-all:hover {
  background: linear-gradient(
    135deg,
    var(--vs-pink) 0%,
    var(--vs-pink-dark) 100%
  );
}

/* ── MOBILE DROPDOWN — clean accordion ─────────── */
@media (max-width: 768px) {
  /* Wrap takes full nav width, no bottom border (handled by items) */
  .nav-dropdown-wrap {
    width: 100%;
  }
  /* Row: label left, chevron right — full width tap target */
  .nav-link--dropdown {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
  }
  /* Mobile dropdown — fully reset from desktop rules, use display toggle only */
  .nav-dropdown {
    /* Use absolute positioning so it overlays the menu */
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    /* Cancel desktop opacity/visibility so display:none works cleanly */
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    /* Sizing */
    width: 100%;
    border-radius: 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Solid visible background so items show over other links */
    background: var(--vs-blue-deep) !important;
    /* Hidden by default via display */
    display: none;
    overflow: visible;
    z-index: 9005 !important;
  }
  /* Show when parent has mobile-open */
  .nav-dropdown-wrap.mobile-open .nav-dropdown {
    display: block;
  }
  /* Rotate chevron when open */
  .nav-dropdown-wrap.mobile-open .nav-dropdown-arrow {
    transform: rotate(180deg) !important;
    opacity: 1;
  }
  .nav-dropdown::before {
    display: none !important;
  }
  /* Each product link row */
  .nav-dropdown-item {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    text-decoration: none;
  }
  .nav-dropdown-item:last-of-type {
    border-bottom: none;
  }
  .nav-dropdown-item:active {
    background: rgba(255, 255, 255, 0.12);
  }
  .nav-dropdown-item .nav-dropdown-item-arrow {
    stroke: rgba(255, 255, 255, 0.4) !important;
    flex-shrink: 0;
  }
  /* "View all products" footer strip */
  .nav-dropdown-all {
    display: block !important;
    padding: 12px 16px 12px 20px;
    text-align: left;
    background: var(--vs-pink) !important;
    color: #fff !important;
    font-family: var(--vs-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .nav-dropdown-all:active {
    background: var(--vs-pink-dark) !important;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--vs-blue-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 600;
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb-item a:hover {
  color: var(--vs-pink);
}
.breadcrumb-item.active span {
  color: var(--vs-pink);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.vs-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
}
.vs-hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/images/home_page/home_banner.webp") center/cover
    no-repeat;
  z-index: 0;
}
.vs-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(19, 47, 82, 0.94) 0%,
    rgba(36, 102, 164, 0.8) 48%,
    rgba(36, 102, 164, 0.28) 78%,
    transparent 100%
  );
}
.vs-hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}
.vs-hero-content {
  max-width: 620px;
}
.vs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.vs-eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--vs-pink);
  border-radius: 2px;
  flex-shrink: 0;
}
.vs-hero-h1 {
  font-family: var(--vs-serif);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.vs-hero-h1 em {
  color: #f9c0dc;
}
.vs-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 34px;
}
.vs-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero stats */
.vs-hero-stats {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.vs-hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.vs-hstat {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.vs-hstat:last-child {
  border-right: none;
}
.vs-hstat-num {
  font-family: var(--vs-serif);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.vs-hstat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
}

/* Ticker */
.vs-ticker-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--vs-blue-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}
.vs-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: vsTicker 32s linear infinite;
}
.vs-ticker:hover {
  animation-play-state: paused;
}
.vs-ticker-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 22px;
}
.vs-ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--vs-pink);
  opacity: 0.7;
  flex-shrink: 0;
}
@keyframes vsTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.vs-about {
  padding: 100px 0;
  background: url("/assets/images/bg/bg-patern.webp") repeat;
  background-color: var(--vs-white);
  position: relative;
}
.vs-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.93),
    rgba(255, 255, 255, 0.93)
  );
}
.vs-about > .vs-container {
  position: relative;
  z-index: 1;
}
.vs-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.vs-about-visual {
  position: relative;
}
.vs-about-img-wrap {
  border-radius: var(--vs-r-lg);
  overflow: hidden;
  box-shadow: var(--vs-shadow-lg);
  aspect-ratio: 4/3;
}
.vs-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--vs-pink);
  color: #fff;
  border-radius: var(--vs-r);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(210, 46, 127, 0.35);
}
.vs-about-badge-num {
  font-family: var(--vs-serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.vs-about-badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  margin-top: 4px;
  opacity: 0.88;
}
.vs-about-work-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 52px;
  border-radius: var(--vs-r);
  overflow: hidden;
}
.vs-about-work-strip img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}
.vs-about-content {
  padding-top: 6px;
}
.vs-quote {
  font-family: var(--vs-sans);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--vs-pink);
  padding-left: 20px;
  border-left: 3px solid var(--vs-pink);
  margin: 26px 0;
  line-height: 1.65;
  text-transform: none;
}
.vs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.vs-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--vs-blue);
  background: rgba(36, 102, 164, 0.07);
  border: 1px solid rgba(36, 102, 164, 0.18);
  border-radius: 20px;
  padding: 5px 16px;
  transition: all 0.2s ease;
}
.vs-tag:hover {
  background: var(--vs-blue);
  color: #fff;
}

/* Stats row */
.vs-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--vs-r-lg);
  border: 1px solid var(--vs-grey-mid);
  box-shadow: var(--vs-shadow-sm);
  overflow: hidden;
  margin-top: 60px;
}
.vs-stat-cell {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid var(--vs-grey-mid);
  transition: background 0.25s;
}
.vs-stat-cell:last-child {
  border-right: none;
}
.vs-stat-cell:hover {
  background: rgba(36, 102, 164, 0.04);
}
.vs-stat-num {
  font-family: var(--vs-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--vs-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.vs-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--vs-text-light);
  line-height: 1.4;
}
.vs-about-cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════ */
.vs-process {
  padding: 100px 0;
  background: linear-gradient(
    160deg,
    var(--vs-blue-deep) 0%,
    var(--vs-blue) 60%,
    #1a5490 100%
  );
  position: relative;
  overflow: hidden;
}
.vs-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.vs-process-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.vs-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.vs-pcard {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--vs-r-lg);
  padding: 42px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.vs-pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--vs-r-lg) var(--vs-r-lg) 0 0;
}
.vs-pcard--accent::before {
  background: var(--vs-pink);
}
.vs-pcard:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
}
.vs-pcard-num {
  font-family: var(--vs-serif);
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  user-select: none;
}
.vs-pcard-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.vs-pcard-icon svg {
  width: 24px;
  height: 24px;
}
.vs-pcard-icon--pink {
  background: rgba(210, 46, 127, 0.35);
}
.vs-pcard-step {
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vs-pink);
  margin-bottom: 10px;
}
.vs-pcard-h3 {
  font-family: var(--vs-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.vs-pcard-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════════ */
.vs-products {
  padding: 100px 0;
  background: url("/assets/images/bg/bg-patern.webp") repeat;
  background-color: var(--vs-off);
  position: relative;
}
.vs-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(248, 249, 252, 0.93),
    rgba(248, 249, 252, 0.93)
  );
}
.vs-products > .vs-container {
  position: relative;
  z-index: 1;
}
.vs-products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}
.vs-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vs-prod-card {
  background: #fff;
  border-radius: var(--vs-r-lg);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-grey-mid);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.vs-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vs-shadow-lg);
  border-color: rgba(36, 102, 164, 0.2);
}
.vs-prod-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.vs-prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vs-prod-card:hover .vs-prod-img img {
  transform: scale(1.06);
}
.vs-prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 47, 82, 0.55) 0%,
    transparent 60%
  );
}
.vs-prod-body {
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  padding: 22px 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vs-prod-h3 {
  font-family: var(--vs-serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.vs-prod-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
  flex: 1;
}
.vs-prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 0;
}
.vs-prod-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vs-pink);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.vs-prod-enquire:hover {
  background: var(--vs-pink-dark);
}
.vs-prod-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.vs-prod-link:hover {
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════ */
.vs-why {
  padding: 100px 0;
  background: #fff;
}
.vs-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.vs-why-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 30px 26px;
  border-radius: var(--vs-r-lg);
  background: var(--vs-off);
  border: 1px solid var(--vs-grey-mid);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.vs-why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--vs-grey-mid);
  transition: background 0.3s;
}
.vs-why-card:hover {
  background: #fff;
  box-shadow: var(--vs-shadow-md);
  border-color: rgba(36, 102, 164, 0.15);
}
.vs-why-card:hover::before {
  background: linear-gradient(180deg, var(--vs-pink), var(--vs-blue));
}
.vs-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(36, 102, 164, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-why-icon svg {
  width: 22px;
  height: 22px;
}
.vs-why-card h3 {
  font-family: var(--vs-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--vs-blue);
  margin-bottom: 8px;
  line-height: 1.2;
}
.vs-why-card p {
  font-size: 14px;
  color: var(--vs-text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   TRUSTED BY — LOGO MARQUEE
═══════════════════════════════════════════════════ */
.vs-trusted {
  padding: 80px 0;
  background: var(--vs-off);
  border-top: 1px solid var(--vs-grey-mid);
  border-bottom: 1px solid var(--vs-grey-mid);
}
.vs-trusted .vs-container {
  margin-bottom: 44px;
}
.vs-logos-outer {
  overflow: hidden;
  position: relative;
}
.vs-logos-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.vs-logos-fade--l {
  left: 0;
  background: linear-gradient(to right, var(--vs-off), transparent);
}
.vs-logos-fade--r {
  right: 0;
  background: linear-gradient(to left, var(--vs-off), transparent);
}
.vs-logos-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: vsMarquee 30s linear infinite;
}
.vs-logos-track:hover {
  animation-play-state: paused;
}
.vs-logo-pill {
  height: 70px;
  min-width: 108px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--vs-grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(36, 102, 164, 0.05);
  transition: all 0.25s ease;
}
.vs-logo-pill:hover {
  box-shadow: var(--vs-shadow-md);
  border-color: rgba(36, 102, 164, 0.2);
  transform: translateY(-2px);
}
.vs-logo-pill img {
  width: 80px;
  height: 42px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.25s;
}
.vs-logo-pill:hover img {
  filter: grayscale(0%);
}
@keyframes vsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.vs-testimonials {
  padding: 100px 0;
  background: #fff;
}
.vs-tgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.vs-tcard {
  border-radius: var(--vs-r-lg);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--vs-grey-mid);
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: var(--vs-shadow-sm);
}
.vs-tcard:hover {
  transform: translateY(-4px);
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  border-color: transparent;
  box-shadow: var(--vs-shadow-lg);
}
.vs-tcard-stars {
  font-size: 18px;
  letter-spacing: 3px;
  color: #fbbf24;
}
.vs-tcard:hover .vs-tcard-stars {
  color: #fde68a;
}
.vs-tcard-text {
  font-size: 15px;
  color: var(--vs-text-mid);
  line-height: 1.8;
  font-weight: 300;
  font-style: normal;
  flex: 1;
}
.vs-tcard:hover .vs-tcard-text {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}
.vs-tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.vs-tcard-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--vs-grey-mid);
  overflow: hidden;
  flex-shrink: 0;
}
.vs-tcard-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.vs-tcard-logo--text {
  font-size: 10px;
  font-weight: 800;
  color: var(--vs-blue);
}
.vs-tcard-name {
  font-family: var(--vs-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--vs-blue);
}
.vs-tcard:hover .vs-tcard-name {
  color: #fff;
}
.vs-tcard-co {
  font-size: 12px;
  color: var(--vs-text-light);
  margin-top: 2px;
}
.vs-tcard:hover .vs-tcard-co {
  color: rgba(255, 255, 255, 0.58);
}
.vs-tcard-q {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: var(--vs-serif);
  font-size: 80px;
  font-weight: 700;
  color: rgba(36, 102, 164, 0.06);
  line-height: 1;
  user-select: none;
}
.vs-tcard:hover .vs-tcard-q {
  color: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════
   CERTIFICATIONS + CTA BANNER
═══════════════════════════════════════════════════ */
.vs-certs {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--vs-blue-deep) 0%,
    var(--vs-blue) 100%
  );
  position: relative;
  overflow: hidden;
}
.vs-certs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.vs-certs > .vs-container {
  position: relative;
  z-index: 1;
}
.vs-certs-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 44px 0;
}
.vs-cert-item {
  width: 116px;
  height: 116px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.vs-cert-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.vs-cert-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vs-cta-banner {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--vs-r-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.vs-cta-banner-text h3 {
  font-family: var(--vs-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.vs-cta-banner-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   OUR WORK
═══════════════════════════════════════════════════ */
.vs-work {
  padding: 90px 0;
  background: #fff;
}
.vs-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.vs-work-img {
  border-radius: var(--vs-r);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.vs-work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vs-work-img:hover img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════
   FOOTER (full override)
═══════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(160deg, var(--vs-blue-deep) 0%, #1e3f6e 100%);
  color: #fff;
  padding: 60px 0 0;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--vs-pink),
    var(--vs-blue),
    var(--vs-pink)
  );
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-brand-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 22px;
}
.footer-heading {
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links-list a::before {
  content: "›";
  font-size: 14px;
  color: var(--vs-pink);
}
.footer-links-list a:hover {
  color: #fff;
}
.footer-cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--vs-pink);
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  font-family: var(--vs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.footer-cta-btn:hover {
  background: var(--vs-pink-dark);
}
.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}
.footer-contact-text {
  color: rgba(255, 255, 255, 0.72);
}
.footer-contact-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 2px;
}
.footer-contact-text p {
  margin: 0;
}
.footer-contact-text a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer-contact-text a:hover {
  color: #fff;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}
.footer-bottom-cta {
  background: var(--vs-pink);
  color: #fff;
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  font-family: var(--vs-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-bottom-cta:hover {
  background: var(--vs-pink-dark);
}

/* ─── FLOATING ELEMENTS ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
}
.sticky-enquiry-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 800;
  background: linear-gradient(
    180deg,
    var(--vs-pink) 0%,
    var(--vs-pink-dark) 100%
  );
  color: #fff;
  border: none;
  padding: 14px 10px;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  box-shadow: -4px 0 18px rgba(210, 46, 127, 0.28);
  transition: all 0.25s ease;
}
.sticky-enquiry-btn:hover {
  background: linear-gradient(
    180deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  transform: translateY(-50%) translateX(-3px);
}
.sticky-enquiry-btn span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Mobile bar */
.mobile-footer-buttons {
  display: none;
}
@media (max-width: 768px) {
  .mobile-footer-buttons {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    z-index: 800;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  }
  .mobile-footer-call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--vs-blue);
    border: none;
    border-right: 1px solid var(--vs-grey-mid);
    font-family: var(--vs-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .mobile-footer-call-btn:hover {
    background: var(--vs-grey);
  }
  .mobile-footer-enquire-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vs-pink);
    color: #fff;
    border: none;
    font-family: var(--vs-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .mobile-footer-enquire-btn:hover {
    background: var(--vs-pink-dark);
  }
  .whatsapp-float {
    bottom: 66px;
    right: 14px;
  }
  .sticky-enquiry-btn {
    display: none;
  }
}

/* ─── ENQUIRY MODAL (full override) ─────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow-y: auto;
}
.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 50, 0.78);
  backdrop-filter: blur(6px);
}
.modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--vs-r-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  animation: vsModalIn 0.3s ease-out;
}
@keyframes vsModalIn {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-header {
  padding: 26px 26px 20px;
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  border-radius: var(--vs-r-lg) var(--vs-r-lg) 0 0;
  border-bottom: 2px solid rgba(210, 46, 127, 0.35);
}
.modal-title {
  font-family: var(--vs-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}
.modal-body {
  padding: 26px;
}
.product-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #1e40af;
  display: none;
}
.success-message {
  display: none;
  text-align: center;
  padding: 16px 0;
}
.success-message h3 {
  font-family: var(--vs-serif);
  font-size: 22px;
  color: var(--vs-blue);
  margin-bottom: 8px;
}
.success-message p {
  font-size: 14px;
  color: var(--vs-text-mid);
}
.success-message .btn-primary {
  margin: 16px auto 0;
  display: inline-block;
}
.error-message {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #991b1b;
  display: none;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vs-blue);
}
.form-group input,
.form-group textarea {
  font-family: var(--vs-sans);
  font-size: 15px;
  color: var(--vs-text);
  padding: 12px 14px;
  border: 1.5px solid var(--vs-grey-mid);
  border-radius: 8px;
  transition: all 0.2s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vs-blue);
  box-shadow: 0 0 0 3px rgba(36, 102, 164, 0.1);
}
.form-group textarea {
  min-height: 90px;
  resize: vertical;
}
.phone-input-group {
  display: flex;
}
.phone-input-group input {
  flex: 1;
}
.required {
  color: var(--vs-pink);
}
.error-text {
  font-size: 12px;
  color: #ef4444;
  display: none;
  margin-top: 2px;
}
.btn-primary {
  background: var(--vs-pink);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-family: var(--vs-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(210, 46, 127, 0.35);
  width: 100%;
}
.btn-primary:hover {
  background: var(--vs-pink-dark);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
}

/* Page title for inner pages */
.page-title-section {
  padding: 14px 0;
  background: linear-gradient(
    90deg,
    rgba(36, 102, 164, 0.06),
    rgba(210, 46, 127, 0.04)
  );
  border-bottom: 1px solid var(--vs-grey-mid);
  text-align: center;
}
.page-title {
  font-family: var(--vs-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--vs-blue);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vs-about-grid {
    gap: 48px;
  }
  .vs-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vs-why-grid {
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 900px) {
  .vs-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vs-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .vs-stat-cell:nth-child(2) {
    border-right: none;
  }
  .vs-stat-cell:nth-child(3) {
    border-right: 1px solid var(--vs-grey-mid);
    border-top: 1px solid var(--vs-grey-mid);
  }
  .vs-stat-cell:nth-child(4) {
    border-top: 1px solid var(--vs-grey-mid);
  }
  .vs-hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .vs-hstat:nth-child(2) {
    border-right: none;
  }
  .vs-hstat:nth-child(3),
  .vs-hstat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .vs-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .vs-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--vs-blue-dark);
    padding: 8px 20px 20px;
    gap: 0;
    z-index: 850;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }
  .nav-links.active .nav-link {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: right;
    width: 100%;
  }
  .nav-links.active .nav-cta-btn {
    margin-top: 14px;
    width: 100%;
    padding: 14px;
    text-align: center;
  }
  .vs-hero-body {
    padding: 50px 0 40px;
  }
  .vs-hero-h1 {
    font-size: 32px;
    letter-spacing: 0.05em;
  }
  .vs-hero-sub {
    font-size: 15px;
  }
  .vs-hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .vs-about-grid {
    grid-template-columns: 1fr;
  }
  .vs-about-badge {
    bottom: -12px;
    right: -12px;
  }
  .vs-products-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .vs-products-grid {
    grid-template-columns: 1fr;
  }
  .vs-why-grid {
    grid-template-columns: 1fr;
  }
  .vs-tgrid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  body {
    padding-bottom: 52px;
  }
}
@media (max-width: 480px) {
  .vs-hero-stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .vs-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .vs-stat-cell:nth-child(odd) {
    border-right: 1px solid var(--vs-grey-mid);
  }
  .vs-stat-cell:nth-child(even) {
    border-right: none;
  }
  .vs-stat-cell:nth-child(n + 3) {
    border-top: 1px solid var(--vs-grey-mid);
  }
  .vs-about-work-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .vs-work-grid {
    grid-template-columns: 1fr;
  }
  .vs-certs-row {
    gap: 14px;
  }
  .vs-cert-item {
    width: 90px;
    height: 90px;
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGES
═══════════════════════════════════════════════════ */

/* ─── HERO BANNER ────────────────────────────────── */
.pd-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
  overflow: hidden;
}
.pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(19, 47, 82, 0.92) 0%,
    rgba(36, 102, 164, 0.75) 55%,
    rgba(36, 102, 164, 0.35) 100%
  );
  z-index: 1;
}
.pd-hero > .vs-container {
  position: relative;
  z-index: 2;
  padding-bottom: 44px;
  padding-top: 60px;
}
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.pd-bc-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}
.pd-bc-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.pd-bc-link:hover {
  color: #fff;
}
.pd-bc-current {
  font-size: 13px;
  color: var(--vs-pink);
  font-weight: 600;
}
.pd-hero-h1 {
  font-family: var(--vs-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.pd-hero-cta {
  margin-top: 4px;
}

/* ─── SUB-NAV (Cleanroom tabs) ──────────────────── */
.pd-subnav {
  background: var(--vs-blue);
  border-bottom: 2px solid rgba(210, 46, 127, 0.3);
  position: sticky;
  top: 7rem;
  z-index: 800;
  box-shadow: 0 2px 12px rgba(20, 50, 90, 0.2);
}
.pd-subnav-inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pd-subnav-inner::-webkit-scrollbar {
  display: none;
}
.pd-subnav-item {
  font-family: var(--vs-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 16px 24px;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}
.pd-subnav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--vs-pink);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.pd-subnav-item:hover {
  color: var(--vs-pink);
}
.pd-subnav-item:hover::after {
  transform: scaleX(1);
}
.pd-subnav-item.active {
  color: #fff;
}
.pd-subnav-item.active::after {
  transform: scaleX(1);
}

/* ─── SPEC NOTE BANNER ──────────────────────────── */
.pd-spec-note {
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  padding: 14px 0;
}
.pd-spec-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
}
.pd-spec-note-inner svg {
  flex-shrink: 0;
  stroke: var(--vs-pink);
  margin-top: 2px;
}
.pd-spec-note-text {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.pd-spec-note-text span::before {
  content: "• ";
  color: var(--vs-pink);
}

/* ─── MAIN CONTENT WRAPPER ──────────────────────── */
.pd-content {
  padding: 60px 0 40px;
}

/* ─── GRID LAYOUT (HVAC, Doors, OT, Lab, Valid.) ── */
.pd-item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pd-item-card {
  background: #fff;
  border-radius: var(--vs-r);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-grey-mid);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pd-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vs-shadow-lg);
  border-color: rgba(36, 102, 164, 0.2);
}
.pd-item-img {
  height: 210px;
  overflow: hidden;
  background: var(--vs-off);
}
.pd-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.pd-item-card:hover .pd-item-img img {
  transform: scale(1.05);
}
.pd-item-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pd-item-title {
  font-family: var(--vs-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--vs-blue);
  line-height: 1.25;
  margin-bottom: 4px;
  flex: 1;
}
.pd-item-sub {
  font-size: 12px;
  color: var(--vs-text-light);
  line-height: 1.4;
  margin-bottom: 8px;
}
.pd-item-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--vs-pink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
  display: block;
  transition: color 0.2s;
}
.pd-item-card:hover .pd-item-cta {
  color: var(--vs-pink-dark);
}

/* ─── DETAIL LAYOUT (Cleanroom Partitions specs) ── */
.pd-spec-block {
  background: #fff;
  border-radius: var(--vs-r-lg);
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-grey-mid);
  overflow: hidden;
  margin-bottom: 28px;
}
.pd-spec-block--later {
  margin-top: 0;
}
.pd-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pd-spec-img-wrap {
  overflow: hidden;
  max-height: 480px;
  background: var(--vs-off);
}
.pd-spec-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.pd-spec-text {
  padding: 36px 36px 32px;
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
}
.pd-spec-h2 {
  font-family: var(--vs-serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.pd-spec-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pd-spec-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pd-spec-row-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1) opacity(0.8);
  margin-top: 2px;
}
.pd-spec-row-body {
  flex: 1;
}
.pd-spec-row-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.pd-spec-row-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pd-spec-row-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
  font-weight: 300;
}
.pd-spec-row-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--vs-pink);
  font-weight: 700;
}
.pd-spec-cta {
  margin-top: 28px;
}

/* Accessories section */
.pd-accessories {
  padding: 24px 36px 28px;
  border-top: 1px solid rgba(36, 102, 164, 0.1);
  background: var(--vs-off);
}
.pd-accessories-title {
  font-family: var(--vs-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--vs-blue);
  margin-bottom: 16px;
}
.pd-accessories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}
.pd-acc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--vs-text-mid);
  font-weight: 300;
  line-height: 1.5;
}
.pd-acc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vs-pink);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ─── ENQUIRE CTA STRIP ─────────────────────────── */
.pd-cta-strip {
  background: linear-gradient(
    135deg,
    var(--vs-blue-deep) 0%,
    var(--vs-blue) 100%
  );
  padding: 50px 0;
}
.pd-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.pd-cta-strip-h3 {
  font-family: var(--vs-serif);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pd-cta-strip-p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.65;
}

/* ─── GALLERY ─────────────────────────────────────── */
.pd-gallery {
  padding: 80px 0;
  background: var(--vs-off);
}
.pd-gallery-wrap {
  position: relative;
  margin-top: 40px;
}
.pd-gallery-viewport {
  overflow: hidden;
  border-radius: var(--vs-r-lg);
  box-shadow: var(--vs-shadow-md);
}
.pd-gallery-track {
  display: flex;
  transition: transform 0.45s ease;
}
.pd-gallery-slide {
  flex: 0 0 calc(33.333% - 14px);
  margin-right: 20px;
}
.pd-gallery-slide:last-child {
  margin-right: 0;
}
.pd-gallery-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: var(--vs-r);
}
.pd-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vs-blue);
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--vs-shadow-md);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-gallery-btn:hover {
  background: var(--vs-pink);
}
.pd-gallery-prev {
  left: -22px;
}
.pd-gallery-next {
  right: -22px;
}

/* ─── OUR PRODUCTS PAGE ─────────────────────────── */
.our-products-page {
  padding: 60px 0;
}
.products-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card-page {
  background: #fff;
  border-radius: var(--vs-r);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-grey-mid);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card-page:hover {
  transform: translateY(-5px);
  box-shadow: var(--vs-shadow-lg);
  border-color: rgba(36, 102, 164, 0.2);
}
.product-card-page:hover .product-content-page {
  background: linear-gradient(
    135deg,
    var(--vs-pink) 0%,
    var(--vs-pink-dark) 100%
  );
}
.product-image-page {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.product-image-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-page:hover .product-image-page img {
  transform: scale(1.06);
}
.product-image-page-doors-page img {
  object-fit: contain;
  background: var(--vs-off);
}
.product-content-page {
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  padding: 16px 18px 14px;
  transition: background 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-title-page {
  font-family: var(--vs-serif);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-description-page {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-weight: 300;
  margin-bottom: 12px;
}
.product-card-page-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.product-card-page-cta:hover {
  color: #fff;
}
.product-card-page:hover .product-card-page-cta {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── CONTACT US PAGE ───────────────────────────── */
.contact-us-page {
  padding: 60px 0;
}
.contact-page-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-title-wrapper {
  margin-bottom: 28px;
}
.title-line-pink {
  width: 40px;
  height: 3px;
  background: var(--vs-pink);
  border-radius: 2px;
  margin-bottom: 6px;
}
.title-line-blue {
  width: 100%;
  height: 1px;
  background: var(--vs-grey-mid);
  margin-bottom: 20px;
}
.contact-section-title {
  font-family: var(--vs-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--vs-blue);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--vs-text-mid);
  line-height: 1.65;
}
.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-text strong {
  display: block;
  font-weight: 700;
  color: var(--vs-blue);
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-text a {
  color: var(--vs-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-text a:hover {
  color: var(--vs-pink);
}
.social-media-icons {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.social-icon.linkedin {
  background: #0077b5;
}
.social-icon.youtube {
  background: #ff0000;
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
.google-maps-container {
  border-radius: var(--vs-r);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  margin-top: 16px;
}
.google-maps-container iframe {
  height: 300px;
  width: 100%;
  border: none;
  display: block;
}
.contact-form-section {
  background: #fff;
  border-radius: var(--vs-r-lg);
  box-shadow: var(--vs-shadow-md);
  padding: 36px;
  border: 1px solid var(--vs-grey-mid);
}
.contact-form-section h3 {
  font-family: var(--vs-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--vs-blue);
  margin-bottom: 6px;
}
.contact-form-section p {
  font-size: 14px;
  color: var(--vs-text-light);
  margin-bottom: 24px;
}
.reach-out-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reach-out-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reach-out-form .form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vs-blue);
}
.reach-out-form .form-group input,
.reach-out-form .form-group textarea {
  font-family: var(--vs-sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--vs-grey-mid);
  border-radius: 8px;
  transition: all 0.2s;
  -webkit-appearance: none;
}
.reach-out-form .form-group input:focus,
.reach-out-form .form-group textarea:focus {
  outline: none;
  border-color: var(--vs-blue);
  box-shadow: 0 0 0 3px rgba(36, 102, 164, 0.1);
}
.reach-out-form .form-group textarea {
  min-height: 110px;
  resize: vertical;
}
.char-counter {
  font-size: 11px;
  color: var(--vs-text-light);
  text-align: right;
  margin-top: 3px;
}
.btn-submit {
  background: var(--vs-blue);
  color: #fff;
  padding: 13px 32px;
  border: none;
  border-radius: 8px;
  font-family: var(--vs-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(36, 102, 164, 0.28);
}
.btn-submit:hover {
  background: var(--vs-blue-dark);
  transform: translateY(-1px);
}
.contact-success {
  background: #d1fae5;
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 16px 20px;
  color: #065f46;
  margin-bottom: 16px;
  display: none;
}
.contact-error {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  color: #991b1b;
  margin-bottom: 16px;
  display: none;
}

/* ─── RESPONSIVE — PRODUCT DETAIL PAGES ─────────── */
@media (max-width: 1024px) {
  .pd-item-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-page-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .pd-spec-grid {
    grid-template-columns: 1fr;
  }
  .pd-spec-img-wrap {
    max-height: 280px;
  }
  .pd-cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .pd-gallery-slide {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .pd-hero {
    min-height: 220px;
  }
  .pd-hero-h1 {
    font-size: 26px;
  }
  .pd-item-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pd-accessories-grid {
    grid-template-columns: 1fr;
  }
  .pd-subnav {
    top: 68px;
    position: sticky;
  }
  .pd-subnav-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: unset;
    overflow-x: unset;
    gap: 0;
  }
  .pd-subnav-item {
    padding: 14px 12px;
    font-size: 12px;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pd-subnav-item:nth-child(even) {
    border-right: none;
  }
  .pd-subnav-item:last-child,
  .pd-subnav-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .pd-gallery-slide {
    flex: 0 0 100%;
    margin-right: 0;
  }
  .pd-gallery-prev {
    left: 0;
  }
  .pd-gallery-next {
    right: 0;
  }
  .products-grid-page {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form-section {
    padding: 24px 20px;
  }
}
@media (max-width: 480px) {
  .pd-subnav {
    position: sticky;
    top: 7rem;
  }
  .pd-item-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pd-item-img {
    height: 130px;
  }
  .pd-spec-text {
    padding: 24px 20px 20px;
  }
  .pd-accessories {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════
   OSWALD FONT SYSTEM — ACCENT & OVERRIDES
   (Replaces Playfair Display / italic system)
═══════════════════════════════════════════════════ */

/* Pink accent span — replaces <em> italic */
.vs-accent {
  color: var(--vs-pink);
}
.vs-accent-light {
  color: #f9c0dc;
}

/* Oswald global heading rules */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--vs-serif);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Hero headline — Oswald needs slightly tighter leading than Playfair */
.vs-hero-h1 {
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Section headings — uppercase suits Oswald */
.vs-section-h2 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
}

/* Process card headings */
.vs-pcard-h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* Why card headings */
.vs-why-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Testimonial client name */
.vs-tcard-name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Product card title */
.vs-prod-h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* About badge number */
.vs-about-badge-num {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Quote block — Oswald SemiBold, no italic */
.vs-quote {
  font-family: var(--vs-sans);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.65;
}

/* Stat numbers */
.vs-stat-num,
.vs-hstat-num {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* CTA banner headings */
.pd-cta-strip-h3,
.vs-cta-banner-text h3,
.pd-spec-h2,
.pd-hero-h1,
.pd-accessories-title,
.pd-item-title,
.contact-section-title {
  font-family: var(--vs-serif);
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Modal title */
.modal-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Page title */
.page-title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Product grid page titles */
.product-title-page {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Footer headings */
.footer-heading {
  letter-spacing: 0.12em;
}

/* Nav — Oswald works well slightly more tracked */
.nav-link {
  letter-spacing: 0.08em;
}

/* Sub-nav on product pages */
.pd-subnav-item {
  letter-spacing: 0.07em;
}

/* Eyebrow label */
.vs-label-text {
  letter-spacing: 0.18em;
}

/* Hero stat label */
.vs-hstat-label {
  letter-spacing: 0.09em;
}

/* ═══════════════════════════════════════════════════
   CONTACT US PAGE — FULL REDESIGN
═══════════════════════════════════════════════════ */

/* Hero */
.cu-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cu-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(19, 47, 82, 0.93) 0%,
    rgba(36, 102, 164, 0.78) 50%,
    rgba(36, 102, 164, 0.3) 100%
  );
  z-index: 1;
}
.cu-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
}
.cu-hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}
.cu-hero-label-line {
  width: 24px;
  height: 2px;
  background: var(--vs-pink);
  border-radius: 2px;
  flex-shrink: 0;
}
.cu-hero-h1 {
  font-family: var(--vs-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  font-style: normal;
  color: #fff;
  line-height: 1.08;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cu-hero-sub {
  font-family: var(--vs-sans);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  line-height: 1.7;
}

/* Body grid */
.cu-body {
  padding: 72px 0 80px;
  background: var(--vs-off);
}
.cu-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* Contact cards */
.cu-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.cu-contact-card {
  background: #fff;
  border-radius: var(--vs-r);
  border: 1px solid var(--vs-grey-mid);
  padding: 18px 18px 18px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.25s ease;
  box-shadow: var(--vs-shadow-sm);
}
.cu-contact-card:hover {
  border-color: rgba(36, 102, 164, 0.25);
  box-shadow: var(--vs-shadow-md);
  transform: translateY(-2px);
}
.cu-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(36, 102, 164, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cu-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--vs-blue);
}
.cu-card-body {
  flex: 1;
  min-width: 0;
}
.cu-card-label {
  font-family: var(--vs-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vs-text-light);
  margin-bottom: 4px;
}
.cu-card-value {
  font-family: var(--vs-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--vs-text);
  line-height: 1.5;
  display: block;
  word-break: break-word;
}
.cu-card-link {
  color: var(--vs-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.cu-card-link:hover {
  color: var(--vs-pink);
}

/* Map */
.cu-map {
  border-radius: var(--vs-r);
  overflow: hidden;
  box-shadow: var(--vs-shadow-sm);
  border: 1px solid var(--vs-grey-mid);
}
.cu-map iframe {
  display: block;
}

/* Form panel */
.cu-form-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--vs-shadow-md);
  border: 1px solid var(--vs-grey-mid);
  overflow: hidden;
}
.cu-form-header {
  background: linear-gradient(
    135deg,
    var(--vs-blue) 0%,
    var(--vs-blue-dark) 100%
  );
  padding: 28px 32px 24px;
  border-bottom: 2px solid rgba(210, 46, 127, 0.35);
}
.cu-form-h2 {
  font-family: var(--vs-serif);
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.cu-form-sub {
  font-family: var(--vs-sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}
.cu-form {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cu-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cu-field label {
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vs-blue);
}
.cu-field-opt {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 10px;
  color: var(--vs-text-light);
}
.cu-req {
  color: var(--vs-pink);
}
.cu-field input,
.cu-field textarea {
  font-family: var(--vs-sans);
  font-size: 15px;
  font-style: normal;
  color: var(--vs-text);
  padding: 12px 14px;
  border: 1.5px solid var(--vs-grey-mid);
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  background: #fff;
  -webkit-appearance: none;
}
.cu-field input:focus,
.cu-field textarea:focus {
  outline: none;
  border-color: var(--vs-blue);
  box-shadow: 0 0 0 3px rgba(36, 102, 164, 0.1);
}
.cu-field textarea {
  resize: vertical;
  min-height: 120px;
}
.cu-char-count {
  font-family: var(--vs-sans);
  font-size: 11px;
  color: var(--vs-text-light);
  text-align: right;
  margin-top: 3px;
}
.cu-field-err {
  font-family: var(--vs-sans);
  font-size: 12px;
  color: #ef4444;
  margin-top: 2px;
}
.cu-error-banner {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #991b1b;
  margin: 0 32px 0;
}
.cu-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--vs-pink);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-family: var(--vs-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(210, 46, 127, 0.35);
  align-self: flex-start;
}
.cu-submit:hover {
  background: var(--vs-pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(210, 46, 127, 0.45);
}

/* Success state */
.cu-success {
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cu-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.cu-success-icon svg {
  width: 26px;
  height: 26px;
  stroke: #10b981;
}
.cu-success h3 {
  font-family: var(--vs-serif);
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  color: var(--vs-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cu-success p {
  font-size: 15px;
  color: var(--vs-text-mid);
  font-weight: 300;
}
.cu-success-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--vs-blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--vs-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.cu-success-btn:hover {
  background: var(--vs-blue-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .cu-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .cu-contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cu-form-row {
    grid-template-columns: 1fr;
  }
  .cu-form {
    padding: 22px 20px 24px;
  }
  .cu-form-header {
    padding: 22px 20px 18px;
  }
  .cu-hero {
    min-height: 240px;
  }
}

/* ═══════════════════════════════════════════════════
   OUR PRODUCTS PAGE — COMPACT CARD ADDITIONS
═══════════════════════════════════════════════════ */
.our-products-page-header {
  margin-bottom: 40px;
}
.our-products-page-sub {
  font-size: 15px;
  color: var(--vs-text-mid);
  font-weight: 300;
  margin-top: 8px;
  max-width: 560px;
}
.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(19, 47, 82, 0.5) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.product-card-page-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.product-card-page-enquire {
  background: var(--vs-pink);
  color: #fff;
  border: none;
  padding: 7px 14px;
  border-radius: 5px;
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.product-card-page-enquire:hover {
  background: var(--vs-pink-dark);
}
.product-card-page-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--vs-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.product-card-page-cta:hover {
  color: #fff;
}

/* ── Cleanroom Validation — icons ─────────── */
.page-validation .pd-item-img img {
  opacity: 0.8;
}
.page-validation .pd-item-card:hover .pd-item-img img {
  opacity: 1;
}
