/* ============================================================
   Tim Capps Fuel Oil Co. — Global Stylesheet
   Design System: Deep Navy + Charcoal + Crimson Red / White
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:        #0f1f3d;
  --navy-dark:   #0a1628;
  --navy-mid:    #162952;
  --charcoal:    #2c3342;
  --orange:      #B60A2C;
  --orange-dark: #8f0822;
  --orange-light:#d4102f;
  --red-bright:  #ff6b6b;  /* high-contrast red for use on dark navy backgrounds */
  --red-pale:    #ff9999;  /* softer high-contrast red for small text on dark bg */
  --gold:        #f0a500;
  --white:       #ffffff;
  --off-white:   #f5f6f8;
  --light-gray:  #e8eaee;
  --mid-gray:    #9aa0ad;
  --dark-gray:   #444b58;
  --text:        #222831;
  --text-light:  #5a6270;

  --font-head:   'Barlow', 'Inter', sans-serif;
  --font-body:   'Inter', 'Helvetica Neue', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.18);

  --transition:  0.25s ease;
  --max-width:   1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p  { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

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

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 110px 0; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: 1rem; }
.section-sub   { font-size: 1.1rem; max-width: 640px; margin-bottom: 2.5rem; }
.section-sub.centered { margin-left: auto; margin-right: auto; text-align: center; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(182,10,44,.4);
}

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

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-ghost-orange:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.1rem; }
.btn-sm { padding: .6rem 1.2rem; font-size: .9rem; }

/* ---------- Global Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.site-logo .logo-img {
  height: 42px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
/* Fallback text styles (used in footer brand only) */
.site-logo .logo-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -.01em;
}
.site-logo .logo-main span { color: var(--orange); }
.site-logo .logo-sub {
  font-size: .7rem;
  color: var(--mid-gray);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  padding: .6rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.phone-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}
.phone-btn i { font-size: .9rem; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.82);
  font-weight: 600;
  font-size: 1.05rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red-bright); }
.mobile-nav .mobile-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: .9rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 1.05rem;
}

/* ---------- Sticky Mobile CTA Bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy-dark);
  border-top: 2px solid var(--orange);
  padding: .6rem 1rem;
  gap: .6rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-head);
}
.mobile-cta-bar .cta-call { background: var(--orange); color: var(--white); }
.mobile-cta-bar .cta-text { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.mobile-cta-bar .cta-call:hover { background: var(--orange-dark); }
.mobile-cta-bar .cta-text:hover { border-color: var(--white); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,22,40,.92) 0%,
    rgba(15,31,61,.75) 55%,
    rgba(15,31,61,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 5rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--red-bright); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Trust Strip */
.trust-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem 1.5rem;
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.78);
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}
.trust-item i { color: var(--red-bright); font-size: 1rem; }

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(182,10,44,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon i {
  font-size: 1.4rem;
  color: var(--orange);
}

.card-body h3 { margin-bottom: .6rem; }
.card-body p  { flex: 1; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 1.2rem;
  transition: gap var(--transition);
}
.card-link:hover { gap: .7rem; }

/* ---------- Feature Icons (Why Choose) ---------- */
.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(182,10,44,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature-icon i { font-size: 1.2rem; color: var(--orange); }

.feature-text h4 { margin-bottom: .3rem; font-size: 1rem; }
.feature-text p  { font-size: .9rem; margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.step-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.step-card p  { font-size: .9rem; }

.steps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ---------- Split Section (Residential / Commercial) ---------- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.split-panel {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-panel.dark {
  background: var(--navy);
  color: var(--white);
}
.split-panel.dark h3 { color: var(--white); }
.split-panel.dark p  { color: rgba(255,255,255,.72); }
.split-panel.light { background: var(--off-white); }

.split-list {
  margin: 1rem 0 1.5rem;
}
.split-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .95rem;
}
.split-list li i { color: var(--orange); font-size: .9rem; }
.split-panel.dark .split-list li { color: rgba(255,255,255,.82); }

/* ---------- Service Area Section ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  padding: .55rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  transition: all var(--transition);
}
.area-chip:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.area-chip i { color: var(--orange); font-size: .85rem; }
.area-chip:hover i { color: var(--white); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--orange);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.88); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner .btn-secondary { border-color: rgba(255,255,255,.7); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,.15); }

.cta-banner-dark {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}
.cta-banner-dark h2  { color: var(--white); }
.cta-banner-dark p   { color: rgba(255,255,255,.78); }
.cta-banner-dark .btn-secondary { border-color: rgba(255,255,255,.5); }

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

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  user-select: none;
}
.faq-question h4 {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  padding-right: 1rem;
}
.faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-toggle i { color: var(--orange); font-size: .85rem; transition: transform var(--transition); }
.faq-item.open .faq-toggle { background: var(--navy); border: 2px solid var(--orange); }
.faq-item.open .faq-toggle i { color: var(--white); transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
}
.faq-answer p { font-size: .95rem; color: var(--text-light); margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 580px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--red-pale); }
.breadcrumb span { color: var(--red-pale); }
.breadcrumb i  { font-size: .7rem; }

/* ---------- Info Box ---------- */
.info-box {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: .92rem;
  color: var(--text-light);
}
.info-box strong { color: var(--navy); }

/* ---------- Phone Link ---------- */
.tel-link {
  color: var(--orange);
  font-weight: 700;
  transition: color var(--transition);
}
.tel-link:hover { color: var(--orange-dark); }

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(182,10,44,.12);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { cursor: pointer; }

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

.form-note {
  font-size: .82rem;
  color: var(--mid-gray);
  margin-top: .4rem;
}

/* ---------- Stat Boxes ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
}
.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-card .stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 1.5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .logo-main { font-size: 1.2rem; color: var(--white); margin-bottom: .3rem; }
.footer-brand .logo-main span { color: var(--red-bright); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-top: .75rem; }

.footer-col h5 {
  color: var(--white);
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  padding: .3rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--red-bright); }

.footer-contact p {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  margin-bottom: .6rem;
}
.footer-contact i { color: var(--red-bright); width: 16px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--red-bright); }

/* ---------- Pricing Page Specifics ---------- */
.pricing-note {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.8;
}
.pricing-note h3 { color: var(--white); margin-bottom: .75rem; }

.price-factors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.price-factor {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.price-factor strong { display: block; color: var(--white); margin-bottom: .25rem; font-size: .9rem; }
.price-factor span { font-size: .82rem; color: rgba(255,255,255,.55); }

/* ---------- Map Placeholder ---------- */
.map-placeholder {
  width: 100%;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--mid-gray);
  font-size: 1rem;
  font-weight: 600;
  padding: 4rem 2rem;
  border: 1px solid var(--light-gray);
  min-height: 320px;
}
.map-placeholder i { font-size: 2.5rem; color: var(--orange); }

/* ---------- Utility Classes ---------- */
.bg-off-white  { background: var(--off-white); }
.bg-navy       { background: var(--navy); }
.bg-navy-dark  { background: var(--navy-dark); }
.bg-white      { background: var(--white); }

/* ---------- Contrast helpers for crimson on dark backgrounds ---------- */
/* Icons that use var(--orange) inside navy/dark sections need a brighter red for legibility */
.bg-navy i[style*="color:var(--orange)"],
.bg-navy .section-label,
.split-panel.dark i[style*="color:var(--orange)"],
.pricing-note i[style*="color:var(--orange)"] {
  color: var(--red-bright) !important;
}
/* CTA banner white-on-crimson: keep white text readable */
.cta-banner p { color: rgba(255,255,255,.95); }

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.mb-3  { margin-bottom: 3rem; }

.inline-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider.centered { margin: 1rem auto 1.5rem; }

/* Notification / alert */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.alert-success { background: #edfaf1; color: #1a7f3c; border: 1px solid #a3e6be; }
.alert-success i { color: #1a7f3c; }
.alert-info    { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.alert-info i  { color: #1d4ed8; }

/* Hidden */
.hidden { display: none !important; }

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

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4      { grid-template-columns: repeat(2, 1fr); }
  .area-grid   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .main-nav    { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .phone-btn { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }

  .hero-content { padding: 3.5rem 1.5rem; }
  .grid-3       { grid-template-columns: 1fr 1fr; }
  .steps        { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-panel  { padding: 2.5rem 1.5rem; }
  .stat-grid    { grid-template-columns: repeat(2, 1fr); }
  .price-factors{ grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section    { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .grid-2     { grid-template-columns: 1fr; }
  .grid-3     { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .area-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-grid  { grid-template-columns: 1fr; }

  .form-row   { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .trust-strip-inner { gap: 1rem; }
  .trust-item { font-size: .8rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .inline-ctas { flex-direction: column; }
  .inline-ctas .btn { width: 100%; justify-content: center; }

  .page-hero { padding: 3rem 1.5rem; }
}
