/* ============================================================
   ConcreterCo — Main Stylesheet (Mobile-First)
   ============================================================ */

@import url('variables.css');
@import url('animations.css');

/* ---- Reset & Base ---------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-navy-light); }

ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

/* ---- Utilities ------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.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;
}

.text-navy   { color: var(--color-navy); }
.text-orange { color: var(--color-orange-dark); }
.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }

.bg-white     { background-color: var(--color-white); }
.bg-light     { background-color: var(--color-bg-light); }
.bg-navy      { background-color: var(--color-navy); }

.section {
  padding: var(--space-16) 0;
}
.section-lg {
  padding: var(--space-24) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-header .eyebrow {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: var(--space-3);
}
.section-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-4);
}
.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Buttons --------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
              background-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-text-dark);
  box-shadow: 0 2px 8px rgba(253,180,104,.35);
}
.btn-primary:hover {
  background-color: var(--color-orange-dark);
  box-shadow: 0 4px 16px rgba(253,180,104,.5);
  color: var(--color-text-dark);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-secondary:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: scale(1.02);
}

.btn-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0,56,144,.2);
}
.btn-navy:hover {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(0,56,144,.3);
  transform: scale(1.02);
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.btn-white:hover {
  background-color: var(--color-bg-light);
  color: var(--color-navy);
  transform: scale(1.02);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: var(--font-size-lg);
  min-height: 56px;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--font-size-sm);
  min-height: 40px;
}

/* ---- Card Base ------------------------------------------- */

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* ---- Badge ------------------------------------------------ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}
.badge-navy {
  background-color: rgba(0,56,144,.08);
  color: var(--color-navy);
}
.badge-orange {
  background-color: rgba(253,180,104,.2);
  color: #b45309;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-logo-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.navbar-logo-text span {
  color: var(--color-orange-dark);
}

/* Desktop nav links */
.navbar-nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  justify-content: center;
}
.navbar-nav a {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-navy);
  border-bottom-color: var(--color-orange);
}

/* Navbar actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.navbar-phone {
  display: none;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  text-decoration: none;
}
.navbar-phone:hover { color: var(--color-navy); }

/* Hamburger */
.navbar-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: none;
  color: var(--color-text-dark);
  transition: background-color var(--transition-fast);
}
.navbar-hamburger:hover { background-color: var(--color-bg-light); }
.navbar-hamburger svg { flex-shrink: 0; }

/* Mobile menu */
.navbar-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) var(--container-pad);
  gap: var(--space-2);
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  box-shadow: var(--shadow-lg);
  z-index: var(--z-dropdown);
}
.navbar-mobile.open {
  display: flex;
  animation: navSlideDown 0.25s ease;
}
.navbar-mobile a {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.navbar-mobile a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-navy);
}
.navbar-mobile .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-2);
}

/* Desktop breakpoint */
@media (min-width: 768px) {
  .navbar-nav { display: flex; }
  .navbar-phone { display: flex; }
  .navbar-hamburger { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1600&q=85');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: var(--space-20) 0 var(--space-16);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,56,144,0.85) 0%, rgba(0,20,60,0.7) 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
  color: white;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,.15);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.3);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: white;
  max-width: 800px;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-orange);
  display: block;
}

.hero-sub {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  line-height: var(--line-height-relaxed);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero .btn-secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255,255,255,.6);
}
.hero .btn-secondary:hover {
  background-color: rgba(255,255,255,.15);
  color: white;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.2);
  width: 100%;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.hero-stat-number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.75);
}

/* ============================================================
   SOCIAL PROOF BAR
   ============================================================ */

.social-proof-bar {
  background: #003890;
  padding: var(--space-4) 0;
}
.social-proof-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}
.social-proof-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
}
.social-proof-item .stars {
  color: var(--color-orange);
  font-size: var(--font-size-base);
  letter-spacing: 0.05em;
}

/* ============================================================
   SERVICE CARD PHOTO HEADERS
   ============================================================ */

.service-card-photo {
  width: calc(100% + var(--space-12));
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) 0;
  display: block;
}

/* ============================================================
   PORTFOLIO GALLERY SECTION
   ============================================================ */

.gallery-section {
  padding: var(--space-16) 0;
  background: var(--color-bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0,56,144,.2);
  color: inherit;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,56,144,.07);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
}
.service-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  flex: 1;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
  margin-top: var(--space-2);
}
.service-card-link svg {
  transition: transform var(--transition-fast);
}
.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   NETWORK SECTION
   ============================================================ */

.network-section {
  background-color: var(--color-bg-light);
}

.network-intro {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .network-intro { grid-template-columns: 1fr 1fr; align-items: center; }
}

.network-intro-text h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-4);
}
.network-intro-text p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.network-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.network-stat-mini {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.network-stat-mini-number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy);
}
.network-stat-mini-label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
}

/* City tags */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.city-tag:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  transform: translateY(-2px);
}
.city-tag svg { color: var(--color-navy); flex-shrink: 0; }
.city-tag:hover svg { color: var(--color-white); }

.network-cta {
  text-align: center;
  margin-top: var(--space-8);
}

/* ============================================================
   WHY CONCRETERCO
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,56,144,.08);
  color: var(--color-navy);
}

.why-card h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}
.why-card p {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-section {
  background-color: var(--color-bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-navy), var(--color-orange));
    z-index: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.process-step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 16px rgba(0,56,144,.25);
  flex-shrink: 0;
}

.process-step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  margin-bottom: var(--space-2);
}

.process-step h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
}
.process-step p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--color-navy);
  padding: var(--space-12) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8) var(--space-6);
  text-align: center;
}

.stat-item {}
.stat-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-orange);
  line-height: 1;
  display: block;
}
.stat-suffix {
  color: var(--color-white);
  opacity: 0.7;
}
.stat-label {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.65);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   LEAD CAPTURE FORM
   ============================================================ */

.form-section {
  background-color: var(--color-white);
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-8);
  max-width: 680px;
  margin: 0 auto;
}

.form-card h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-2);
}
.form-card > p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full-width { grid-column: 1 / -1; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.form-group label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  background-color: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(0,56,144,.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-submit {
  margin-top: var(--space-2);
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-4);
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}
.form-trust-item svg { color: var(--color-navy); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background-color: var(--color-navy);
  color: rgba(255,255,255,.8);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  text-decoration: none;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-text {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.footer-logo-text span { color: var(--color-orange); }

.footer-brand p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: rgba(255,255,255,.6);
  margin-bottom: var(--space-5);
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-lg);
  text-decoration: none;
}
.footer-phone:hover { color: var(--color-orange); }
.footer-phone svg { color: var(--color-orange); }

.footer-col h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col ul a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.footer-col ul a:hover { color: var(--color-orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom p {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.4);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom-links a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.4);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.page-hero {
  background-color: var(--color-bg-light);
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 19px,
      rgba(0,56,144,.03) 19px,
      rgba(0,56,144,.03) 20px
    );
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-border);
}

.page-hero--photo {
  position: relative;
  background-image: none;
  background-color: var(--color-navy-dark);
  padding: var(--space-16) 0;
  border-bottom: none;
}
.page-hero--photo .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}
.page-hero--photo .page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero--photo h1,
.page-hero--photo p,
.page-hero--photo .breadcrumb,
.page-hero--photo .breadcrumb a,
.page-hero--photo .breadcrumb svg {
  color: white;
}
.page-hero--photo .breadcrumb a:hover { color: var(--color-orange); }

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.breadcrumb a {
  color: var(--color-navy);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { color: var(--color-text-muted); }

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
}
.page-hero p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: var(--line-height-relaxed);
}

/* ============================================================
   SERVICES OVERVIEW PAGE
   ============================================================ */

.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-overview-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-overview-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.service-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-overview-card-header {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: var(--space-8) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.service-overview-card-header svg {
  color: var(--color-orange);
  flex-shrink: 0;
}
.service-overview-card-header h3 {
  font-size: var(--font-size-xl);
  color: var(--color-white);
}

.service-overview-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.service-overview-card-body p {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  flex: 1;
}
.service-overview-card-price {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
}
.service-overview-card-price span {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-table th {
  background: var(--color-navy);
  color: var(--color-white);
  padding: var(--space-4) var(--space-6);
  text-align: left;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table td {
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--color-bg-light); }
.pricing-table .price-col {
  font-weight: var(--font-weight-semibold);
  color: var(--color-navy);
}
.pricing-table-wrap {
  overflow-x: auto;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 900px) {
  .service-detail-layout { grid-template-columns: 1fr 340px; }
}

.service-detail-content {}
.service-detail-content h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-4);
  margin-top: var(--space-8);
}
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}
.service-detail-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
}
.service-detail-content ul li svg {
  color: var(--color-navy);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-sidebar {}
.service-sidebar-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.service-sidebar-card h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}
.service-sidebar-price {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  text-align: center;
}
.service-sidebar-price .price-range {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-navy);
}
.service-sidebar-price .price-unit {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.service-sidebar-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-sidebar-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.service-sidebar-feature svg { color: var(--color-navy); flex-shrink: 0; }

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 480px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
}

.location-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  min-height: 72px;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
              border-color var(--transition-base);
}
.location-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0,56,144,.2);
  color: var(--color-navy);
}
.location-card svg {
  color: var(--color-navy);
  flex-shrink: 0;
}
.location-card-info {}
.location-card-city {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  font-size: var(--font-size-base);
}
.location-card-state {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}
.location-card:hover .location-card-city { color: var(--color-navy); }

/* State groupings */
.locations-state-group { margin-bottom: var(--space-10); }
.locations-state-group h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ============================================================
   TRUST BADGES / CERTIFICATIONS
   ============================================================ */

.trust-bar {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6) 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6) var(--space-10);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
}
.trust-item svg { color: var(--color-navy); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0049b8 100%);
  padding: var(--space-16) 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}
.cta-banner p {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,.75);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.testimonial-text {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  font-size: var(--font-size-sm);
  flex-shrink: 0;
}
.testimonial-name { font-weight: var(--font-weight-semibold); font-size: var(--font-size-sm); }
.testimonial-location { font-size: var(--font-size-xs); color: var(--color-text-muted); }

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  transition: background-color var(--transition-fast);
  min-height: 60px;
}
.faq-question:hover { background-color: var(--color-bg-light); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-navy);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-sm);
}
.faq-item.open .faq-answer { display: block; }

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

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.mt-4  { margin-top: var(--space-4); }
.mt-8  { margin-top: var(--space-8); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-8  { margin-bottom: var(--space-8); }
