/* =============================================
   AIR WORKS LLC — Main Stylesheet
   Simple Built Co. | airworksokc.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

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

:root {
  --navy:        #1a2639;
  --navy-dark:   #111b28;
  --sky:         #4a90c4;
  --sky-light:   #6aabdb;
  --amber:       #c8873a;
  --amber-light: #d9a060;
  --off-white:   #f5f3ef;
  --text-mid:    #4a4a4a;
  --text-light:  #888;
  --border:      #e0ddd8;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', 'Segoe UI', Arial, sans-serif;
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--amber);
  padding: 0 5%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.top-bar-item:hover { color: rgba(255,255,255,0.85); }

.top-bar-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.3);
}

.top-bar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: background 0.2s;
}

.top-bar-social a:hover { background: rgba(255,255,255,0.28); }

.top-bar-social svg {
  width: 13px;
  height: 13px;
  fill: #fff;
  stroke: none;
}

/* Top bar review badges — mobile only */
.top-bar-badge {
  display: none;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 3px 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.top-bar-badge:hover { background: rgba(255,255,255,0.22); }

.top-bar-badge-stars {
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
}

.top-bar-badge-label {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}

@media (max-width: 720px) {
  .top-bar-badge {
    display: flex;
  }
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--amber);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex !important;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: #c0d0dc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links > li > a:hover { color: var(--sky-light); }
.nav-links > li > a.active { color: var(--sky-light); }

.nav-cta {
  background: var(--amber) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--amber-light) !important; }

/* Nav review badges */
.nav-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 7px 14px;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 130px;
}

.nav-badge:hover { background: rgba(255,255,255,0.14); }

.nav-badge-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-badge-logo svg {
  display: block;
}

.nav-badge-stars {
  display: flex;
  gap: 1px;
  color: #f5a623;
  font-size: 13px;
  line-height: 1;
}

.nav-badge-text {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   NAV DROPDOWN
   ============================================= */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Arrow hidden on desktop — CSS hover handles dropdown */
.dropdown-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(192,208,220,0.7);
  font-size: 10px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: transform 0.2s;
}

/* Desktop arrow on the link itself */
.nav-dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(192,208,220,0.7);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-top: 1px;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

@media (max-width: 720px) {
  /* Hide CSS arrow on mobile — use button instead */
  .nav-dropdown > a::after { display: none; }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown > a {
    display: inline;
  }

  /* Row containing Services link + arrow button */
  .nav-dropdown-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
  }

  .nav-dropdown.open .dropdown-toggle {
    transform: rotate(180deg);
  }
}



.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  z-index: 200;
  pointer-events: auto;
  /* Transparent top padding acts as a hover bridge — prevents gap closing menu */
  padding-top: 10px;
}

.nav-links .nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* The visible styled box sits inside the padding bridge */
.nav-links .dropdown-menu li {
  display: block;
  margin: 0;
  padding: 0;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  pointer-events: auto;
}

.nav-links .dropdown-menu li:first-child {
  border-top: 2px solid var(--amber);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.nav-links .dropdown-menu li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.nav-links .dropdown-menu li a {
  display: block !important;
  padding: 12px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #c0d0dc !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap;
  background: transparent !important;
  transition: background 0.15s, color 0.15s, padding-left 0.15s !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

.nav-links .dropdown-menu li a:hover {
  background: rgba(74,144,196,0.25) !important;
  color: #fff !important;
  padding-left: 28px !important;
}

/* Mobile dropdown */
@media (max-width: 720px) {
  .nav-links .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    padding-top: 0;
    min-width: unset;
  }

  .nav-links .dropdown-menu li {
    background: rgba(255,255,255,0.04);
    border-left: 2px solid var(--amber);
  }

  .nav-links .dropdown-menu li:first-child {
    border-top: none;
    box-shadow: none;
  }

  .nav-links .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-links .dropdown-menu li a {
    padding: 9px 16px !important;
  }
}


.hero {
  background-color: var(--navy);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 80px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-bg { background-image: url('../images/hvac_unit.jpg'); }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17,27,40,0.93) 45%, rgba(17,27,40,0.72) 100%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(200,135,58,0.15);
  border: 1px solid var(--amber);
  color: var(--amber-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.12;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero h1 em {
  color: var(--sky-light);
  font-style: italic;
}

.hero-sub {
  color: #b0c4d4;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--amber-light); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Barlow', sans-serif;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #c0d4e0;
}

.hero-bullet::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(74,144,196,0.25);
  border: 1px solid var(--sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%236aabdb' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* HERO QUOTE FORM */
.hero-quote-form {
  background: #fff;
  border-radius: 6px;
  padding: 32px 30px 28px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}

.hero-quote-form input,
.hero-quote-form select,
.hero-quote-form textarea,
.hero-quote-form button {
  pointer-events: auto;
  touch-action: manipulation;
}

.hero-quote-form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-align: center;
}

.hero-quote-form .form-tagline {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 22px;
  font-weight: 400;
}

.hero-quote-form .form-group {
  margin-bottom: 12px;
}

.hero-quote-form .form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 5px;
  display: block;
}

.hero-quote-form .form-group input,
.hero-quote-form .form-group select,
.hero-quote-form .form-group textarea {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.hero-quote-form .form-group input::placeholder,
.hero-quote-form .form-group textarea::placeholder {
  color: #bbb;
}

.hero-quote-form .form-group input:focus,
.hero-quote-form .form-group select:focus,
.hero-quote-form .form-group textarea:focus {
  border-color: var(--sky);
  background: #fff;
}

.hero-quote-form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: var(--off-white);
  padding-right: 32px;
  cursor: pointer;
}

.hero-quote-form .form-group select option {
  background: #fff;
  color: var(--navy);
}

.hero-quote-form .quote-submit {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 6px;
}

.hero-quote-form .quote-submit:hover { background: var(--amber-light); }

.hero-quote-form .form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 400;
}

.hero-quote-form .form-secure svg {
  width: 11px;
  height: 11px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Remove old hero-trust styles — replaced by quote form */
.hero-trust { display: none; }



/* =============================================
   SERVICE BAND
   ============================================= */
.service-band {
  background: var(--amber);
  padding: 18px 5%;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-band span {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-band span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* =============================================
   REVIEWS / ELFSIGHT SECTION
   ============================================= */
.reviews-section {
  background: var(--off-white);
  padding: 70px 5%;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.reviews-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.reviews-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 40px;
}

.elfsight-placeholder {
  background: #fff;
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 48px 32px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.elfsight-placeholder .star-row {
  display: flex;
  gap: 4px;
  font-size: 28px;
  margin-bottom: 4px;
}

.elfsight-placeholder p {
  font-size: 14px;
  color: var(--text-light);
  max-width: 400px;
  line-height: 1.6;
}

.elfsight-placeholder code {
  font-size: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 3px;
  color: var(--text-mid);
  font-family: monospace;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
section { padding: 90px 5%; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
}

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

/* =============================================
   SERVICES SECTION (home)
   ============================================= */
#services { background: #fff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: #ddd9d3;
}

.service-card {
  background: #fff;
  padding: 36px 32px;
  transition: background 0.2s;
}

.service-card:hover { background: var(--off-white); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--sky-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.service-link:hover { border-color: var(--sky); }

/* =============================================
   WHY US SECTION
   ============================================= */
#why { background: var(--off-white); }

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

.values-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-left: 3px solid var(--sky);
}

.value-num {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  min-width: 28px;
}

.value-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.value-text p {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 300;
}

.why-quote {
  background: var(--navy);
  color: #fff;
  padding: 48px 44px;
  border-radius: 2px;
  position: relative;
}

.why-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: rgba(74,144,196,0.2);
  position: absolute;
  top: -20px;
  left: 28px;
  line-height: 1;
}

.why-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #d8e8f2;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.why-quote .attribution {
  font-size: 13px;
  color: var(--sky-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.license-badge {
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(74,144,196,0.1);
  border: 1px solid rgba(74,144,196,0.25);
  border-radius: 2px;
  font-size: 13px;
  color: var(--sky-light);
  font-weight: 500;
  line-height: 1.6;
}

.license-badge span {
  font-size: 12px;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}

/* =============================================
   STORY SECTION
   ============================================= */
#story { background: #fff; }

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

.story-sidebar {
  position: sticky;
  top: 90px;
}

.story-stat {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.story-stat:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.story-stat .num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.story-stat .num span { color: var(--amber); }

.story-stat .label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 6px;
}

.story-body p {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-lead {
  font-size: 18px !important;
  color: var(--navy) !important;
  font-weight: 400 !important;
}

.story-closing {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  font-style: italic;
  line-height: 1.6 !important;
}

.andrew-photo-placeholder {
  margin-bottom: 32px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--navy);
  border: 2px dashed rgba(106,171,219,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 240px;
  gap: 12px;
}

.andrew-initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(106,171,219,0.15);
  border: 2px solid rgba(106,171,219,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sky-light);
}

.andrew-caption {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 400;
}

/* =============================================
   CONTACT SECTION (home)
   ============================================= */
#contact {
  background: var(--navy);
  color: #fff;
}

.contact-label { color: var(--amber-light) !important; }
.contact-title { color: #fff !important; }
.contact-sub   { color: #b0c4d4 !important; }

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

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  transition: background 0.2s;
}

.contact-method:hover { background: rgba(255,255,255,0.08); }

.method-icon {
  width: 42px;
  height: 42px;
  background: rgba(74,144,196,0.2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky-light);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.method-info p {
  font-size: 13px;
  color: #8fa8b8;
  font-weight: 300;
}

.method-info a {
  color: var(--sky-light);
  text-decoration: none;
  font-weight: 500;
}

.method-info a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fa8b8;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sky); }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9ab5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

.form-submit {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 4px;
}

.form-submit:hover { background: var(--amber-light); }

/* =============================================
   SERVICE AREAS WITH MAP
   ============================================= */
.areas-section {
  background: var(--navy-dark);
  padding: 60px 5%;
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.areas-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 10px;
}

.areas-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.areas-sub {
  font-size: 15px;
  color: #8fa8b8;
  font-weight: 300;
  margin-bottom: 24px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  font-size: 12px;
  color: #8fa8b8;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}

.area-tag:hover {
  border-color: var(--sky);
  color: var(--sky-light);
}

.areas-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-map {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* =============================================
   PAGE HERO (Services & Contact inner pages)
   ============================================= */
.page-hero {
  background-color: var(--navy-dark);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 5% 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--amber);
}

.page-hero-trucks {
  background-image: url('../images/work_trucks.webp');
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17,27,40,0.82), rgba(17,27,40,0.82));
  z-index: 0;
}

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

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-hero h1 em {
  color: var(--sky-light);
  font-style: italic;
}

.page-hero p {
  font-size: 17px;
  color: #b0c4d4;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* =============================================
   SERVICES PAGE — DETAILED SERVICE BLOCKS
   ============================================= */
.service-block {
  padding: 80px 5%;
  border-bottom: 1px solid var(--border);
}

.service-block:nth-child(even) { background: var(--off-white); }
.service-block:nth-child(odd)  { background: #fff; }
.service-block:last-child { border-bottom: none; }

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.service-block:nth-child(even) .service-block-inner {
  grid-template-columns: 1fr 1fr;
}

.service-block-icon {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-block-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--sky-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-block h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-block-lead {
  font-size: 17px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-block-right p,
.service-block-left p {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-includes { margin-top: 28px; }

.service-includes h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.includes-list li {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 400;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.includes-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 2px;
  background: var(--sky);
  border-radius: 1px;
}

.service-cta-inline {
  display: inline-block;
  margin-top: 32px;
  background: var(--navy);
  color: #fff;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}

.service-cta-inline:hover { background: var(--sky); }

.service-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed rgba(106,171,219,0.2);
  overflow: hidden;
  position: relative;
}

/* When image loads successfully — hide placeholder elements */
.service-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  z-index: 1;
}

/* Show fallback icon/text only when image fails (no-img class added by onerror) */
.service-img-placeholder .placeholder-icon {
  width: 40px;
  height: 40px;
  stroke: rgba(106,171,219,0.25);
  fill: none;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: none;
}

.service-img-placeholder .placeholder-text {
  font-size: 12px;
  color: rgba(106,171,219,0.4);
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  display: none;
}

/* No image loaded — show fallback */
.service-img-placeholder.no-img .placeholder-icon,
.service-img-placeholder.no-img .placeholder-text {
  display: block;
}

/* Services page bottom CTA band */
.services-cta-band {
  background: var(--navy);
  padding: 70px 5%;
  text-align: center;
}

.services-cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
  margin-bottom: 14px;
}

.services-cta-band p {
  font-size: 16px;
  color: #8fa8b8;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.services-cta-band .btn-primary {
  margin-right: 12px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-section {
  background: #fff;
  padding: 90px 5%;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

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

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sky);
  padding: 24px 28px;
  border-radius: 0 4px 4px 0;
}

.contact-info-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
}

.contact-info-card a:hover { color: var(--sky); }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; }
.hours-row .time { font-weight: 300; }

.service-areas-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.service-areas-contact .area-tag {
  font-size: 12px;
  color: var(--text-mid);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  background: #fff;
}

.contact-form-card {
  background: var(--navy);
  padding: 44px 40px;
  border-radius: 6px;
}

.contact-form-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  color: #fff;
  margin-bottom: 6px;
}

.contact-form-card > p {
  font-size: 14px;
  color: #8fa8b8;
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--navy-dark);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.85;
}

.footer-tagline,
.footer-copy {
  font-size: 13px;
  color: #4a6070;
}

/* Simple Built Co. demo banner */
.sbc-banner {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 5%;
  text-align: center;
}

.sbc-banner p {
  font-size: 12px;
  color: #3a5060;
}

.sbc-banner a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 500;
}

.sbc-banner a:hover { text-decoration: underline; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1060px) {
  .service-block-inner,
  .service-block:nth-child(even) .service-block-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 960px) {
  .why-grid          { grid-template-columns: 1fr; gap: 48px; }
  .story-grid        { grid-template-columns: 1fr; gap: 48px; }
  .story-sidebar     { position: static; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .areas-content     { grid-template-columns: 1fr; gap: 40px; }
  .areas-map         { order: -1; }
  .nav-badges        { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 5% 60px;
    gap: 40px;
    overflow: hidden;
  }

  .hero-quote-form {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .top-bar {
    height: auto;
    padding: 8px 5%;
    flex-wrap: wrap;
    gap: 6px;
  }

  .top-bar-left  { flex-wrap: wrap; gap: 8px; }
  .top-bar-divider { display: none; }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 20px 5%;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open  { display: flex !important; }
  .nav-toggle      { display: flex; }
  #navbar          { position: relative; }

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

  .service-band {
    gap: 16px;
    justify-content: flex-start;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-form-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  section { padding: 60px 5%; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .page-hero { padding: 60px 5% 50px; }
  .top-bar-item span.hide-mobile { display: none; }
}
