/* ============================================================
   OUTLAWS GLASS & DOOR — Master Stylesheet
   Brand: Bold, trustworthy, local, industrial-meets-modern
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --red:          #C8102E;
  --red-dark:     #9E0B23;
  --red-light:    #E8284A;
  --charcoal:     #1A1A1A;
  --charcoal-2:   #2B2B2B;
  --charcoal-3:   #3D3D3D;
  --steel:        #4A5568;
  --steel-light:  #718096;
  --silver:       #E2E8F0;
  --silver-light: #F7F8FA;
  --white:        #FFFFFF;
  --gold:         #D4A017;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
  --shadow-md: 0 4px 16px rgba(0,0,0,.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.20);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.30);

  --radius:    6px;
  --radius-lg: 12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);

  --nav-h: 80px;
}

/* ─── 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(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--steel); line-height: 1.75; }

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

/* ─── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,16,46,.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.divider-red {
  width: 60px; height: 4px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ─── Top Bar ───────────────────────────────────────────────── */
#top-bar {
  background: var(--charcoal);
  color: var(--silver);
  font-size: .82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--charcoal-2);
}
#top-bar .top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
#top-bar a { color: var(--silver); }
#top-bar a:hover { color: var(--red-light); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item i { color: var(--red); font-size: .9rem; }

/* ─── Navigation ────────────────────────────────────────────── */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
#main-nav.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Keep the logo crisp on retina displays */
  image-rendering: -webkit-optimize-contrast;
  transition: opacity 0.2s ease;
}
.nav-logo-img:hover { opacity: 0.88; }
/* Footer logo slightly larger for breathing room */
.footer-brand .nav-logo-img {
  height: 80px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
/* Legacy icon styles kept as fallback */
.nav-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon i { color: var(--white); font-size: 1.4rem; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.nav-logo-text .brand-tagline {
  font-size: .72rem;
  color: var(--steel-light);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--red); background: rgba(200,16,46,.06); }
.nav-link i { font-size: .7rem; transition: transform var(--transition); }
.nav-item.open > .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
  z-index: 200;
}
.dropdown.wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
/* Click-open state (replaces hover) */
.nav-item.open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  top: calc(100% + 4px);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--charcoal);
  font-size: .9rem;
  transition: all var(--transition);
}
.dropdown-link:hover { background: rgba(200,16,46,.06); color: var(--red); }
.dropdown-link i { color: var(--red); width: 16px; text-align: center; font-size: .85rem; }

.nav-cta { margin-left: 8px; }
.nav-cta a { font-size: .9rem; padding: 10px 22px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/job-bus-windshield-tech.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(26,26,26,.92) 45%, rgba(200,16,46,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,.15);
  border: 1px solid rgba(200,16,46,.4);
  color: var(--red-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: .8rem;
  font-family: var(--font-heading);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge i { font-size: .75rem; }
.hero h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--red-light); }
.hero .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ─── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--red);
  padding: 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
}
.trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--red-dark); }
.trust-item i { font-size: 1.5rem; color: var(--white); }
.trust-item-text .trust-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .03em;
}
.trust-item-text .trust-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
}

/* ─── Services Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.6), transparent 60%);
}
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 52px; height: 52px;
  background: rgba(200,16,46,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card-icon i { color: var(--red); font-size: 1.3rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; margin-bottom: 18px; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-card .learn-more i { transition: transform var(--transition); }
.service-card:hover .learn-more i { transform: translateX(4px); }

/* ─── Why Choose Us ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  background: var(--silver-light);
  border: 1px solid var(--silver);
  transition: all var(--transition);
}
.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(200,16,46,.3);
}
.why-icon i { color: var(--white); font-size: 1.8rem; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: .88rem; }

/* ─── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.3) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.2) 0%, transparent 70%);
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 64px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 520px; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: rgba(200,16,46,.1);
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars i { color: #F59E0B; font-size: .9rem; }
.testimonial-text { font-size: .95rem; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.author-location { font-size: .78rem; color: var(--steel-light); }

/* ─── Service Areas Map Section ─────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--silver-light);
  border: 1px solid var(--silver);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--charcoal);
  transition: all var(--transition);
  text-decoration: none;
}
.area-chip:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}
.area-chip i { color: var(--red); font-size: .75rem; }
.area-chip:hover i { color: var(--white); }

/* ─── Footer ────────────────────────────────────────────────── */
#main-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand .nav-logo .brand-name { color: var(--white); }
.footer-brand .nav-logo .brand-tagline { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  font-size: .9rem;
}
.social-link:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--red-light); padding-left: 4px; }
.footer-links a i { font-size: .7rem; color: var(--red); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--red-light); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--red-light); }

/* ─── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--charcoal);
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.35);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,.9) 40%, transparent);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb i { font-size: .65rem; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; font-size: 1.05rem; }

/* ─── City Page Specifics ───────────────────────────────────── */
.city-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.city-service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--silver-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  transition: all var(--transition);
}
.city-service-item:hover { background: var(--white); box-shadow: var(--shadow-md); }
.city-service-item i { color: var(--red); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.city-service-item h4 { font-size: 1rem; margin-bottom: 4px; }
.city-service-item p { font-size: .85rem; }

.city-nearby { display: flex; flex-wrap: wrap; gap: 10px; }
.city-nearby a {
  padding: 7px 16px;
  background: var(--silver-light);
  border: 1px solid var(--silver);
  border-radius: 30px;
  font-size: .85rem;
  color: var(--charcoal);
  transition: all var(--transition);
}
.city-nearby a:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ─── Process Steps ─────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  top: 60px;
  right: -1px;
  width: 2px;
  height: 40px;
  background: var(--silver);
}
.step:last-child::after { display: none; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(200,16,46,.35);
}
.step h4 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: .88rem; }

/* ─── Gallery Grid ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item.wide  { grid-column: span 2; }
.gallery-item.tall  { grid-row:    span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(26,26,26,.5); }
.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(.7);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }

/* ─── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--silver);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--charcoal);
  transition: color var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--red); }
.faq-question i { color: var(--red); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner { padding: 0 0 20px; font-size: .95rem; color: var(--steel); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── Contact Form ──────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  border: 1px solid var(--silver);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--silver);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--silver-light);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Validation error states ── */
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #DC2626;
  background: #FFF5F5;
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}
.form-group.has-error label { color: #DC2626; }
.field-error {
  display: block;
  margin-top: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: #DC2626;
  letter-spacing: .02em;
}
.field-error::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 5px;
}

/* ── Top-level send error banner ── */
.form-error-banner {
  background: #FEE2E2;
  border: 1.5px solid #FCA5A5;
  border-radius: var(--radius);
  color: #991B1B;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success i { font-size: 3rem; color: #22C55E; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }

/* ─── Info Card ─────────────────────────────────────────────── */
.info-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.info-card h3 { color: var(--white); margin-bottom: 24px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.info-row:last-of-type { border-bottom: none; margin-bottom: 0; }
.info-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon i { color: var(--white); font-size: .95rem; }
.info-label { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.info-value { color: rgba(255,255,255,.9); font-size: .95rem; }
.info-value a { color: rgba(255,255,255,.9); }
.info-value a:hover { color: var(--red-light); }

/* ─── Dark Section ──────────────────────────────────────────── */
.section-dark {
  background: var(--charcoal);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }

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

/* ─── Mobile Menu ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    overflow-y: auto;
    gap: 0;
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
  }
  .nav-overlay.open { display: block; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--silver); border-radius: 0; }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--silver-light);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 0;
    display: none;
    min-width: auto;
    grid-template-columns: 1fr;
  }
  .dropdown.mobile-open { display: block; }
  .dropdown.wide { display: none; }
  .dropdown.wide.mobile-open { display: block; }
  .dropdown-link { padding: 12px 16px; }
  .nav-cta { margin: 16px 0 0; width: 100%; }
  .nav-cta a { width: 100%; justify-content: center; }
  .hamburger { display: flex; z-index: 1001; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-stats { gap: 24px; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner p { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .top-bar-right { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .trust-item { flex: 0 0 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stat-num { font-size: 1.8rem; }
}

/* ─── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Prevent invisible content for users with JS disabled or slow load */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
