/* ============================================================
   Wiltz Group — ProBuild Design System
   Converted from ProBuild React Template
   Colors: Signal Red (#CC1F2D), Charcoal (#111827), Warm White (#FAFAFA)
   Typography: Oswald (headings) + Roboto (body)
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111827;
}
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── CONTAINER ── */
.pb-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .pb-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .pb-container { padding: 0 2rem; } }

/* ── UTILITY CLASSES ── */
.pb-text-red { color: #CC1F2D; }
.pb-text-white { color: #fff; }
.pb-text-charcoal { color: #111827; }
.pb-text-gray { color: #6B7280; }
.pb-text-gray-light { color: #9CA3AF; }
.pb-bg-red { background-color: #CC1F2D; }
.pb-bg-charcoal { background-color: #111827; }
.pb-bg-light { background-color: #f8f8f8; }
.pb-bg-white { background-color: #fff; }

/* ── SECTION LABEL ── */
.pb-section-label {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #CC1F2D;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pb-section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2px;
  background: #CC1F2D;
}
.pb-section-label.centered {
  justify-content: center;
}

/* ── BUTTONS ── */
.pb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #CC1F2D;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.625rem 1.75rem;
  border: 2px solid #CC1F2D;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pb-btn-primary:hover {
  background: #a01820;
  border-color: #a01820;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204,31,45,0.3);
}

.pb-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111827;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.625rem 1.75rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pb-btn-dark:hover {
  background: #CC1F2D;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pb-btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.625rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pb-btn-outline-white:hover {
  background: #fff;
  color: #111827;
}

.pb-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #CC1F2D;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.pb-btn-white:hover {
  background: #111827;
  color: #fff;
}

/* ── TOP UTILITY BAR ── */
.pb-topbar {
  background: #111827;
  color: #fff;
  padding: 0.375rem 0;
  font-size: 0.75rem;
}
.pb-topbar a {
  color: #9CA3AF;
  transition: color 0.2s;
}
.pb-topbar a:hover {
  color: #f87171;
}
.pb-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pb-topbar-left, .pb-topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.pb-topbar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ── MAIN NAVIGATION ── */
.pb-navbar {
  background: #CC1F2D;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.pb-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.pb-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

/* Logo */
.pb-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pb-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pb-logo-icon span {
  color: #CC1F2D;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
.pb-logo-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pb-logo-text {
  display: flex;
  flex-direction: column;
}
.pb-logo-name {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.pb-logo-sub {
  color: rgba(255,255,255,0.6);
  font-family: 'Roboto', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Nav links */
.pb-nav {
  display: none;
  align-items: center;
}
@media (min-width: 1024px) {
  .pb-nav { display: flex; }
}
.pb-nav-item {
  position: relative;
}
.pb-nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.875rem 0.875rem;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.pb-nav-link:hover,
.pb-nav-link.active {
  color: rgba(255,255,255,0.8);
}
.pb-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.pb-nav-link:hover::after,
.pb-nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.pb-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111827;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-top: 2px solid #CC1F2D;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  z-index: 100;
}
.pb-nav-item:hover .pb-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pb-dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #D1D5DB;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.pb-dropdown a:hover {
  background: #CC1F2D;
  color: #fff;
}

/* Navbar CTA */
.pb-nav-cta {
  display: none;
  background: #fff;
  color: #CC1F2D;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4375rem 1.125rem;
  border: none;
  transition: all 0.2s;
}
@media (min-width: 768px) { .pb-nav-cta { display: inline-block; } }
.pb-nav-cta:hover {
  background: #111827;
  color: #fff;
}

/* Mobile toggle */
.pb-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 1024px) { .pb-mobile-toggle { display: none; } }

/* Mobile menu */
.pb-mobile-menu {
  display: none;
  background: #111827;
  border-top: 1px solid #374151;
  padding: 0.5rem 0;
}
.pb-mobile-menu.open { display: block; }
@media (min-width: 1024px) { .pb-mobile-menu { display: none !important; } }
.pb-mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.pb-mobile-menu a:hover { background: #CC1F2D; }
.pb-mobile-menu .sub-item {
  padding-left: 2rem;
  color: #9CA3AF;
  font-family: 'Roboto', sans-serif;
  text-transform: none;
  font-size: 0.8125rem;
}

/* ── HERO SECTION ── */
.pb-hero {
  position: relative;
  height: 70vh;
  min-height: 430px;
  max-height: 565px;
  overflow: hidden;
  margin-top: 0;
}
.pb-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
}
.pb-hero-text-slide {
  transition: opacity 0.5s ease;
}
.pb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
}
.pb-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 50%);
}
.pb-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}
.pb-hero-inner {
  max-width: 38rem;
}
.pb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(204,31,45,0.9);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
  border-radius: 2px;
}
.pb-hero-badge .pulse {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.pb-hero h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) { .pb-hero h1 { font-size: 2.375rem; } }
@media (min-width: 1024px) { .pb-hero h1 { font-size: 2.875rem; } }
.pb-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 30rem;
  letter-spacing: 0.01em;
}
.pb-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.pb-hero-buttons a {
  font-size: 0.75rem;
  padding: 0.5rem 1.25rem;
  letter-spacing: 0.06em;
}
.pb-hero-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}
.pb-hero-dot {
  height: 3px;
  transition: all 0.4s ease;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  border-radius: 2px;
}
.pb-hero-dot.active {
  width: 2rem;
  background: #CC1F2D;
}
.pb-hero-dot:not(.active) {
  width: 0.75rem;
}
.pb-hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ── QUICK STATS BAR ── */
.pb-stats-bar {
  background: #CC1F2D;
}
.pb-stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .pb-stats-bar-grid { grid-template-columns: repeat(4, 1fr); }
}
.pb-stats-bar-item {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(153, 27, 27, 0.5);
}
.pb-stats-bar-item:last-child { border-right: none; }
.pb-stats-bar-value {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.pb-stats-bar-label {
  color: rgba(254,202,202,0.8);
  font-family: 'Roboto', sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── PRODUCT CARD ── */
.pb-product-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}
.pb-product-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #CC1F2D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}
.pb-product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.pb-product-card:hover::before {
  transform: scaleX(1);
}
.pb-product-card-img {
  position: relative;
  height: 13rem;
  overflow: hidden;
}
.pb-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.pb-product-card:hover .pb-product-card-img img {
  transform: scale(1.05);
}
.pb-product-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.pb-product-card-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: #CC1F2D;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
}
.pb-product-card-body {
  padding: 1.25rem;
}
.pb-product-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.pb-product-card:hover .pb-product-card-title {
  color: #CC1F2D;
}
.pb-product-card-desc {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.6;
}
.pb-product-card-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  color: #CC1F2D;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── SERVICE CARD ── */
.pb-service-card {
  padding: 1.5rem;
  border: 1px solid #E5E7EB;
  transition: all 0.3s;
}
.pb-service-card:hover {
  border-color: #CC1F2D;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.pb-service-icon {
  width: 3rem;
  height: 3rem;
  background: #CC1F2D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
  color: #fff;
  font-size: 1.25rem;
}
.pb-service-card:hover .pb-service-icon {
  transform: scale(1.1);
}
.pb-service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.pb-service-card:hover h3 { color: #CC1F2D; }
.pb-service-card p {
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ── STAT NUMBER ── */
.pb-stat-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: #CC1F2D;
}

/* ── TESTIMONIAL CARD ── */
.pb-testimonial {
  padding: 1.5rem;
  background: #f8f8f8;
  border-left: 4px solid #CC1F2D;
}
.pb-testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.pb-testimonial-stars i { color: #F59E0B; font-size: 0.875rem; }
.pb-testimonial-text {
  color: #4B5563;
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.pb-testimonial-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111827;
}
.pb-testimonial-role {
  color: #6B7280;
  font-size: 0.75rem;
}

/* ── PAGE HERO (inner pages) ── */
.pb-page-hero {
  background: #111827;
  padding: 8rem 0 3rem;
  margin-top: 4rem; /* account for fixed nav */
}
.pb-page-hero.with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.pb-page-hero.with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.85);
}
.pb-page-hero.with-bg > * {
  position: relative;
  z-index: 1;
}
.pb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
}
.pb-breadcrumb a { color: #6B7280; transition: color 0.2s; }
.pb-breadcrumb a:hover { color: #fff; }
.pb-breadcrumb .current { color: #D1D5DB; }
.pb-page-hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
.pb-page-hero p {
  color: #9CA3AF;
  max-width: 36rem;
}
.pb-accent-bar {
  height: 6px;
  background: #CC1F2D;
}

/* ── FOOTER ── */
.pb-footer {
  background: #111827;
  color: #fff;
}
.pb-footer-cta {
  background: #CC1F2D;
  padding: 2.5rem 0;
}
.pb-footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pb-footer-cta-inner { flex-direction: row; }
}
.pb-footer-cta h3 {
  font-size: 1.5rem;
  color: #fff;
}
.pb-footer-cta p {
  color: rgba(254,202,202,0.8);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.pb-footer-main {
  padding: 3.5rem 0;
}
.pb-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .pb-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pb-footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.pb-footer-brand p {
  color: #9CA3AF;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.pb-footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #374151;
}
.pb-footer-links li {
  margin-bottom: 0.625rem;
}
.pb-footer-links a {
  color: #9CA3AF;
  font-size: 0.875rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pb-footer-links a:hover {
  color: #CC1F2D;
}
.pb-footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #CC1F2D;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s;
}
.pb-footer-links a:hover::before {
  opacity: 1;
}
.pb-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pb-footer-contact-icon {
  width: 1rem;
  color: #CC1F2D;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.pb-footer-contact-item p,
.pb-footer-contact-item a {
  color: #9CA3AF;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.pb-footer-contact-item a:hover {
  color: #fff;
}
.pb-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.pb-footer-social a {
  width: 2rem;
  height: 2rem;
  background: #1F2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.pb-footer-social a:hover {
  background: #CC1F2D;
  color: #fff;
}
.pb-footer-bottom {
  border-top: 1px solid #1F2937;
  padding: 1.25rem 0;
  font-size: 0.75rem;
  color: #6B7280;
}
.pb-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .pb-footer-bottom-inner { flex-direction: row; }
}
.pb-footer-bottom a {
  color: #6B7280;
  transition: color 0.2s;
}
.pb-footer-bottom a:hover { color: #D1D5DB; }

/* ── CTA SECTION ── */
.pb-cta-section {
  background: #CC1F2D;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.pb-cta-section .pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.pb-cta-section .circle1 {
  position: absolute;
  top: 0; right: 0;
  width: 24rem; height: 24rem;
  border: 40px solid #fff;
  border-radius: 50%;
  transform: translate(8rem, -8rem);
}
.pb-cta-section .circle2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 16rem; height: 16rem;
  border: 30px solid #fff;
  border-radius: 50%;
  transform: translate(-4rem, 4rem);
}

/* ── GRID HELPERS ── */
.pb-grid { display: grid; gap: 1.5rem; }
.pb-grid-2 { grid-template-columns: 1fr; }
.pb-grid-3 { grid-template-columns: 1fr; }
.pb-grid-4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .pb-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .pb-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pb-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pb-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .pb-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ── SECTION SPACING ── */
.pb-section { padding: 5rem 0; }
.pb-section-sm { padding: 4rem 0; }

/* ── CHECKLIST ── */
.pb-checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .pb-checklist { grid-template-columns: repeat(2, 1fr); }
}
.pb-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pb-check-item i {
  color: #CC1F2D;
  margin-top: 0.125rem;
  flex-shrink: 0;
  font-size: 0.875rem;
}
.pb-check-item span {
  color: #374151;
  font-size: 0.875rem;
}

/* ── ABOUT IMAGE WITH BADGE ── */
.pb-about-img {
  position: relative;
}
.pb-about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.pb-about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #CC1F2D;
  color: #fff;
  padding: 1.5rem;
}
@media (max-width: 767px) { .pb-about-badge { display: none; } }
.pb-about-badge .number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}
.pb-about-badge .label {
  color: rgba(254,202,202,0.8);
  font-size: 0.875rem;
}

/* ── CLIENT LOGOS ── */
.pb-client-logo {
  background: #fff;
  border: 1px solid #E5E7EB;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 0.75rem;
}
.pb-client-logo:hover {
  border-color: #CC1F2D;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.pb-client-logo img {
  max-height: 3rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}
.pb-client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.pb-client-logo span {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #9CA3AF;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.pb-client-logo:hover span {
  color: #CC1F2D;
}

/* ── FORM STYLES ── */
.pb-form-group {
  margin-bottom: 1rem;
}
.pb-form-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4B5563;
  margin-bottom: 0.375rem;
}
.pb-form-input,
.pb-form-textarea,
.pb-form-select {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #D1D5DB;
  font-family: 'Roboto', sans-serif;
  font-size: 0.875rem;
  color: #111827;
  transition: border-color 0.2s;
  background: #fff;
  outline: none;
}
.pb-form-input:focus,
.pb-form-textarea:focus,
.pb-form-select:focus {
  border-color: #CC1F2D;
}
.pb-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── ANIMATIONS ── */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ── PRELOADER OVERRIDE ── */
.preloader {
  position: fixed;
  inset: 0;
  background: #111827;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader .loader {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(204, 31, 45, 0.3);
  border-top-color: #CC1F2D;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── HIDE OLD TEMPLATE ELEMENTS ── */
.homepage3-body .vl-header-area,
.homepage3-body .vl-mobile-menu-active,
.header1-section-area,
.hero1-section-area { display: none !important; }

/* ============================================================
   PRODUCTION FIXES — Spacing, Icons, Images, Responsiveness
   ============================================================ */

/* ── FIX: Remove white gap between navbar and hero ── */
.pb-hero { margin-top: 0; }
.pb-navbar-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.pb-navbar-wrap + .pb-hero,
.pb-navbar-wrap ~ .pb-hero,
header + section.pb-hero { margin-top: 0; }
body { padding-top: 0; }

/* ── FIX: Reduce excessive section padding ── */
.pb-section { padding: 4rem 0; }
.pb-section-sm { padding: 3rem 0; }

/* ── FIX: Service card icons — ensure FA icons render ── */
.pb-service-icon {
  width: 3rem;
  height: 3rem;
  background: #CC1F2D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}
.pb-service-icon i,
.pb-service-icon .fa,
.pb-service-icon .fas,
.pb-service-icon .fa-solid {
  color: #fff;
  font-size: 1.25rem;
  display: inline-block;
}

/* ── FIX: Stats section icon boxes ── */
.pb-stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(204,31,45,0.1);
  border: 1px solid rgba(204,31,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.pb-stat-icon i { color: #CC1F2D; font-size: 1.25rem; }

/* ── FIX: No-image placeholder styling ── */
.pb-product-card-img .img-broken,
.pb-no-image {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 0.75rem;
  min-height: 200px;
}
.pb-product-card-img img[src*="no-image"] {
  padding: 2rem;
  object-fit: contain !important;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}
.pb-about-img img[src*="no-image"],
.pb-about-img .img-broken {
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb) !important;
  padding: 3rem;
}

/* ── FIX: Client logo section ── */
.pb-client-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .pb-client-logos-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ── FIX: Two-column layout for about section ── */
.pb-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .pb-about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

/* ── FIX: Gap between hero diagonal and stats bar ── */
.pb-hero-diagonal { height: 3rem; }
.pb-stats-bar { position: relative; z-index: 2; }

/* ── FIX: Section heading spacing ── */
.pb-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pb-section-header h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.pb-section-header p {
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
}

/* ── FIX: Product card grid gap ── */
.pb-grid { gap: 1.25rem; }

/* ── FIX: Testimonial section spacing ── */
.pb-testimonial {
  padding: 1.5rem;
  background: #f8f8f8;
  border-left: 4px solid #CC1F2D;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pb-testimonial-text { flex: 1; }

/* ── FIX: CTA section responsive ── */
.pb-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .pb-cta-buttons { flex-direction: row; justify-content: center; }
}

/* ── FIX: Page hero spacing for inner pages ── */
.pb-page-hero {
  padding: 7rem 0 2.5rem;
  margin-top: 0;
}
.pb-page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .pb-page-hero { padding: 8rem 0 3rem; }
  .pb-page-hero h1 { font-size: 3rem; }
}

/* ── FIX: Footer CTA inner alignment ── */
.pb-footer-cta-inner h3 { margin-bottom: 0; }

/* ============================================================
   MOBILE RESPONSIVENESS
   ============================================================ */

/* ── Mobile: Hero section ── */
@media (max-width: 767px) {
  .pb-hero {
    height: 40vh;
    min-height: 240px;
    max-height: 320px;
  }
  .pb-hero h1 { font-size: 1.375rem; font-weight: 600; }
  .pb-hero p { font-size: 0.8125rem; font-weight: 300; margin-bottom: 0.75rem; }
  .pb-hero-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .pb-hero-buttons a {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  .pb-hero-badge { font-size: 0.5625rem; padding: 0.25rem 0.625rem; }
  .pb-hero-inner { max-width: 100%; }
}

/* ── Mobile: Stats bar ── */
@media (max-width: 767px) {
  .pb-stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .pb-stats-bar-item { padding: 0.875rem 0.75rem; }
  .pb-stats-bar-value { font-size: 1.25rem; }
  .pb-stats-bar-label { font-size: 0.5625rem; }
}

/* ── Mobile: Section spacing ── */
@media (max-width: 767px) {
  .pb-section { padding: 2.5rem 0; }
  .pb-section-sm { padding: 2rem 0; }
  h2 { font-size: 1.75rem !important; }
  .pb-section-header { margin-bottom: 1.5rem; }
}

/* ── Mobile: Product cards ── */
@media (max-width: 767px) {
  .pb-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .pb-product-card-img { height: 10rem; }
  .pb-product-card-body { padding: 0.875rem; }
  .pb-product-card-title { font-size: 0.9375rem; }
  .pb-product-card-desc { font-size: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
}
@media (max-width: 479px) {
  .pb-grid-4 { grid-template-columns: 1fr; }
}

/* ── Mobile: Service cards ── */
@media (max-width: 767px) {
  .pb-grid-3 { grid-template-columns: 1fr; gap: 0.75rem; }
  .pb-service-card { padding: 1.25rem; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .pb-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile: About section ── */
@media (max-width: 767px) {
  .pb-about-grid { gap: 1.5rem; }
  .pb-about-img img { height: 250px; }
  .pb-about-badge { display: none; }
  .pb-checklist { grid-template-columns: 1fr; }
}

/* ── Mobile: Footer ── */
@media (max-width: 767px) {
  .pb-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pb-footer-cta-inner { text-align: center; }
  .pb-footer-cta-inner h3 { font-size: 1.25rem; }
  .pb-footer-bottom-inner { text-align: center; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .pb-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile: Topbar ── */
@media (max-width: 767px) {
  .pb-topbar { display: none; }
  .pb-navbar-inner { height: 3.5rem; }
  .pb-logo-icon { width: 2rem; height: 2rem; }
  .pb-logo-icon img { max-height: 2rem; }
  .pb-logo-name { font-size: 1rem; }
}

/* ── Mobile: Navigation ── */
@media (max-width: 1023px) {
  .pb-nav { display: none; }
  .pb-nav-cta { display: none; }
  .pb-mobile-toggle { display: flex; }
}

/* ── Mobile: Page Hero ── */
@media (max-width: 767px) {
  .pb-page-hero { padding: 5rem 0 1.5rem; }
  .pb-page-hero h1 { font-size: 1.75rem; }
  .pb-breadcrumb { font-size: 0.75rem; }
}

/* ── Mobile: Contact form ── */
@media (max-width: 767px) {
  .pb-contact-grid {
    grid-template-columns: 1fr !important;
  }
  .pb-form-row {
    grid-template-columns: 1fr !important;
  }
}

/* ── Mobile: Products sidebar ── */
@media (max-width: 1023px) {
  .pb-products-layout {
    grid-template-columns: 1fr !important;
  }
  .pb-products-sidebar {
    order: 2;
  }
}

/* ── Tablet: General ── */
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pb-hero h1 { font-size: 3rem; }
}

/* ── FIX: Smooth scroll ── */
html { scroll-behavior: smooth; }

/* ── FIX: Back to top button — stacked above WhatsApp + Chatbot ── */
.pb-back-to-top {
  position: fixed;
  bottom: 9.5rem;
  right: 1.75rem;
  width: 2.75rem;
  height: 2.75rem;
  background: #CC1F2D;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(204,31,45,0.4);
}
.pb-back-to-top.visible { opacity: 1; visibility: visible; }
.pb-back-to-top:hover { background: #a01820; transform: translateY(-2px); }

/* ── FIX: Ensure FA icons render correctly ── */
.pb-service-icon i,
.pb-stat-icon i,
.pb-check-item i,
.pb-testimonial-stars i,
.pb-footer-contact-icon i {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── FIX: WhatsApp button ── */
.pb-whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s;
}
.pb-whatsapp-btn:hover { transform: scale(1.1); color: #fff; }

/* ── FIX: Hide old template CSS clutter ── */
.homepage3-body,
.header1-section-area,
.hero1-section-area,
.vl-header-area,
.vl-transparent-header,
.vl-header-sticky,
.vl-mobile-menu-active,
#vl-header-sticky,
.paginacontainer .progress-wrap { display: none !important; }
