/* ============================================
   NESBITT ELECTRIC - STYLES.CSS
   Adapted from the local service template with
   electric blue and warm safety accents.
   ============================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/fonts/oswald-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #2D2D2D;
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.eyebrow {
  display: inline-block;
  color: #1f4fbf;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.site-header {
  border-bottom: 3px solid #1f4fbf;
}

.hero-bg {
  opacity: 0.36;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  background: #FFFFFF;
  border-left: 4px solid #1f4fbf;
  color: #111827;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.testimonial-card p {
  color: #111827;
  font-size: 1.05rem;
  font-weight: 600;
}

.testimonial-card cite {
  align-self: flex-end;
  color: #1f4fbf;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: auto;
  text-transform: uppercase;
}

.content-list {
  list-style: disc;
  margin: 0 0 1.5rem 1.25rem;
}

.content-list li {
  margin-bottom: 0.5rem;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
}

.split-content img {
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.image-credit {
  color: #555;
  font-size: 0.78rem;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .split-content {
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hidden-field {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: #1f4fbf;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #173b8f;
}

.btn-secondary {
  background-color: transparent;
  color: #1f4fbf;
  border: 2px solid #1f4fbf;
}

.btn-secondary:hover {
  background-color: #1f4fbf;
  color: #FFFFFF;
}

.hero .btn-secondary {
  display: none;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

@media (max-width: 768px) {
  .hero .btn-secondary {
    display: inline-block;
  }
}

.hero .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1A1A1A;
}

.btn-urgent {
  background-color: #1f4fbf;
  color: #FFFFFF;
}

.btn-urgent:hover {
  background-color: #173b8f;
}

.btn-phone {
  background-color: #1f4fbf;
  color: #FFFFFF;
}

.btn-phone:hover {
  background-color: #173b8f;
}

.hero .btn-phone {
  font-size: 1.3rem;
  padding: 16px 40px;
  letter-spacing: 1px;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  padding: 12px 0;
  transition: transform 0.3s ease;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.header-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  line-height: 1.05;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f4fbf;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: #1f4fbf;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1A1A1A;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  transition: opacity 0.25s ease;
  letter-spacing: 0.3px;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.nav-menu a.active {
  color: #1f4fbf;
}

/* === MOBILE NAV === */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 8px 0;
  }

  .header-phone-desktop {
    display: none;
  }
}

@media (min-width: 769px) {
  .header-phone-mobile {
    display: none;
  }
}

/* === HOMEPAGE HERO (Full dramatic - only for index.html) === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background-color: #1A1A1A;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0.35;
}

@media (max-width: 768px) {
  .hero-bg {
    background-size: cover;
    background-position: center 45%;
  }
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

@media (min-width: 769px) {
  .hero {
    justify-content: flex-start;
    padding-left: max(40px, calc((100vw - 1200px) / 2 + 20px));
    padding-right: 40px;
  }

  .hero-content {
    text-align: left;
    max-width: 760px;
  }

  .hero .subheadline {
    max-width: 620px;
  }

  .hero .hero-ctas {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.hero .subheadline {
  color: #CCCCCC;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 600px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }
}

/* === COMPACT INNER PAGE HEADER (About, Services, Contact) === */
.page-header-compact {
  background-color: #1A1A1A;
  padding: 120px 20px 50px;
  text-align: center;
  border-bottom: 4px solid #1f4fbf;
}

.page-header-compact h1 {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-header-compact .subheadline {
  color: #AAAAAA;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* === MEDIUM HERO (Dedicated service pages) === */
.hero-medium {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2a3a1a 100%);
  overflow: hidden;
}

.hero-medium .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-medium h1 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.hero-medium .subheadline {
  color: #CCCCCC;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* === TRUST BAR === */
.trust-bar {
  background-color: #F5F5F0;
  padding: 30px 20px;
  border-bottom: 3px solid #1f4fbf;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-item strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1A1A1A;
}

/* === SECTIONS === */
.section {
  padding: 80px 20px;
}

.section-dark {
  background-color: #1A1A1A;
  color: #FFFFFF;
  position: relative;
}

/* Subtle dot pattern overlay on dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(122, 140, 60, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.section-dark h2,
.section-dark h3 {
  color: #FFFFFF;
}

.section-dark p {
  color: #CCCCCC;
}

.section-light {
  background-color: #F5F5F0;
}

.section-white {
  background-color: #FFFFFF;
}

.section-accent {
  background-color: #2a3a1a;
  color: #FFFFFF;
}

.section-accent h2,
.section-accent h3 {
  color: #FFFFFF;
}

.section-accent p {
  color: #CCCCCC;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: #1A1A1A;
}

.section-dark .section-header h2,
.section-accent .section-header h2 {
  color: #FFFFFF;
}

.section-header p {
  max-width: 600px;
  margin: 0.5rem auto 0;
  color: #666;
}

.final-cta {
  margin-bottom: 0;
}

.final-cta .hero-ctas {
  margin-top: 24px;
}

.section-dark .section-header p,
.section-accent .section-header p {
  color: #AAAAAA;
}

.section-dark .testimonial-card,
.section-accent .testimonial-card,
.section-dark .review-card,
.section-accent .review-card {
  color: #111827;
}

.section-dark .testimonial-card p,
.section-accent .testimonial-card p,
.section-dark .review-card blockquote,
.section-accent .review-card blockquote {
  color: #111827;
}

.section-dark .testimonial-card cite,
.section-accent .testimonial-card cite,
.section-dark .review-card .reviewer,
.section-accent .review-card .reviewer {
  color: #173b8f;
}

/* === SECTION DIVIDER === */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, #1f4fbf, transparent);
  border: none;
  margin: 0;
}

/* === SERVICE CARDS (with accent top border) === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-top: 4px solid #1f4fbf;
  border-radius: 0 0 8px 8px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
  color: #1A1A1A;
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.service-card a {
  color: #1f4fbf;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.25s ease;
}

.service-card a:hover {
  opacity: 0.7;
}

/* === WHY CHOOSE US (dark background, accent highlights) === */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.reason-card {
  padding: 28px;
  border-left: 4px solid #1f4fbf;
  background-color: #FFFFFF;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.reason-card h3 {
  color: #111827;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.reason-card p {
  color: #2D2D2D;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === RESULTS / PROOF === */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

.results-grid img {
  border-radius: 8px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 2px solid #333;
}

.results-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #AAAAAA;
  font-style: italic;
  margin-top: 12px;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background-color: #FFFFFF;
  border-left: 4px solid #1f4fbf;
  border-radius: 0 8px 8px 0;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.review-card .stars {
  color: #F4A623;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

.review-card .reviewer {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 0.9rem;
}

/* === PLACEHOLDER STYLES === */
.placeholder-photo {
  background-color: #2a2a2a;
  border: 2px dashed #555;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  font-style: italic;
  min-height: 250px;
}

.placeholder-review {
  background-color: #F9F9F9;
  border-left: 4px solid #CCCCCC;
  border-radius: 0 8px 8px 0;
  padding: 30px;
  text-align: center;
  color: #888;
  font-style: italic;
}

/* === CTA SECTION === */
.cta-section {
  background-color: #1A1A1A;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(122, 140, 60, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: #CCCCCC;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

/* === CONTACT FORM === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: #2D2D2D;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border: 2px solid #D0D0D0;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #2D2D2D;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1f4fbf;
}

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

.form-group .radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.form-group .radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
}

.form-group .radio-group input[type="radio"] {
  width: auto;
  padding: 0;
}

/* === PROCESS STEPS (dark background with timeline) === */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

/* Vertical connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background-color: #1f4fbf;
  opacity: 0.4;
}

.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step .step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: #1f4fbf;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #1A1A1A;
}

.process-step .step-content h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.process-step .step-content p {
  color: #BBBBBB;
  font-size: 0.95rem;
}

/* Light background variant for process steps */
.section-light .process-steps::before {
  background-color: #1f4fbf;
  opacity: 0.3;
}

.section-light .process-step .step-number {
  box-shadow: 0 0 0 4px #F5F5F0;
}

.section-light .process-step .step-content h3 {
  color: #1A1A1A;
}

.section-light .process-step .step-content p {
  color: #555;
}

/* === FAQ === */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #D0D0D0;
  padding: 20px 0;
}

.faq-question {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #1f4fbf;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-top: 12px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === SERVICE AREA (dark background) === */
.service-area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.service-area-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f4fbf;
  color: #FFFFFF;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

@media (max-width: 480px) {
  .service-area-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-area-list span {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 0.85rem;
  }
}

/* === CONTACT SPLIT LAYOUT (Info + Form side by side) === */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-split-form {
    order: -1;
  }
}

.contact-split-info {
  /* Sticky only on desktop */
}

@media (min-width: 769px) {
  .contact-split-info {
    position: sticky;
    top: 100px;
  }
}

.contact-split-form {
  /* Form column */
}

.contact-split-form .contact-form {
  max-width: 100%;
}

.contact-info-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* === CONTACT INFO ITEMS === */
.contact-info-item {
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(122, 140, 60, 0.3);
}

.contact-info-item h3 {
  color: #1f4fbf;
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-info-item p {
  color: #FFFFFF;
  font-size: 1rem;
}

.contact-info-item a {
  color: #1f4fbf;
  font-weight: 600;
}

/* === FOOTER === */
.site-footer {
  background-color: #111111;
  color: #AAAAAA;
  padding: 50px 20px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  color: #FFFFFF;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: #AAAAAA;
  line-height: 1.8;
}

.footer-col a:hover {
  color: #1f4fbf;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #777;
}

/* === MOBILE CALL BUTTON === */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #1f4fbf;
  color: #FFFFFF;
  text-align: center;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
  }

  body {
    padding-bottom: 56px;
  }
}

/* === ABOUT PAGE === */
.about-header .eyebrow {
  color: #8fb0ff;
  margin-bottom: 0.65rem;
}

.about-intro-section {
  overflow: hidden;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.about-intro-copy p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
}

.about-ctas {
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 24px;
}

.about-photo-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 210px 210px;
  gap: 18px;
  min-height: 438px;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  background-color: #111827;
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.22);
}

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

.about-photo-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(17, 24, 39, 0.82);
  color: #FFFFFF;
  border-left: 3px solid #1f4fbf;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1;
  padding: 9px 11px;
  text-transform: uppercase;
}

.about-photo-profile {
  grid-row: 1 / span 2;
}

.about-photo-profile img {
  object-position: center center;
}

.about-photo-coffee img {
  object-position: center 58%;
}

.about-photo-dogs img {
  object-position: center 48%;
}

.about-values .local-reason {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-left: 4px solid #1f4fbf;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-values .local-reason h3 {
  color: #1A1A1A;
}

.about-values .local-reason p {
  color: #555;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-photo-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 190px;
    gap: 12px;
    min-height: 462px;
  }

  .about-photo-profile {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-photo-card {
    border-radius: 14px;
  }

  .about-photo-card figcaption {
    font-size: 0.7rem;
    left: 10px;
    bottom: 10px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-photo-layout {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .about-photo-card {
    min-height: 250px;
  }

  .about-photo-profile {
    min-height: 320px;
  }
}

.about-story-text h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.about-story-text p {
  color: #CCCCCC;
  line-height: 1.8;
}

/* === LOCAL BEATS CHAINS (on dark background) === */
.local-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.local-reason {
  padding: 28px;
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 4px solid #1f4fbf;
  border-radius: 0 8px 8px 0;
}

.local-reason h3 {
  color: #1f4fbf;
  margin-bottom: 8px;
  font-size: 1rem;
}

.local-reason p {
  color: #CCCCCC;
  font-size: 0.95rem;
}

/* === FULL SERVICE LIST === */
.service-list-full {
  max-width: 1000px;
  margin: 0 auto;
}

.service-list-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

@media (max-width: 600px) {
  .service-list-item {
    grid-template-columns: 1fr;
  }
}

.service-list-item h3 {
  color: #1f4fbf;
  font-size: 1.1rem;
}

.service-list-item p {
  color: #CCCCCC;
  font-size: 0.95rem;
}

.service-list-item a {
  color: #1f4fbf;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Light variant for service list */
.section-white .service-list-item {
  border-bottom-color: #E0E0E0;
}

.section-white .service-list-item h3 {
  color: #1A1A1A;
}

.section-white .service-list-item p {
  color: #555;
}

/* Service CTA link */
.service-cta {
  display: inline-block;
  margin-top: 8px;
  color: #1f4fbf;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.25s ease;
}

.service-cta:hover {
  opacity: 0.7;
}

/* === SERVICE ROWS (Zigzag full-width layout) === */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-row-dark {
  background-color: #1A1A1A;
}

.service-row-dark .service-row-content h3 {
  color: #FFFFFF;
}

.service-row-dark .service-row-content p {
  color: #CCCCCC;
}

.service-row-featured {
  background-color: #1A1A1A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-row-featured .service-row-content h2 {
  color: #FFFFFF;
}

.service-row-featured .service-row-content p {
  color: #CCCCCC;
}

.service-row-reverse {
  direction: rtl;
}

.service-row-reverse > * {
  direction: ltr;
}

.service-row-image {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.service-row-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-align-top {
  object-position: top center;
}

.service-row-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 70px;
}

.service-row-content h2 {
  margin-bottom: 1rem;
}

.service-row-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #1A1A1A;
}

.service-row-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-row-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-row-ctas .btn-secondary {
  background-color: #111827;
  border-color: #111827 !important;
  color: #FFFFFF !important;
}

.service-row-ctas .btn-secondary:hover {
  background-color: #1f4fbf;
  border-color: #1f4fbf !important;
}

.service-tag {
  display: inline-block;
  background-color: #1f4fbf;
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 12px;
  width: fit-content;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-row-reverse {
    direction: ltr;
  }

  .service-row-image {
    height: 250px;
  }

  .service-row-image img {
    position: static;
  }

  .service-row-content {
    padding: 30px 24px;
  }

  .service-row-featured {
    min-height: auto;
  }
}

/* === SERVICE PHOTO CARD GRID (2-column) === */
.service-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .service-card-grid {
    grid-template-columns: 1fr;
  }
}

.service-photo-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  border-top: 4px solid #1f4fbf;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.service-photo-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.service-photo-card:hover .service-photo-card-img img {
  transform: scale(1.04);
}

.service-photo-card-body {
  padding: 20px 24px 24px;
}

.service-photo-card-body h3 {
  color: #1A1A1A;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-photo-card-body p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* === REASON CARDS (Why Choose Us) === */
.reason-card {
  border-left: 4px solid #1f4fbf;
  padding-left: 20px;
}

.reason-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(122, 140, 60, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* Form labels on dark background */
.section-dark .form-group label {
  color: #CCCCCC;
}

.section-dark .form-group .radio-group label {
  color: #CCCCCC;
}

/* === 404 & THANK YOU === */
.page-message {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.page-message h1 {
  margin-bottom: 1rem;
}

.page-message p {
  color: #CCCCCC;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
