/*
Theme Name: ActiveBlue
Theme URI: https://activeblue.net
Author: ActiveBlue IT Solutions
Author URI: https://activeblue.net
Description: Professional MSP theme for ActiveBlue IT Solutions — Managed IT, Networking, Security, and more for Miami businesses.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Tags: business, corporate, msp, it-services, professional
Text Domain: activeblue
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:       #0A1628;
  --navy-mid:   #122040;
  --navy-light: #1B3060;
  --blue:       #1E6FDB;
  --blue-light: #3B8EF3;
  --blue-glow:  rgba(30, 111, 219, 0.15);
  --silver:     #CBD5E1;
  --silver-light:#E8EEF7;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text:       #1E293B;
  --text-light: #64748B;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.2);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); letter-spacing: -0.01em; }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 0; }
section.section--tight { padding: 4rem 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,111,219,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-glow);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-heading {
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.section-heading span { color: var(--blue); }
.section-subtext {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 580px;
}
.text-center { text-align: center; }
.text-center .section-subtext { margin: 0 auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  text-decoration: none;
}
.site-logo span { color: var(--blue); }
.site-logo:hover { color: var(--white); }

/* Nav phone */
.nav-phone {
  font-size: 0.85rem;
  color: var(--silver);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone svg { width: 14px; height: 14px; stroke: var(--blue); }

/* Nav menu */
#primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#primary-menu li a {
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}
#primary-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}
#primary-menu li a:hover,
#primary-menu li.current-menu-item a { color: var(--white); }
#primary-menu li a:hover::after,
#primary-menu li.current-menu-item a::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

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

/* Parallax wrapper — all visual layers live here */
.hero-parallax-wrap {
  position: absolute;
  inset: -10%;          /* oversize so parallax shift doesn't reveal edges */
  width: 120%;
  height: 120%;
  pointer-events: none;
  z-index: 0;
}

/* Individual depth layers */
.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

/* Layer 1 — background orbs (slowest parallax) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-orb--1 {
  width: 55%;
  height: 80%;
  right: -5%;
  top: -10%;
  background: radial-gradient(circle, rgba(30,111,219,0.22) 0%, transparent 70%);
  animation: orbDrift1 14s ease-in-out infinite alternate;
}
.hero-orb--2 {
  width: 35%;
  height: 55%;
  left: -5%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(30,111,219,0.1) 0%, transparent 70%);
  animation: orbDrift2 18s ease-in-out infinite alternate;
}
@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.08); }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -25px) scale(1.05); }
}

/* Layer 2 — grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Layer 3 — floating particles */
.hero-particle {
  position: absolute;
  background: var(--blue-light);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0%   { transform: translateY(0px) translateX(0px); opacity: inherit; }
  25%  { transform: translateY(-18px) translateX(8px); }
  50%  { transform: translateY(-8px) translateX(-6px); opacity: inherit; }
  75%  { transform: translateY(-22px) translateX(4px); }
  100% { transform: translateY(0px) translateX(0px); opacity: inherit; }
}

/* Layer 4 — tech shapes */
.hero-shape { position: absolute; }

.hero-ring {
  border-radius: 50%;
  border: 1px solid rgba(30,111,219,0.2);
}
.hero-ring--1 {
  width: 300px; height: 300px;
  right: 8%; top: -80px;
  border-color: rgba(30,111,219,0.18);
  animation: ringRotate 30s linear infinite;
}
.hero-ring--1::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  top: 50%; left: -4px;
  margin-top: -4px;
  box-shadow: 0 0 10px var(--blue);
}
.hero-ring--2 {
  width: 180px; height: 180px;
  right: 18%; top: 30px;
  border-color: rgba(30,111,219,0.12);
  animation: ringRotate 20s linear infinite reverse;
}
.hero-ring--3 {
  width: 80px; height: 80px;
  right: 28%; bottom: 18%;
  border-color: rgba(30,111,219,0.15);
  animation: ringRotate 12s linear infinite;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Tech lines */
.hero-line {
  background: linear-gradient(90deg, transparent, rgba(30,111,219,0.4), transparent);
  height: 1px;
  animation: lineScan 6s ease-in-out infinite;
}
.hero-line--1 {
  width: 200px;
  right: 5%; top: 45%;
  animation-delay: 0s;
}
.hero-line--2 {
  width: 120px;
  right: 22%; top: 60%;
  animation-delay: 2s;
}
@keyframes lineScan {
  0%, 100% { opacity: 0; transform: scaleX(0.2); }
  50%       { opacity: 1; transform: scaleX(1); }
}

/* Nodes */
.hero-node {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(30,111,219,0.8), 0 0 24px rgba(30,111,219,0.3);
  animation: nodePulse 3s ease-in-out infinite;
}
.hero-node--1 { right: 12%; top: 38%; animation-delay: 0s; }
.hero-node--2 { right: 25%; top: 55%; animation-delay: 1s; }
.hero-node--3 { right: 8%;  top: 68%; animation-delay: 2s; }
@keyframes nodePulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.8); opacity: 1; }
}

/* Mouse-tracking glow */
.hero-mouse-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,111,219,0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease-out, top 0.12s ease-out;
  left: 50%; top: 50%;
  filter: blur(20px);
}

/* ============================================================
   HERO CONTENT
   ============================================================ */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0;
}

/* Entrance animations */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroEntrance 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-anim--1 { animation-delay: 0.1s; }
.hero-anim--2 { animation-delay: 0.25s; }
.hero-anim--3 { animation-delay: 0.4s; }
.hero-anim--4 { animation-delay: 0.55s; }
.hero-anim--5 { animation-delay: 0.7s; }
@keyframes heroEntrance {
  to { opacity: 1; transform: translateY(0); }
}

/* Badge pulse dot */
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,142,243,0.6); }
  50%       { box-shadow: 0 0 0 5px rgba(59,142,243,0); }
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: heroEntrance 0.7s 1.3s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(30,111,219,0.9), transparent);
  animation: scrollLineDrop 2s ease-in-out 1.5s infinite;
  transform-origin: top;
  transform: scaleY(0);
}
@keyframes scrollLineDrop {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.hero-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  background: rgba(30,111,219,0.15);
  border: 1px solid rgba(30,111,219,0.3);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  line-height: 1;
}
.hero-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  stroke: var(--blue-light);
  fill: none;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 640px;
}
.hero h1 span {
  color: var(--blue-light);
  position: relative;
}

.hero-sub {
  font-size: 1rem;
  color: var(--silver);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}


/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  min-height: 260px;
  margin-bottom: 1.5rem;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.hero-slide.exit-left {
  opacity: 0;
  transform: translateX(-40px);
  position: absolute;
}
.hero-slide.enter-right {
  opacity: 0;
  transform: translateX(40px);
  position: absolute;
}

/* Badge dot pulse inside slider */
.hero-badge-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: heroPulse 2s ease-in-out infinite;
}

/* Slider controls row */
.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Prev/Next buttons */
.hero-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--silver);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.hero-slider-btn:hover {
  background: rgba(30,111,219,0.25);
  border-color: var(--blue);
  color: var(--white);
}
.hero-slider-btn svg { width: 16px; height: 16px; }

/* Dot indicators */
.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(30,111,219,0.6);
}
.hero-dot:hover:not(.active) { background: rgba(255,255,255,0.4); }

/* Progress bar */
.hero-progress {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.hero-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 1px;
  width: 0%;
  transition: width linear;
  box-shadow: 0 0 6px rgba(30,111,219,0.7);
}

/* ============================================================
   HERO STATS — fixed layout
   ============================================================ */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-stat-row {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  line-height: 1;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-suffix {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  color: var(--silver);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--blue); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 1.25rem; }
.service-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 1.1rem;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.8rem;
}

/* ============================================================
   WHY ACTIVEBLUE
   ============================================================ */
.why-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,111,219,0.12) 0%, transparent 70%);
}
.why-section .section-label { background: rgba(30,111,219,0.2); }
.why-section .section-heading { color: var(--white); }
.why-section .section-subtext { color: var(--silver); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(30,111,219,0.4);
}
.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(30,111,219,0.25);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.why-card p { color: var(--silver); font-size: 0.92rem; }

/* ============================================================
   INDUSTRIES / ABOUT STRIP
   ============================================================ */
.industries-section { background: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.industry-chip:hover {
  background: var(--blue-glow);
  border-color: var(--blue);
  color: var(--blue);
}
.industry-chip svg { width: 20px; height: 20px; stroke: var(--blue); flex-shrink: 0; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: var(--silver);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo { display: inline-block; margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-400); max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: var(--gray-400); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  color: var(--gray-400);
}
.footer-contact-item svg { width: 15px; height: 15px; stroke: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--gray-400); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray-400); margin: 0; }
.footer-bottom a { color: var(--gray-400); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: var(--silver); font-size: 1.1rem; max-width: 600px; }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--gray-400);
  font-size: 0.9rem;
  border: 2px dashed var(--silver-light);
}
.about-image-placeholder svg { width: 48px; height: 48px; stroke: var(--silver); }
.about-text .section-label { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  text-align: center;
}
.value-card svg { width: 36px; height: 36px; stroke: var(--blue); margin: 0 auto 1rem; display: block; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--silver-light);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.service-detail-icon {
  background: var(--blue-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}
.service-detail-icon svg { width: 56px; height: 56px; stroke: var(--blue); margin: 0 auto 1rem; display: block; }
.service-detail-icon h3 { color: var(--navy); font-size: 1.1rem; }
.service-detail-content h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.service-detail-content p { margin-bottom: 1rem; }
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.5rem 0;
}
.service-feature svg { width: 16px; height: 16px; stroke: var(--blue); flex-shrink: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-detail h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 0.25rem; }
.contact-detail p, .contact-detail a { color: var(--navy); font-weight: 600; font-size: 1rem; margin: 0; }
.contact-detail a:hover { color: var(--blue); }

.contact-form-wrap {
  background: var(--gray-50);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; font-size: 0.92rem; }

/* CF7 form styling */
.wpcf7 .form-row { margin-bottom: 1.25rem; }
.wpcf7 label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 .form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 0.9rem 1.75rem;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.wpcf7 input[type="submit"]:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,111,219,0.35);
}
.wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   GLOBAL SVG ICON SIZE GUARD
   ============================================================ */
li > svg:first-child,
.trust-item svg,
.footer-contact-item svg,
.nav-phone svg,
.service-card ul li svg,
.service-feature svg {
  width: 15px !important;
  height: 15px !important;
  min-width: 15px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}


/* ============================================================
   SOUTH FLORIDA MAP — SVG inline sizing
   ============================================================ */
.south-florida-map svg,
.container svg[viewBox="0 0 500 600"] {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {

  .about-intro,
  [style*="grid-template-columns:1fr 1.1fr"] {
    grid-template-columns: 1fr !important;
  }

  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 1rem 1.25rem; }

  #primary-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  #primary-menu.open { display: flex; }
  #primary-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  #primary-menu li a { display: block; padding: 0.9rem 0; }
  #primary-menu li a::after { display: none; }
  .nav-cta { margin-left: 0; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 70vh; }
  .hero-stats { gap: 1.5rem; }
  .trust-item { padding: 0.5rem 1rem; font-size: 0.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-features { grid-template-columns: 1fr; }
  .wpcf7 .form-row-half { grid-template-columns: 1fr; }
}

/* ============================================================
   REDUCED MOTION — Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-orb--1, .hero-orb--2,
  .hero-particle,
  .hero-ring--1, .hero-ring--2, .hero-ring--3,
  .hero-line--1, .hero-line--2,
  .hero-node--1, .hero-node--2, .hero-node--3,
  .hero-scroll-line,
  .hero-anim,
  .ab-fade {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
