/* ==========================================
   PRECISION POINT ZERO - COMPLETE STYLESHEET  
   Clean, Consolidated - January 2026
   ========================================== */

/* ===== DESIGN SYSTEM ===== */
:root {
  /* Colors */
  --ppz-blue: #1E4E9C;
  --ppz-blue-dark: #152E5C;
  --ppz-blue-light: #3A6BC7;
  --ppz-yellow: #FFC300;
  --ppz-yellow-muted: #E6B800;
  --ppz-dark: #1F1F1F;
  --ppz-light: #F4F4F4;
  --ppz-gray: #f8f9fa;
  
  /* Typography */
  --ppz-display-font: "Bebas Neue", sans-serif;
  --ppz-body-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Type Scale */
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.5rem;
  --text-xl: 2rem;
  --text-2xl: 3rem;
  --text-3xl: 4rem;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;
  
  --transition: all 0.3s ease;
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== BASE TYPOGRAPHY ===== */
body {
  font-family: var(--ppz-body-font);
  background: var(--ppz-light);
  color: var(--ppz-dark);
  line-height: 1.6;
  font-size: var(--text-base);
  overflow-x: hidden;
}

#main-content {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ppz-display-font);
  line-height: 1.1;
}

/* ===== HEADER & NAVIGATION ===== */
#site-header {
  background: #E8EAED;
  position: fixed;
  top: 44px;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 3px solid var(--ppz-yellow);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Top Yellow Bar */
.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: var(--ppz-yellow);
  border-bottom: 2px solid #000;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.menu-overlay {
  height: 36px;
  width: auto;
  border-radius: 6px;
  opacity: 0.9;
}

.menu-tagline {
  position: absolute;
  left: 400px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--ppz-display-font);
  white-space: nowrap;
  z-index: 5;
  pointer-events: none;
}

.primary-nav {
  margin-left: auto;
  z-index: 10;
}

.primary-menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition);
}

.primary-menu a:hover {
  background: #000;
  color: var(--ppz-yellow);
}

.mobile-menu-toggle {
  display: none;
}

/* Main Header */
.navwrap {
  padding: 20px 20px 10px;
  background: #E8EAED;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 5px;
}

.logo-icon {
  height: 90px;
  width: auto;
}

.logo-text {
  height: 80px;
  width: auto;
  position: relative;
  top: -7px;
  left: -10px;
}

.phone-under-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}

.phone-under-logo a {
  display: inline-block;
  background: var(--ppz-yellow);
  color: var(--ppz-blue);
  font-family: var(--ppz-display-font);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.phone-under-logo a:hover {
  background: var(--ppz-blue);
  color: var(--ppz-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 78, 156, 0.4);
}

.header-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
  font-family: var(--ppz-body-font);
  font-size: 1.25rem;
  color: var(--ppz-dark);
  font-weight: 500;
  letter-spacing: .75px;
}

.header-right {
  display: flex;
  align-items: center;
}

.right-image {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  border-radius: 6px;
  transition: var(--transition);
}

.right-image:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ===== DROPDOWN MENU STYLES ===== */
.menu-item {
  position: relative;
}

.menu-item > a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  display: block;
  transition: color 0.3s ease;
}

.menu-item > a:hover {
  color: var(--ppz-yellow);
}

.menu-item-has-children {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 250px;
  list-style: none;
  margin: 0;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li {
  margin: 0;
  padding: 0;
}

.sub-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--ppz-yellow);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-weight: 500;
}

.sub-menu a:hover {
  background-color: var(--ppz-yellow);
  color: #000;
}

.menu-item:last-child > a {
  font-weight: 700;
}

.menu-item:last-child .sub-menu {
  right: 0;
  left: auto;
}


/* ===== CREDENTIALS BAR ===== */
.credentials-bar {
  background: var(--ppz-blue);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;  /* Change from 40px to 0 */
  flex-wrap: wrap;
  /* border-top: 3px solid var(--ppz-yellow); */
  border-bottom: 3px solid var(--ppz-yellow);
  position: relative;
  z-index: 998;
  margin-top: 142px;
  opacity: 1 !important;
  visibility: visible !important;
}

.credentials-bar span {
  color: var(--ppz-yellow);
  font-family: var(--ppz-display-font);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 20px;  /* ADD THIS - creates even spacing */
}

.credentials-bar span::after {
  content: '|';
  margin-left: 20px;  /* Change from 40px to 20px */
  color: rgba(255, 195, 0, 0.3);
}

.credentials-bar span:last-child::after {
  content: '';
  margin-left: 0;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  /* margin-top: -100px;*/  /* ADD THIS - pulls hero up to overlap/hide gap */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 8s ease;
  transform: scale(1.6);
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideOver 1.2s ease-out 0.4s forwards;
  margin-top: -20vh;  /* ADD THIS LINE */
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-family: var(--ppz-display-font);
  margin-bottom: var(--space-md);
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-family: var(--ppz-body-font);
  font-weight: 500;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.btn {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  margin: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--ppz-display-font);
  font-weight: 600;
  font-size: var(--text-base);
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.btn-blue {
  background: var(--ppz-blue);
  color: white;
  animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.btn-yellow {
  background: var(--ppz-yellow);
  color: var(--ppz-dark);
  animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5vh;
  background: var(--ppz-yellow);
  z-index: 3;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOver {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SCROLL-OVER SECTIONS ===== */
.scroll-over {
  position: relative;
  height: 80vh;
  overflow: visible;
  margin: 0;
}

.scroll-over:first-of-type:not(.landing-page) {
  margin-top: 0;
}

.scroll-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  filter: grayscale(100%) brightness(70%);
  transition: filter 0.8s ease;
}

.scroll-over:hover .scroll-bg {
  filter: grayscale(0%) brightness(85%);
}

.text-line {
  position: absolute;
  top: 10%;
  left: 15%;
  font-family: var(--ppz-display-font);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  z-index: 3;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-initial {
  color: var(--ppz-blue);
  transition: color 0.6s ease;
}

.text-hover {
  color: var(--ppz-blue);
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.scroll-over:hover .text-initial {
  color: #FFFFFF;
}

.scroll-over:hover .text-hover {
  opacity: 1;
}

/* ===== NARRATIVE PANELS (Left Side) ===== */
.triangle-panel {
  position: absolute;
  top: 55%;
  left: 13%;
  transform: translateX(-120%) translateY(-50%);
  width: 405px;
  height: 310px;
  background: linear-gradient(135deg, var(--ppz-blue-dark) 0%, var(--ppz-blue) 100%);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 3;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s ease;
  opacity: 0;
}

.triangle-panel p {
  color: white;
  font-family: var(--ppz-body-font);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

.scroll-over:hover .triangle-panel {
  transform: translateX(30px) translateY(-50%);
  opacity: 1;
}

/* ===== INFO PANELS (Right Side) ===== */
.info-panel {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(100%) translateY(-50%);
  width: 320px;
  max-width: 90%;
  background: linear-gradient(135deg, var(--ppz-blue) 0%, var(--ppz-blue-dark) 100%);
  padding: var(--space-lg) var(--space-md);
  border-radius: 8px 0 0 8px;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.2);
  z-index: 2;
  transition: transform 0.8s ease;
  transition-delay: 1s;
}

.scroll-over:hover .info-panel {
  transform: translateX(0) translateY(-50%);
}

.panel-intro {
  font-family: var(--ppz-body-font);
  font-size: var(--text-sm);
  color: var(--ppz-yellow);
  margin-bottom: var(--space-md);
  font-weight: bold;
  letter-spacing: 1px;
}

.panel-content {
  font-family: var(--ppz-body-font);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ppz-yellow);
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  letter-spacing: 0.3px;
}

.panel-content a {
  color: var(--ppz-yellow);
  text-decoration: none;
  font-family: var(--ppz-body-font);
  transition: color 0.3s ease;
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.panel-content a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ppz-yellow);
  transition: width 0.3s ease;
}

.panel-content a:hover::after {
  width: 100%;
}

.panel-content a:hover {
  color: #FFFFFF;
}

/* Section-specific panel spacing */
#industries .panel-content li {
  margin: 8px 0;
}

#products .panel-content li {
  margin: 2px 0;
}

#advantage .panel-content li {
  margin: 15px 0;
}

/* ===== DIVIDER BARS ===== */
.divider-line {
  height: 80px;
  background: var(--ppz-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: clip-path 2s ease;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  margin: 0;
  z-index: 4;
}

.divider-line.active {
  z-index: 100;
}

.divider-text {
  font-family: var(--ppz-body-font);
  color: var(--ppz-blue);
  font-size: 1.1rem;
  text-align: center;
  opacity: 0;
  transform: translateX(-200vw);
  transition: opacity 2s ease, transform 2s ease;
  padding: 0 40px;
}

.divider-2 .divider-text {
  transform: translateX(200vw);
}

.divider-text .first-word {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 8px;
}

/* Divider 1 (Industries) - taller on right, text from left */
.divider-1.active {
  clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%);
}

.divider-1.active .divider-text {
  opacity: 1;
  transform: translateX(0);
}

/* Divider 2 (Products) - taller on left, text from right */
.divider-2.active {
  clip-path: polygon(0% 30%, 100% 0%, 100% 100%, 0% 70%);
}

.divider-2.active .divider-text {
  opacity: 1;
  transform: translateX(0);
}

/* Divider 3 (Service) - taller on right, text from left */
.divider-3.active {
  clip-path: polygon(0% 0%, 100% 30%, 100% 70%, 0% 100%);
}

.divider-3.active .divider-text {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CONTACT SECTION ===== */
.ppz-contact-section {
  background: var(--ppz-dark);
  color: var(--ppz-yellow);
  padding: 80px 20px;
  text-align: center;
}

.ppz-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ppz-contact-section h2 {
  font-family: var(--ppz-display-font);
  font-size: var(--text-3xl);
  margin-bottom: 8px;
  color: var(--ppz-yellow);
  letter-spacing: 2px;
}

.ppz-contact-section p {
  font-family: var(--ppz-body-font);
  font-size: var(--text-base);
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.8;
}

.ppz-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ppz-contact-info {
  text-align: left;
  padding-left: 40px;
  font-family: var(--ppz-body-font);
  font-size: var(--text-base);
  line-height: 2;
}

.ppz-contact-info a {
  color: var(--ppz-yellow);
  text-decoration: underline;
}

.ppz-contact-form {
  background: rgba(255,195,0,0.05);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--ppz-yellow);
}

.ppz-contact-form input[type="text"],
.ppz-contact-form input[type="email"],
.ppz-contact-form input[type="tel"],
.ppz-contact-form textarea,
.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--ppz-yellow);
  color: white;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: var(--ppz-body-font);
  font-size: var(--text-sm);
  height: 46px;
  line-height: 1.4;
  width: 100%;
}

.ppz-contact-form textarea,
.wpcf7-textarea {
  height: 120px;
}

.ppz-contact-form input::placeholder,
.ppz-contact-form textarea::placeholder {
  color: rgba(255,195,0,0.7);
}

.ppz-contact-form input[type="submit"],
.ppz-contact-form button[type="submit"],
.wpcf7-submit {
  background: var(--ppz-yellow);
  color: #000;
  font-family: var(--ppz-display-font);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin-top: 20px;
  display: inline-block;
  width: auto;
}

.ppz-contact-form input[type="submit"]:hover,
.ppz-contact-form button[type="submit"]:hover,
.wpcf7-submit:hover {
  background: var(--ppz-blue);
  color: var(--ppz-yellow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30,78,156,0.4);
}

.ppz-contact-form--nobox {
  background: none;
  border: none;
  padding: 0;
}

.ppz-contact-form input:focus,
.ppz-contact-form textarea:focus {
  outline: none;
  border-color: var(--ppz-yellow);
  box-shadow: 0 0 20px rgba(255, 195, 0, 0.3);
  transform: scale(1.02);
}

/* ===== TRUSTED PARTNERS ===== */
.trusted-partners {
  background: var(--ppz-yellow);
  padding: 40px 20px 50px;
  text-align: center;
}

.partners-container h2 {
  font-family: var(--ppz-display-font);
  font-size: var(--text-2xl);
  color: var(--ppz-dark);
  margin-bottom: var(--space-lg);
  font-weight: 400;
  letter-spacing: 1px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

.partners-logos img {
  width: 160px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  padding: 6px;
  background: white;
  border-radius: 4px;
}

.partners-logos img:hover {
  filter: grayscale(0%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
#site-footer {
  background: var(--ppz-dark);
  color: var(--ppz-light);
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--ppz-yellow);
  font-family: var(--ppz-display-font);
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: var(--ppz-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--ppz-yellow);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 195, 0, 0.1);
  border: 1px solid var(--ppz-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ppz-yellow);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--ppz-yellow);
  color: var(--ppz-dark);
  transform: translateY(-3px);
}

.footer-contact p {
  color: var(--ppz-light);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 195, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #999;
}

.site-credit a {
  color: var(--ppz-yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-credit a:hover {
  color: #fff;
}

/* ===== SUBPAGE STYLES ===== */
.subpage-hero {
  display: none;
}

.subpage-content {
  position: relative;
  min-height: 100vh;
  margin: 0;
  overflow: visible;
  padding-bottom: 120px;
}

.content-inner {
  position: relative;
  z-index: 3;
  padding: 200px 8% 0;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 60px;
}

.content-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  object-fit: contain;
  filter: grayscale(0%);
  z-index: 1;
  background-attachment: fixed;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.subpage-content:hover .content-overlay {
  opacity: .8;
}

.text-content {
  max-width: 100%;
  padding-right: 0;
}

.fade-title {
  font-family: var(--ppz-display-font);
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ppz-yellow);
  margin: 0;
  white-space: nowrap;
  transition: color .6s ease 0.6s;
}

.subpage-content:hover .fade-title {
  color: var(--ppz-blue);
}

.fade-paragraphs {
  margin-top: 25px;
  opacity: 0;
  transition: opacity 1s ease 0.8s;
  font-family: var(--ppz-body-font);
  font-size: 1.1rem;
  color: #FFFFFF;
  line-height: 1.8;
  max-width: 100%;
  padding-left: 0;
  letter-spacing: 0.5px;
}

.fade-paragraphs p {
  margin-bottom: 20px;
}

.subpage-content:hover .fade-paragraphs {
  opacity: 1;
}

/* ===== LANDING PAGES ===== */
.landing-page {
  margin-top: 150px;
}

/* ===== PDF GRID ===== */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  opacity: 0;
  transition: opacity 1s ease 0.8s;
}

.subpage-content:hover .pdf-grid {
  opacity: 1;
}

.pdf-card {
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 340px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.pdf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent,
    var(--ppz-yellow),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.pdf-card:hover::before {
  transform: translateX(100%);
}

.pdf-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, 
    rgba(255, 195, 0, 0) 0%, 
    rgba(255, 195, 0, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pdf-card:hover::after {
  opacity: 1;
}

.pdf-card:hover {
  transform: translateY(-8px);
  border-color: var(--ppz-blue);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 195, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-image-wrapper {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  border-bottom: 2px solid #2a2a2a;
  position: relative;
  z-index: 1;
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

.product-image-wrapper img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: brightness(0.85) contrast(1.1);
  border-radius: 8px;
}

.pdf-card:hover .product-image-wrapper {
  border-bottom-color: var(--ppz-blue);
}

.pdf-card:hover .product-image-wrapper img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.15);
}

.pdf-card h3 {
  color: #e0e0e0;
  font-family: var(--ppz-display-font);
  font-size: 1.7rem;
  margin: 25px 20px 10px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.pdf-card:hover h3 {
  color: var(--ppz-yellow);
  text-shadow: 0 0 20px rgba(255, 195, 0, 0.5);
}

.pdf-label {
  color: #666;
  font-family: var(--ppz-body-font);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: auto 20px 25px;
  padding-top: 15px;
  border-top: 1px solid #2a2a2a;
  position: relative;
  z-index: 1;
}

.pdf-card:hover .pdf-label {
  color: var(--ppz-yellow);
  border-top-color: rgba(255, 195, 0, 0.3);
}

/* ===== BACKGROUND IMAGE ROTATION ===== */
/* Only for homepage (not landing pages) */
body:not(.page) #industries .scroll-bg,
body:not(.page) #products .scroll-bg {
  opacity: 0;
  transition: opacity 2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/* ========================================== 
   SINGULAR PRODUCT TEMPLATE STYLES
   Reserved for future use - Currently not in use
   ========================================== */
/*
.page-template-pagesingularproduct {
  background-color: black !important;
}

.page-template-pagesingularproduct .text-initial {
  color: var(--ppz-yellow) !important;
  transition: color 0.6s ease !important;
}

.page-template-pagesingularproduct .scroll-over:hover .text-initial {
  color: var(--ppz-blue) !important;
}

.page-template-pagesingularproduct .text-hover {
  display: none !important;
}

.page-template-pagesingularproduct .scroll-bg {
  background-size: 50% !important;
  background-position: center;
  background-repeat: no-repeat;
}

.page-template-pagesingularproduct .triangle-panel {
  width: 600px !important;
  max-height: none !important;
  padding: 40px !important;
}
*/

/* ==========================================
   MOBILE STYLES
   ========================================== */

@media (max-width: 1024px) {
  /* Prevent horizontal scroll and zoom issues */
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #000;
  }
  
  /* Line break utility for mobile */
  .mobile-br::before {
    content: "\a";
    white-space: pre;
  }

  #main-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 85px;
    overflow-x: hidden;
  }
  
  .scroll-over,
  .scroll-bg {
    width: 100vw;
    max-width: 100%;
    min-width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  
  /* Hide desktop-only elements */
  .triangle-panel,
  .hero {
    display: none !important;
  }
  
  /* Top Yellow Bar */
  .top-menu {
    position: fixed !important;
    top: 0 !important;
    justify-content: center;
    padding: 2px 20px;
    min-height: auto;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 1000;
  }
  
  .top-menu .top-left img,
  .top-menu .primary-nav,
  .mobile-menu-toggle {
    display: none;
  }
  
  .menu-tagline {
    display: block;
    position: static;
    transform: none;
    font-size: 1.6rem;
    text-align: center;
    width: 100%;
    line-height: 1.2;
  }
  
  /* Main Header */
  #site-header {
    position: fixed !important;
    top: 35px !important;
  }
  
  .navwrap {
    padding: 8px 10px;
    position: relative;
  }
  
  .header-content {
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }
  
  .brand {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 5px;
  position: relative;
  padding-bottom: 50px;
}
  
  .logo-icon {
    height: 40px;
  }
  
  .logo-text {
    height: 40px;
    top: -2px;
    left: -5px;
  }
  

  
  .header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  
  /* Phone Button in Header */
  .mobile-header-tools {
    position: absolute;
    right: 10px;
    top: 38%;
    transform: translateY(-50%);
  }
  
  .mobile-phone-link {
    background: var(--ppz-yellow);
    color: var(--ppz-blue);
    font-family: var(--ppz-display-font);
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .mobile-phone-link:active {
    background: var(--ppz-blue);
    color: var(--ppz-yellow);
    transform: scale(0.97);
  }
  
  .mobile-search-form,
  .mobile-search-input,
  .mobile-search-button {
    display: none;
  }
  
  /* Homepage Scroll-Over Sections */
  .scroll-over {
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: manipulation;
  }
  
  .scroll-over .text-line {
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    font-size: 2.5rem;
    z-index: 10;
  }

  .scroll-over .text-initial,
  .scroll-over .text-hover {
    color: #FFFFFF;
    opacity: 1;
  }

  .scroll-over .scroll-bg {
    background-attachment: scroll;
    filter: grayscale(0%) brightness(70%);
    width: 100%;
    left: 0;
  }

  /* Homepage Info Panels */
  .scroll-over .info-panel {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: auto;
    min-width: 200px;
    max-width: 70%;
    max-height: 50vh;
    padding: 15px 20px;
    border-radius: 12px 0 0 12px;
    z-index: 5;
    overflow-y: auto;
    transition: none;
  }

  .scroll-over .panel-content a {
    white-space: nowrap;
  }

  .scroll-over .panel-content a[href*="weigh-bars"] {
    white-space: normal;
    word-break: break-word;
  }
  
  /* Subpage Styles */
  .subpage-content {
    position: relative;
    min-height: 100vh;
    padding-bottom: 0;
    overflow: visible;
  }
  
  .subpage-content .content-bg {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: contain !important;
    background-size: contain !important;
    background-position: center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-color: #000 !important;
    z-index: 1 !important;
  }
  
  .subpage-content video.content-bg {
    object-fit: cover !important;
  }
  
  .subpage-content .content-overlay {
    display: none;
  }
  
  .subpage-content .content-inner {
    position: relative;
    z-index: 2;
    padding: 120px 20px 120px;
  }
  
  .subpage-content .text-content {
    display: block;
  }
  
  .subpage-content .fade-title {
    color: var(--ppz-yellow) !important;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    white-space: normal;
    word-wrap: break-word;
  }
  
  /* Show paragraphs on Service pages, hide on Products/Industries */
  .subpage-content .fade-paragraphs {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: white !important;
    padding: 0 20px !important;
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    transform: none !important;
    transition: none !important;
  }
  
  .subpage-content .fade-paragraphs p {
    margin-bottom: 20px;
  }
  
  /* Hide text on Products and Industries pages only */
  .page-parent-products .fade-paragraphs,
  .page-parent-industries .fade-paragraphs,
  body[class*="product-"] .fade-paragraphs,
  body[class*="industr"] .fade-paragraphs {
    display: none !important;
  }
  
  .subpage-content .pdf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    opacity: 1 !important;
    transition: none !important;
  }

  .subpage-content .pdf-card {
    font-size: 0.9rem;
    min-height: 250px;
  }
  
  .subpage-content .divider-line {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
  }
  
  /* Contact Section */
  .ppz-contact-section {
    display: block;
    padding: 40px 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .ppz-contact-inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  
  .ppz-contact-section h2 {
    font-size: 2.5rem;
  }
  
  .ppz-contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }
  
  .ppz-contact-info {
    padding-left: 0;
    text-align: center;
    width: 100%;
  }
  
  .ppz-contact-form {
    width: 100%;
    padding: 20px 15px;
    box-sizing: border-box;
  }
  
  /* Trusted Partners */
  .trusted-partners {
    display: block;
    padding: 30px 15px;
  }
  
  .partners-logos img {
    width: 120px;
    height: 60px;
  }
  
  /* Footer */
  #site-footer {
    display: block !important;
    padding: 20px;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
  }
  
  /* Scroll Behavior */
  body {
    overflow-x: hidden;
    background: var(--ppz-light);
    overflow-anchor: none;
  }
  
  html {
    scroll-behavior: auto;
    overflow-anchor: none;
  }
  
  .scroll-over,
  .info-panel {
    overflow-anchor: none;
  }
}

/* ===== DESKTOP ONLY ===== */
.mobile-br {
  display: inline;
}

@media (min-width: 1025px) {
  .mobile-blue-links,
  .mobile-header-tools {
    display: none;
  }
}