/* ===================================================
   AMPACITY INDUSTRIAL ELECTRICAL
   Main Stylesheet
   =================================================== */

/* ========== CSS VARIABLES ========== */
:root {
  --navy:         #0a1628;
  --navy-mid:     #1a2f4e;
  --navy-light:   #1e3a5f;
  --blue:         #2c5282;
  --orange:       #e85d04;
  --orange-light: #f97316;
  --orange-pale:  #fff3e0;
  --grey-dark:    #2d3748;
  --grey-mid:     #4a5568;
  --grey:         #718096;
  --grey-light:   #e2e8f0;
  --grey-pale:    #f7fafc;
  --white:        #ffffff;
  --text:         #1a202c;
  --text-muted:   #4a5568;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow:     0 4px 6px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 25px rgba(0,0,0,.15), 0 4px 6px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.2);

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: .25s ease;
  --transition-slow: .4s ease;

  --max-w: 1200px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; word-wrap: break-word; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { line-height: 1.75; color: var(--text-muted); word-wrap: break-word; overflow-wrap: break-word; }

.lead { font-size: 1.15rem; line-height: 1.8; }

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

.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 20px;
  margin-bottom: .85rem;
  border: 1px solid rgba(232,93,4,.2);
}

.section-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 2px;
  margin: 1rem auto 0;
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-orange { color: var(--orange); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232,93,4,.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,93,4,.45);
}

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

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: .5rem 1.2rem;
  font-size: .875rem;
}

/* ========== HEADER / NAVIGATION ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: transparent;
  z-index: 1000;
  transition: all var(--transition-slow);
}

.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  height: 64px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.05em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(232,93,4,.4);
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
  animation: logo-shine 3s infinite;
}

@keyframes logo-shine {
  0%, 100% { transform: translateX(-100%) translateY(-100%); }
  50% { transform: translateX(50%) translateY(50%); }
}

.logo-text { line-height: 1.15; }
.logo-text .logo-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .03em;
}
.logo-text .logo-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
  color: var(--white) !important;
  padding: .5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(232,93,4,.3);
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(232,93,4,.45) !important;
  transform: translateY(-1px);
  background: rgba(255,255,255,.1) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu is hidden by default — only shown on small screens */
.mobile-menu { display: none; }

/* ========== PAGE BANNER ========== */
.page-banner {
  background:
    linear-gradient(135deg, rgba(10,22,40,.88) 0%, rgba(26,47,78,.82) 50%, rgba(30,58,95,.80) 100%),
    url('../images/cities.jpg') center/cover no-repeat;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(232,93,4,.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(232,93,4,.08) 0%, transparent 60%);
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner h1 { color: var(--white); margin-bottom: .75rem; }

.page-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

.breadcrumbs a { color: var(--orange); }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span::before { content: '/'; margin-right: .5rem; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,40,.96) 0%, rgba(26,47,78,.9) 60%, rgba(30,58,95,.85) 100%),
    url('../images/electrical.jpg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232,93,4,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(44,82,130,.3) 0%, transparent 50%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,93,4,.15);
  border: 1px solid rgba(232,93,4,.3);
  color: var(--orange-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero h1 .highlight {
  color: var(--orange-light);
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat .value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat .value span { color: var(--orange-light); }

.hero-stat .label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
  animation: scroll-drop 1.5s infinite;
}

@keyframes scroll-drop {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--navy-mid);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* ========== SERVICES OVERVIEW ========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--orange-pale), #ffe4c4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: all var(--transition);
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.service-card h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.service-card p { font-size: .9rem; }

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-size: .875rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: gap var(--transition);
}

.service-card:hover .service-link { gap: .7rem; }

/* ========== WHY CHOOSE US ========== */
.why-us { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }

.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.why-us-content h2 { color: var(--white); margin-bottom: 1rem; }
.why-us-content p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,93,4,.15);
  border: 1px solid rgba(232,93,4,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.why-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-feature-text h4 { color: var(--white); margin-bottom: .3rem; }
.why-feature-text p { font-size: .9rem; color: rgba(255,255,255,.6); }

.why-us-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(232,93,4,.3);
  transform: scale(1.03);
}

.why-card:first-child {
  grid-column: 1 / -1;
  background: rgba(232,93,4,.1);
  border-color: rgba(232,93,4,.2);
}

.why-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-light);
  display: block;
  line-height: 1;
}

.why-card .lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .3rem;
}

/* ========== INDUSTRIES INTRO GRID ========== */
.industries-intro-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.25rem;
}

.industry-intro-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.industry-intro-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(232,93,4,.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

/* ========== INDUSTRIES ========== */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

.industry-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  background: var(--white);
  transition: all var(--transition-slow);
  cursor: default;
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  width: 56px;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius);
  overflow: hidden;
}

.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card h4 { font-size: .95rem; color: var(--navy); }

.industry-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.industry-card:hover h4 { color: var(--white); }

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.1) 0%, transparent 50%);
}

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

/* ========== ABOUT ========== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

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

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
}

.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
}

.about-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-badge .badge-text {
  font-size: .75rem;
  font-weight: 500;
  opacity: .9;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.about-text .section-tag { display: inline-block; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; }

.about-check-list { margin-top: 1.5rem; }

.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}

.check-icon {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .15rem;
  font-size: .7rem;
  color: var(--white);
}

/* Mission / Vision / Values */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.mvv-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.mvv-card.mission { background: var(--navy); }
.mvv-card.vision { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.mvv-card.values { background: var(--grey-pale); border: 1px solid var(--grey-light); }

.mvv-card .mvv-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}

.mvv-card .mvv-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvv-card.mission h3,
.mvv-card.mission p { color: var(--white); }
.mvv-card.vision h3 { color: var(--white); }
.mvv-card.vision p { color: rgba(255,255,255,.9); }

.mvv-card h3 { margin-bottom: .75rem; }

.values-list { margin-top: .75rem; }
.values-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
  font-weight: 500;
}

.values-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Team / Stats */
.stats-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 4rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-item .num span { color: var(--orange-light); }

.stat-item p {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .4rem;
}

/* ========== SERVICES PAGE ========== */
.services-list-section { background: var(--grey-pale); }

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
  transition: all var(--transition-slow);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(232,93,4,.2);
}

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.service-detail-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: var(--white);
  overflow: hidden;
}

.service-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-header h3 { font-size: 1.2rem; color: var(--navy); }

.service-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }

.service-tag {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 20px;
  border: 1px solid rgba(232,93,4,.2);
}

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(232,93,4,.4);
}

.process-step h4 { margin-bottom: .5rem; }
.process-step p { font-size: .875rem; }

/* ========== PRODUCTS PAGE ========== */
.products-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .5rem 1.25rem;
  border-radius: 25px;
  border: 2px solid var(--grey-light);
  background: var(--white);
  color: var(--text-muted);
  font-size: .875rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-color: transparent;
}

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--grey-pale), var(--grey-light));
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img .product-category-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--navy);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-body { padding: 1.25rem; }
.product-body h4 { font-size: 1rem; margin-bottom: .4rem; }
.product-body p { font-size: .85rem; margin-bottom: 1rem; }

.product-body .btn-sm {
  width: 100%;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
}

.product-body .btn-sm:hover {
  background: var(--orange);
  color: var(--white);
}

/* Categories */
.categories-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.category-chip {
  background: var(--white);
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.category-chip .cat-icon { font-size: 2rem; margin-bottom: .6rem; display: block; }
.category-chip .cat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto .6rem;
  border-radius: 12px;
  overflow: hidden;
}

.category-chip .cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-chip .cat-name { font-size: .875rem; font-weight: 700; color: var(--navy); }
.category-chip .cat-count { font-size: .75rem; color: var(--grey); margin-top: .2rem; }

.category-chip:hover, .category-chip.active {
  border-color: var(--orange);
  background: var(--orange-pale);
}

/* ========== INDUSTRIES PAGE ========== */
.industries-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.industry-detail-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: all var(--transition-slow);
  background: var(--white);
}

.industry-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.industry-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.industry-card-icon { font-size: 2.5rem; }
.industry-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}

.industry-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card-header h3 { color: var(--white); font-size: 1.15rem; }
.industry-card-header p { color: rgba(255,255,255,.65); font-size: .85rem; margin-top: .25rem; }

.industry-card-body { padding: 1.5rem; }

.industry-services-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-muted);
  padding: .35rem 0;
  border-bottom: 1px solid var(--grey-light);
}

.industry-services-list li:last-child { border-bottom: none; }
.industry-services-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

/* ========== CONTACT PAGE ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  color: var(--white);
}

.contact-info-card h3 { color: var(--white); margin-bottom: .75rem; }
.contact-info-card .lead { color: rgba(255,255,255,.7); margin-bottom: 2rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(232,93,4,.15);
  border: 1px solid rgba(232,93,4,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Industrial icon color system for contact metadata */
.contact-item-icon.icon-phone {
  background: rgba(249,115,22,.2);
  border-color: rgba(249,115,22,.5);
  color: var(--orange-light);
}

.contact-item-icon.icon-email {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
  color: #f8fafc;
}

.contact-item-icon.icon-location {
  background: rgba(30,58,95,.45);
  border-color: rgba(148,163,184,.45);
  color: #bfdbfe;
}

.contact-item-icon.icon-hours {
  background: rgba(74,85,104,.35);
  border-color: rgba(148,163,184,.45);
  color: #e2e8f0;
}

.contact-item-icon.icon-whatsapp {
  background: rgba(37,211,102,.22);
  border-color: rgba(37,211,102,.5);
  color: #25D366;
}

.contact-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline-icon-photo {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

.chip-photo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: cover;
  vertical-align: middle;
  margin-right: .35rem;
}

.contact-item h4 {
  color: var(--white);
  font-size: .875rem;
  margin-bottom: .2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-item p, .contact-item a {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

.contact-item a:hover { color: var(--orange-light); }

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-card h3 { margin-bottom: .5rem; }
.contact-form-card > p { margin-bottom: 2rem; font-size: .95rem; }

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

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,93,4,.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #22543d;
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

/* Map */
.map-section { background: var(--grey-pale); }

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  text-align: center;
  position: relative;
}

.map-container iframe {
  width: 100%; height: 100%;
  border: none;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-contact-quick a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: color var(--transition);
}

.footer-contact-quick a:hover { color: var(--orange-light); }

.footer-col h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a::before { content: '›'; color: var(--orange); font-size: 1rem; }
.footer-links a:hover { color: var(--white); padding-left: .3rem; }

.newsletter-form {
  display: flex;
  gap: .5rem;
  margin-top: .25rem;
}

.newsletter-form input {
  flex: 1;
  padding: .65rem 1rem;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-size: .875rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }

.newsletter-form input:focus {
  border-color: var(--orange);
}

.newsletter-form button {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  padding: .65rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .875rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232,93,4,.4);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer-bottom p { font-size: .8rem; }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--orange-light); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: .85rem 1.25rem .85rem .85rem;
  box-shadow: 0 6px 25px rgba(37,211,102,.4);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  animation: float-in .5s ease .5s backwards;
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-float svg {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37,211,102,.5);
}

.whatsapp-float .wa-text { white-space: nowrap; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.1);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .grid-4, .products-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-intro-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-strip { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }

  .nav-toggle { display: flex; }

  .mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu a {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    padding: .75rem 2rem;
    border-radius: var(--radius);
    transition: all var(--transition);
  }

  .mobile-menu a:hover, .mobile-menu a.active {
    background: rgba(255,255,255,.1);
    color: var(--orange-light);
  }

  .mobile-menu .nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-light)) !important;
    margin-top: .5rem;
  }

  .services-grid, .grid-3, .mvv-grid { grid-template-columns: 1fr 1fr; }
  .grid-2, .about-intro-grid, .why-us-grid, .contact-grid { grid-template-columns: 1fr; }
  .industries-intro-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .why-us-visual { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .industries-intro-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
  .industry-intro-card { padding: 1.5rem 1rem; }
  .industry-intro-card .num { font-size: 2rem; }
  .industry-intro-card .lbl { font-size: 0.8rem; }

  .hero h1 { font-size: 2rem; }
  .page-banner h1 { font-size: 2rem; }
  .section-header h2 { font-size: 1.75rem; }

  .container { padding: 0 1.25rem; }
  .btn { white-space: normal; text-align: center; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 5rem 0; }
  .section-sm { padding: 2.5rem 0; }

  .services-grid, .grid-3, .grid-4, .products-grid,
  .industries-grid, .mvv-grid, .industries-detail-grid,
  .categories-strip, .process-steps, .stats-row { grid-template-columns: 1fr; }

  .industries-intro-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
  .industry-intro-card { padding: 1.25rem 1rem; min-height: 100px; }
  .industry-intro-card .num { font-size: 1.75rem; }
  .industry-intro-card .lbl { font-size: 0.75rem; line-height: 1.3; }

  .hero h1 { font-size: 1.75rem; line-height: 1.2; }
  .hero .lead { font-size: 1rem; }
  .page-banner h1 { font-size: 1.75rem; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }

  .btn { padding: .85rem 1.5rem; font-size: .9rem; white-space: normal; text-align: center; }
  .btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }

  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { text-align: center; }
  .footer-col { text-align: center; }
  .footer-links { display: flex; flex-direction: column; align-items: center; }
  .footer-contact-quick { flex-direction: column; gap: .75rem; align-items: center; }

  .footer-bottom {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
    justify-content: center;
    padding-top: 1.5rem;
  }
  .footer-bottom p { margin: 0; }

  .form-row { grid-template-columns: 1fr; }
  .about-badge { bottom: -1rem; right: 0; }
  .trust-bar-inner { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
  .trust-bar-inner svg { max-width: 100px; }

  .whatsapp-float { bottom: 1rem; right: 1rem; }
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float { padding: .85rem; border-radius: 50%; }
  .back-to-top { left: 1rem; bottom: 1rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-item { padding: 1rem 0; }
  .contact-form-card { padding: 1.5rem !important; }

  .product-card { padding: 1.25rem; }
  .industry-detail-card { padding: 1.5rem; }
  .service-card { padding: 1.75rem; }

  .container { padding: 0 1rem; }

  .page-banner { padding: 5rem 0 3rem; }
  .breadcrumbs { font-size: .85rem; }

  table { font-size: .875rem; }

  .logo-text { font-size: .9rem; }
  .logo-name { font-size: 1rem; }
  .logo-sub { font-size: .7rem; }
}

/* ========== EXTRA SMALL SCREENS ========== */
@media (max-width: 400px) {
  .industries-intro-grid { gap: 0.5rem; }
  .industry-intro-card { padding: 1rem 0.75rem; min-height: 90px; }
  .industry-intro-card .num { font-size: 1.5rem; }
  .industry-intro-card .lbl { font-size: 0.7rem; }

  .hero h1 { font-size: 1.5rem; }
  .page-banner h1 { font-size: 1.5rem; }
  .section-header h2 { font-size: 1.35rem; }

  .btn { padding: .75rem 1.25rem; font-size: .85rem; }
  .btn-lg { padding: .9rem 1.5rem; font-size: .95rem; }

  .container { padding: 0 0.75rem; }
  .contact-form-card { padding: 1.25rem !important; gap: 1rem !important; }

  .logo-icon { width: 32px; height: 32px; font-size: 1rem; }
  .logo-name { font-size: .9rem; }
  .logo-sub { font-size: .65rem; }
}
