/*
Theme Name: SNT Metal Recycling
Theme URI: https://sntmetalrecycling.com
Author: SNT Metal Recycling
Author URI: https://sntmetalrecycling.com
Description: Professional WordPress theme for SNT Metal Recycling - a premium scrap metal recycling company serving Alvarado, Mansfield, and surrounding Texas communities. Clean, modern, conversion-focused design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: snt-metal
Tags: business, custom-colors, custom-logo, featured-images, full-width-template, threaded-comments, accessibility-ready, translation-ready, blog, e-commerce
*/

/* =====================================================
   CSS CUSTOM PROPERTIES (BRAND TOKENS)
   ===================================================== */
:root {
  /* Brand Colors */
  --green-primary: #43B000;
  --green-dark: #2E7D00;
  --green-light: #E8F5E1;
  --green-xlight: #F4FAF0;
  --silver: #BDBDBD;
  --gray-dark: #4A4A4A;
  --gray-mid: #6B7280;
  --gray-light: #F3F4F6;
  --gray-border: #E5E7EB;
  --white: #FFFFFF;
  --black: #111111;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #6B7280;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-green: 0 4px 20px rgba(67,176,0,0.25);

  /* Typography */
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Barlow', sans-serif;

  /* Spacing */
  --section-padding: 90px 0;
  --container-max: 1280px;
  --container-pad: 0 24px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* =====================================================
   LAYOUT
   ===================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.section { padding: var(--section-padding); }
.section--gray { background: var(--gray-light); }
.section--green-light { background: var(--green-xlight); }
.section--white { background: var(--white); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header { margin-bottom: 56px; }
.section-header.text-center { text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-primary);
}

.section-title {
  margin-bottom: 16px;
}

.section-title span { color: var(--green-primary); }

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header.text-center .section-desc {
  margin: 0 auto;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(67,176,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}

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

.btn-outline-green {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

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

.btn-dark {
  background: var(--gray-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.btn svg, .btn .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* =====================================================
   SITE HEADER
   ===================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 0;
}

#site-header.transparent-header {
  background: transparent;
}

#site-header.scrolled,
#site-header.solid-header {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar */
.header-topbar {
  background: var(--gray-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  transition: all var(--transition-base);
}

.transparent-header .header-topbar {
  background: rgba(0,0,0,0.4);
}

.topbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
}

.topbar-item svg { width: 14px; height: 14px; fill: var(--green-primary); flex-shrink: 0; }
.topbar-item a { color: rgba(255,255,255,0.85); }
.topbar-item a:hover { color: var(--white); }
.topbar-items { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

/* Logo */
/* Sirf Header wale logo ko target karne ke liye */
header .site-logo, 
.site-header .site-logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none; 
  position: absolute;
  left: 20px; 
  top: 50%;
  transform: translateY(-50%);
}

/* Footer wale logo ko apni asli halat mein wapas lane ke liye */
footer .site-logo,
.site-footer .site-logo {
  position: static !important;
  transform: none !important;
  margin: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center; /* 'left' ko badal kar 'center' kar diya kyunki left invalid tha */
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 26px; height: 26px; fill: white; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.transparent-header:not(.scrolled) .logo-name { color: var(--white); }

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-primary);
}
/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.transparent-header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.nav-link:hover { color: var(--green-primary); background: var(--green-xlight); }
.transparent-header:not(.scrolled) .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.nav-link.active { color: var(--green-primary); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.transparent-header:not(.scrolled) .menu-toggle span { background: var(--white); }

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover { color: var(--green-primary); }

.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a2a0d 0%,
    #2a3d18 35%,
    #1d3610 60%,
    #111a08 100%
  );
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(67,176,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(46,125,0,0.12) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, #fff 0px, #fff 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, #fff 0px, #fff 1px, transparent 1px, transparent 20px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67,176,0,0.2);
  border: 1px solid rgba(67,176,0,0.4);
  color: #7DCC40;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeInUp 0.6s 0.1s ease both;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0;
}

.hero h1 .accent { color: var(--green-primary); }

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s 0.15s ease both;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s 0.25s ease both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.trust-badge svg { width: 14px; height: 14px; fill: var(--green-primary); flex-shrink: 0; }

.hero-graphic {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  overflow: hidden;
}

.hero-graphic-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,42,13,1) 0%, transparent 40%);
  z-index: 2;
}

.hero-stats {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 32px;
  z-index: 3;
}

.hero-stat {
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span { color: var(--green-primary); }

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  animation: fadeIn 1s 1s both;
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* =====================================================
   FEATURE CARDS (WHY CHOOSE SNT)
   ===================================================== */
.features { padding: var(--section-padding); background: var(--white); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--green-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-primary);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--green-primary);
}

.feature-icon svg {
  width: 28px; height: 28px;
  fill: var(--green-primary);
  transition: fill var(--transition-fast);
}

.feature-card:hover .feature-icon svg { fill: var(--white); }

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   ABOUT PREVIEW
   ===================================================== */
.about-preview {
  padding: var(--section-padding);
  background: var(--gray-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-content .section-eyebrow { margin-bottom: 12px; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: var(--green-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-icon svg { width: 18px; height: 18px; fill: var(--green-primary); }

.value-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.value-text strong { color: var(--text-primary); display: block; margin-bottom: 2px; }

/* =====================================================
   MATERIALS SECTION
   ===================================================== */
.materials { padding: var(--section-padding); background: var(--white); }

.materials-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--gray-light);
  padding: 4px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.material-tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  background: transparent;
}

.material-tab.active {
  background: var(--white);
  color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}

.material-tab:hover:not(.active) { color: var(--text-primary); }

.materials-grid { display: none; }
.materials-grid.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; }

.material-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.material-card:hover {
  background: var(--white);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.material-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-xs);
}

.material-card:hover .material-card-icon {
  background: var(--green-primary);
}

.material-card-icon svg {
  width: 32px; height: 32px;
  fill: var(--gray-dark);
  transition: fill var(--transition-fast);
}

.material-card:hover .material-card-icon svg { fill: var(--white); }

.material-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.material-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works { padding: var(--section-padding); background: var(--green-xlight); }

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(to right, var(--green-primary), var(--green-dark));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step-number-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
}

.step-number-bg {
  width: 96px;
  height: 96px;
  background: var(--white);
  border: 3px solid var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.step-card:hover .step-number-bg {
  background: var(--green-primary);
}

.step-num-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  transition: color var(--transition-fast);
}

.step-card:hover .step-num-text { color: var(--white); }

.step-icon {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.step-icon svg { width: 16px; height: 16px; fill: var(--white); }

.step-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

/* =====================================================
   COMMERCIAL SECTION
   ===================================================== */
.commercial-preview {
  padding: var(--section-padding);
  background: var(--gray-dark);
  position: relative;
  overflow: hidden;
}

.commercial-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(67,176,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(67,176,0,0.08) 0%, transparent 50%);
}

.commercial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.commercial-content .section-eyebrow { color: var(--green-primary); }
.commercial-content .section-eyebrow::before { background: var(--green-primary); }

.commercial-content h2 { color: var(--white); }

.commercial-content p { color: rgba(255,255,255,0.7); }

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.industry-tag:hover {
  background: rgba(67,176,0,0.2);
  border-color: var(--green-primary);
  color: var(--white);
}

.industry-tag svg { width: 14px; height: 14px; fill: var(--green-primary); }

.commercial-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.comm-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition-base);
}

.comm-stat-card:hover {
  background: rgba(67,176,0,0.12);
  border-color: rgba(67,176,0,0.3);
  transform: translateY(-4px);
}

.comm-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.comm-stat-num span { color: var(--green-primary); }

.comm-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* =====================================================
   SERVICE AREAS
   ===================================================== */
.service-areas { padding: var(--section-padding); background: var(--white); }

.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.area-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.area-card:hover {
  background: var(--white);
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.area-icon {
  width: 48px;
  height: 48px;
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.area-card:hover .area-icon { background: var(--green-primary); }

.area-icon svg { width: 24px; height: 24px; fill: var(--green-primary); transition: fill var(--transition-fast); }
.area-card:hover .area-icon svg { fill: var(--white); }

.area-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.area-desc { font-size: 0.82rem; color: var(--text-muted); }

.areas-map-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section { padding: var(--section-padding); background: var(--gray-light); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.faq-question:hover { color: var(--green-primary); }

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.faq-item.open .faq-toggle {
  background: var(--green-primary);
  transform: rotate(45deg);
}

.faq-toggle svg { width: 14px; height: 14px; fill: var(--gray-dark); transition: fill var(--transition-fast); }
.faq-item.open .faq-toggle svg { fill: var(--white); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--gray-border);
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section { padding: var(--section-padding); background: var(--white); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  transition: all var(--transition-fast);
}

.contact-card:hover { border-color: var(--green-primary); box-shadow: var(--shadow-sm); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg { width: 22px; height: 22px; fill: var(--green-primary); }

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-card-value a { color: var(--text-primary); }
.contact-card-value a:hover { color: var(--green-primary); }

/* Contact Form */
.contact-form-wrap {
  background: var(--gray-light);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

/* CONTEXT-AWARE FORM LABEL FIX */
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Dark background form labels (hero section) */
.hero .form-label,
.hero-form-box .form-label,
.commercial-preview .form-label,
.page-hero .form-label,
section[style*="background: var(--gray-dark)"] .form-label,
section[style*="background:var(--gray-dark)"] .form-label {
  color: white;
}

.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(67,176,0,0.15);
}

.form-control::placeholder { color: var(--silver); }

textarea.form-control { resize: vertical; min-height: 120px; }

select.form-control { cursor: pointer; }

/* Hours table */
.hours-table { width: 100%; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.88rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-day { font-weight: 600; color: var(--text-primary); }
.hours-time { color: var(--text-muted); }
.hours-time.open { color: var(--green-primary); font-weight: 600; }
.hours-time.closed { color: #EF4444; }

/* =====================================================
   MAP
   ===================================================== */
.map-section { height: 400px; background: var(--gray-light); }

.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer {
  background: var(--text-primary);
  color: var(--white);
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-name { color: var(--white); margin-bottom: 4px; }
.footer-brand .logo-tagline { color: var(--green-primary); }

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-link:hover { background: var(--green-primary); }

.social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); transition: fill var(--transition-fast); }
.social-link:hover svg { fill: var(--white); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--green-primary); }

.footer-link::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--green-primary);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer-link:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item svg { width: 15px; height: 15px; fill: var(--green-primary); flex-shrink: 0; margin-top: 2px; }

.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--green-primary); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-link:hover { color: var(--green-primary); }

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.floating-call-btn, .floating-dir-btn {
  position: fixed;
  z-index: 900;
  bottom: 100px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}

.floating-call-btn {
  background: var(--green-primary);
  bottom: 164px;
}

.floating-call-btn:hover {
  background: var(--green-dark);
  transform: scale(1.1);
  box-shadow: var(--shadow-green);
}

.floating-dir-btn {
  background: var(--gray-dark);
}

.floating-dir-btn:hover {
  background: var(--black);
  transform: scale(1.1);
}

.floating-call-btn svg, .floating-dir-btn svg {
  width: 24px; height: 24px; fill: var(--white);
}

.floating-call-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green-primary);
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

.back-to-top {
  position: fixed;
  z-index: 900;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-border);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--green-primary); border-color: var(--green-primary); transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; fill: var(--gray-dark); transition: fill var(--transition-fast); }
.back-to-top:hover svg { fill: var(--white); }

/* =====================================================
   SCHEMA / BREADCRUMBS
   ===================================================== */
.breadcrumb {
  padding: 12px 0;
  background: var(--gray-light);
  font-size: 0.82rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-item { color: var(--text-muted); }
.breadcrumb-item a { color: var(--green-primary); }
.breadcrumb-sep { color: var(--silver); font-size: 0.75rem; }

/* =====================================================
   PAGE HERO (INNER PAGES)
   ===================================================== */
.page-hero {
  background: linear-gradient(
    135deg,
    #1a2a0d 0%,
    #2a3d18 35%,
    #1d3610 60%,
    #111a08 100%
  );
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(67,176,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67,176,0,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(67,176,0,0.15) 0%, transparent 60%);
}

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

.page-hero h1 { color: var(--white); margin-bottom: 12px; }

.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; }

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-story { padding: var(--section-padding); background: var(--white); }

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.mission-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.mission-card:hover {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.mission-card-icon {
  width: 64px;
  height: 64px;
  background: var(--green-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.mission-card-icon svg { width: 32px; height: 32px; fill: var(--green-primary); }

.mission-card h3 { margin-bottom: 12px; font-size: 1.2rem; }

.about-commitment {
  background: var(--gray-light);
  padding: var(--section-padding);
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.commitment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-border);
  transition: all var(--transition-fast);
}

.commitment-item:hover { border-color: var(--green-primary); box-shadow: var(--shadow-sm); }

.commitment-icon {
  width: 44px; height: 44px;
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.commitment-icon svg { width: 22px; height: 22px; fill: var(--green-primary); }

.commitment-item h4 { font-size: 1rem; margin-bottom: 6px; }
.commitment-item p { font-size: 0.88rem; margin: 0; }

/* =====================================================
   MATERIALS PAGE
   ===================================================== */
.material-detail-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-border);
}

.material-detail-section:nth-child(even) { background: var(--gray-light); }

.material-detail-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.material-detail-icon-wrap {
  background: var(--green-xlight);
  border-radius: var(--radius-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
}

.material-detail-icon-wrap svg { width: 80px; height: 80px; fill: var(--green-primary); }

.material-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }

.material-tag {
  background: var(--green-xlight);
  color: var(--green-dark);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(67,176,0,0.2);
}

.material-sources ul { list-style: disc; padding-left: 20px; color: var(--text-muted); font-size: 0.9rem; }
.material-sources li { margin-bottom: 4px; }

/* =====================================================
   COMMERCIAL PAGE
   ===================================================== */
.commercial-services {
  padding: var(--section-padding);
  background: var(--white);
}

.service-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid transparent;
  transition: all var(--transition-base);
}

.service-card:hover {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 60px; height: 60px;
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon { background: var(--green-primary); }
.service-icon svg { width: 30px; height: 30px; fill: var(--green-primary); transition: fill var(--transition-fast); }
.service-card:hover .service-icon svg { fill: var(--white); }

.industries-section {
  background: var(--gray-light);
  padding: var(--section-padding);
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: all var(--transition-base);
}

.industry-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.industry-card-icon {
  width: 56px; height: 56px;
  background: var(--green-xlight);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: all var(--transition-base);
}

.industry-card:hover .industry-card-icon { background: var(--green-primary); }
.industry-card-icon svg { width: 28px; height: 28px; fill: var(--green-primary); transition: fill var(--transition-fast); }
.industry-card:hover .industry-card-icon svg { fill: var(--white); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: var(--section-padding);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* =====================================================
   NOTIFICATION / TOAST
   ===================================================== */
.form-success {
  background: var(--green-xlight);
  border: 1px solid rgba(67,176,0,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; fill: var(--green-primary); }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =====================================================
   RESPONSIVE — TABLET (< 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  :root { --section-padding: 72px 0; }

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

  .about-layout,
  .commercial-layout,
  .service-areas .areas-layout { grid-template-columns: 1fr; gap: 48px; }

  .about-image-wrapper { max-width: 480px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .steps-container { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .steps-container::before { display: none; }

  .faq-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .about-mission-grid { grid-template-columns: 1fr 1fr; }

  .material-detail-layout { grid-template-columns: 1fr; }

  .contact-page-layout { grid-template-columns: 1fr; }
}

/* =====================================================
   RESPONSIVE — MOBILE (< 768px)
   ===================================================== */
@media (max-width: 768px) {
  :root { --section-padding: 56px 0; --container-pad: 0 16px; }

  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .header-topbar { display: none; }

  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.5rem); }

  .hero { min-height: 100svh; padding-top: 100px; padding-bottom: 60px; }
  .hero-graphic { display: none; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

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

  .cta-buttons { flex-direction: column; align-items: center; }

  .materials-tabs { flex-wrap: wrap; width: 100%; justify-content: center; }

  .commercial-visual { grid-template-columns: 1fr 1fr; }

  .about-mission-grid, .commitment-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 24px 20px; }

  .section-header { margin-bottom: 40px; }

  .floating-call-btn { width: 48px; height: 48px; bottom: 148px; }
  .floating-dir-btn { width: 48px; height: 48px; }

  .topbar-items { gap: 12px; }

  /* MOBILE RESPONSIVE FIX - Force 1 column on all inline grids */
  section[style*="grid-template-columns"] > div[style*="grid-template-columns"],
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns:repeat(4,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"],
  .grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */
@media print {
  #site-header, .floating-call-btn, .floating-dir-btn, .back-to-top, .mobile-nav { display: none !important; }
  body { font-size: 12pt; }
  a[href]::after { content: " (" attr(href) ")"; }
}

/* =====================================================
   WORDPRESS CORE ALIGNMENT
   ===================================================== */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.wp-caption { max-width: 100%; background: var(--gray-light); border: 1px solid var(--gray-border); padding: 8px; text-align: center; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-muted); margin: 0; padding-top: 8px; }

/* Elementor compatibility */
.elementor-section { width: 100%; }
.e-container { max-width: var(--container-max) !important; }