/* ============================================
   Heine Propane LLC — Main Stylesheet
   Brand Colors: Red · Black · White
   ============================================ */

:root {
  --red:        #C8232B;
  --red-dark:   #A01B22;
  --red-light:  #D94048;
  --dark:       #1A1A1A;
  --dark-deep:  #111111;
  --dark-mid:   #2D2D2D;
  --gray-bg:    #f4f6f9;
  --gray-mid:   #e1e6ed;
  --gray-text:  #5a6477;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.14);
  --radius:     6px;
  --transition: .25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ─────────────────────────────── */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-mid); border-color: var(--dark-mid); }

/* backward compat */
.btn-navy { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-navy:hover { background: var(--dark-mid); border-color: var(--dark-mid); }

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

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 620px;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Header / Nav ─────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo { display: flex; align-items: center; gap: .6rem; }

.logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--white); }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.logo-tagline { font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-text); }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-text);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: .75rem; }

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

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
  padding: 1rem 0;
}
.mobile-nav a {
  display: block;
  padding: .7rem 5%;
  font-weight: 600;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-mid);
}
.mobile-nav a:last-child { border: none; }
.mobile-nav a.active, .mobile-nav a:hover { color: var(--red); background: var(--gray-bg); }

/* ── Hero ─────────────────────────────────── */
.hero {
  padding-top: 70px;
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 65%, #222222 100%);
  color: var(--white);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.88);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero h1 span { color: var(--red); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.25rem;
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Trust Bar ────────────────────────────── */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: .9rem 1.2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 15px; height: 15px; fill: var(--red); flex-shrink: 0; }
.trust-item .star-text { color: #f59e0b; }

/* ── Sections ─────────────────────────────── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--gray-bg); }

/* ── Services Grid ────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.service-icon {
  width: 56px; height: 56px;
  background: rgba(200,35,43,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--red); }

.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.service-card p { font-size: .92rem; color: var(--gray-text); margin-bottom: 1.25rem; line-height: 1.65; }

.learn-more {
  font-size: .88rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
}
.service-card:hover .learn-more { gap: .6rem; }

/* ── POPs Teaser ──────────────────────────── */
.pop-teaser {
  background: var(--dark);
  color: var(--white);
  padding: 5.5rem 0;
}
.pop-teaser .section-label { color: var(--red); }
.pop-teaser .section-title { color: var(--white); }
.pop-teaser .section-sub { color: rgba(255,255,255,.6); }

.pop-teaser-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.pop-county-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
}
.pop-county-card h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.pop-county-list { display: flex; flex-direction: column; gap: .7rem; }
.pop-county-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.pop-county-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.pop-county-count {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

.pop-mini-stack { display: flex; flex-direction: column; gap: 1rem; }

.pop-mini-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background var(--transition);
}
.pop-mini-card:hover { background: rgba(255,255,255,.1); }

.pop-mini-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop-mini-icon svg { width: 20px; height: 20px; fill: var(--white); }

.pop-mini-label {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}
.pop-mini-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.pop-teaser-cta { margin-top: 2.5rem; }

/* ── Testimonials ─────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }

.testimonial-text {
  font-size: .95rem;
  color: var(--gray-text);
  line-height: 1.78;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-mid);
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: var(--dark); font-size: .9rem; }
.testimonial-source { font-size: .8rem; color: var(--gray-text); margin-top: .1rem; }

/* ── Our People Teaser ────────────────────── */
.people-teaser {
  background: var(--dark);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.people-teaser-inner { max-width: 700px; margin: 0 auto; }
.people-teaser .section-title { color: var(--white); }
.people-teaser p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* ── Lead Capture Section ─────────────────── */
.lead-section {
  background: var(--gray-bg);
  padding: 5.5rem 0;
}

.lead-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.lead-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}
.lead-content > p {
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  line-height: 1.78;
  font-size: 1rem;
}

.lead-trust-items { display: flex; flex-direction: column; gap: .85rem; }
.lead-trust-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--gray-text);
}
.lead-trust-item svg { width: 18px; height: 18px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }

.lead-form-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.lead-form-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }

.lead-or {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-mid);
  font-size: .88rem;
  color: var(--gray-text);
}
.lead-or a { color: var(--red); font-weight: 700; }

/* ── CTA Band ─────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 4rem 0;
  color: var(--white);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; max-width: 560px; }
.cta-band p { margin-top: .5rem; opacity: .85; }

/* ── Features / Why Us ────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.feature-icon svg { width: 30px; height: 30px; fill: var(--white); }
.feature-item h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.feature-item p { font-size: .9rem; color: var(--gray-text); }

/* ── Page Hero (inner pages) ──────────────── */
.page-hero {
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 100%);
  color: var(--white);
  padding-bottom: 3.5rem;
  padding-top: calc(70px + 3.5rem);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero p { font-size: 1.05rem; opacity: .75; max-width: 600px; margin: 0 auto; }

/* ── Service Detail Layout (services pages) ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse .detail-visual { order: 1; }
.service-detail.reverse .detail-content { order: 2; }

.detail-visual {
  background: linear-gradient(135deg, var(--dark) 0%, #2D2D2D 100%);
  border-radius: calc(var(--radius) * 3);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.detail-visual::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.04'%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");
}
.detail-visual svg { width: 100px; height: 100px; fill: rgba(255,255,255,.15); position: relative; z-index: 1; }

.detail-content .section-title { font-size: 1.75rem; }
.detail-list {
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .93rem;
  color: var(--gray-text);
}
.detail-list li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C8232B'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center/contain;
  margin-top: 3px;
}

/* ── Stats Row ────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
  padding: 3rem 0;
}
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-label { font-size: .85rem; color: var(--gray-text); margin-top: .4rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ── About Page ───────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-visual {
  background: linear-gradient(135deg, var(--dark) 0%, #2D2D2D 100%);
  border-radius: calc(var(--radius) * 3);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual svg { width: 120px; height: 120px; fill: rgba(255,255,255,.12); }

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.belief-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.belief-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.belief-card p { font-size: .9rem; color: var(--gray-text); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.value-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--gray-text); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.75rem; margin-top: 3rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: calc(var(--radius) * 2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.team-avatar {
  height: 160px;
  background: linear-gradient(135deg, var(--dark) 0%, #2D2D2D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar svg { width: 70px; height: 70px; fill: rgba(255,255,255,.22); }
.team-info { padding: 1.25rem; }
.team-info h4 { font-weight: 700; color: var(--dark); font-size: 1rem; margin-bottom: .2rem; }
.team-info .team-title { font-size: .85rem; color: var(--red); font-weight: 600; display: block; }
.team-info .team-since { font-size: .8rem; color: var(--gray-text); margin-top: .15rem; display: block; }
.team-info .team-quote { font-size: .82rem; color: var(--gray-text); margin-top: .6rem; font-style: italic; line-height: 1.5; }

/* ── Contact Page ─────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-block { position: sticky; top: 90px; }
.contact-info-block h2 { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.contact-info-block > p { color: var(--gray-text); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(200,35,43,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--red); }
.contact-detail-text strong { display: block; font-weight: 700; color: var(--dark); font-size: .9rem; margin-bottom: .15rem; }
.contact-detail-text span { font-size: .92rem; color: var(--gray-text); line-height: 1.5; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 1.75rem; }

/* ── Forms ────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,35,43,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.25rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: .9rem 2rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .93rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
}

/* ── Points of Propane Archive ────────────── */
.pop-filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 2rem; }
.pop-filter-btn {
  padding: .45rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  background: var(--white);
  transition: all var(--transition);
  font-family: inherit;
}
.pop-filter-btn:hover, .pop-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.pop-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pop-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: calc(var(--radius) * 2);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pop-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pop-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.pop-badge {
  display: inline-block;
  background: rgba(200,35,43,.1);
  color: var(--red);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .28rem .75rem;
  border-radius: 999px;
}
.pop-date { font-size: .8rem; color: var(--gray-text); }
.pop-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.pop-location {
  font-size: .85rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.pop-location svg { width: 14px; height: 14px; fill: var(--red); }
.pop-card p { font-size: .88rem; color: var(--gray-text); line-height: 1.65; }
.pop-card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  gap: 1.25rem;
  font-size: .8rem;
  color: var(--gray-text);
  flex-wrap: wrap;
}
.pop-card-footer span { display: flex; align-items: center; gap: .3rem; }

/* ── Industries (Commercial) ──────────────── */
.industries-grid { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.industry-chip {
  padding: .45rem 1rem;
  background: var(--gray-bg);
  border: 1px solid var(--gray-mid);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── Google Ads Landing Page ──────────────── */
.landing-header {
  background: var(--dark);
  padding: 1.1rem 0;
  text-align: center;
}
.landing-hero-section {
  background: linear-gradient(135deg, #111111 0%, #1A1A1A 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
}
.landing-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.landing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--white);
}
.landing-headline span { color: var(--red); }
.landing-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 1.75rem;
  line-height: 1.78;
}
.landing-trust-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.landing-trust-strip .stars { color: #f59e0b; }
.landing-form-card {
  background: var(--white);
  border-radius: calc(var(--radius) * 2);
  padding: 2.25rem;
}
.landing-form-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 1.25rem; }
.landing-form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-text);
  margin-top: .75rem;
}
.landing-phone-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 1.75rem 1rem;
}
.landing-phone-bar p { font-size: .95rem; margin-bottom: .35rem; opacity: .85; }
.landing-phone-bar a { color: var(--white); font-weight: 800; font-size: 1.5rem; letter-spacing: .02em; }
.landing-trust-section { background: var(--gray-bg); padding: 3rem 0; }
.landing-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.landing-trust-item svg { width: 36px; height: 36px; fill: var(--red); margin: 0 auto .75rem; display: block; }
.landing-trust-item h4 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.landing-trust-item p { font-size: .85rem; color: var(--gray-text); }

/* ── Footer ───────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,.48); }
.footer-memberships { margin-top: .65rem !important; font-size: .78rem !important; color: rgba(255,255,255,.32) !important; text-transform: uppercase; letter-spacing: .06em; }
.footer-col h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li,
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.48); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.28);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Emergency Banner ─────────────────────── */
.emergency-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: .85rem 1rem;
  font-size: .92rem;
}
.emergency-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 1000px) {
  .landing-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }

  .service-detail,
  .about-grid,
  .contact-layout,
  .lead-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .service-detail.reverse .detail-visual,
  .service-detail.reverse .detail-content { order: unset; }

  .pop-teaser-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.5rem; }
  .lead-form-card { padding: 1.5rem; }
  .trust-item { border-right: none; padding: .3rem .75rem; font-size: .78rem; }
  .hero h1 { font-size: 2.2rem; }
}
