/* ============================================================
   CPP Website Redesign — style.css
   Connecticut Propane & Petroleum
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:         #0a2240;
  --navy-dark:    #071829;
  --navy-light:   #0d2d52;
  --orange:       #e55b00;
  --orange-dark:  #c44d00;
  --orange-pale:  #fff7f3;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-500:     #6b7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --white:        #ffffff;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:    0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:    0 10px 30px rgba(0,0,0,.12);
  --max-w:        1120px;
  --t:            all .18s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }
.bg-gray      { background: var(--gray-50); }
.text-center  { text-align: center; }

.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--navy); line-height: 1.12; margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 17px; color: var(--gray-500); line-height: 1.7; max-width: 560px;
}
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  transition: var(--t); font-family: 'Inter', sans-serif; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 4px 16px rgba(229,91,0,.35); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }

.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ─────────────────────────────────────────────────── */
.sticky-header {
  position: sticky; top: 0; z-index: 200;
}
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; gap: 12px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 50px; width: auto; }
.logo-fallback {
  font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.2;
}
.logo-fallback span { color: var(--orange); }
.site-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.site-nav a {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  padding: 8px 13px; border-radius: var(--radius-sm); transition: var(--t);
}
.site-nav a:hover,
.site-nav a.active { color: var(--navy); background: var(--gray-100); }
.header-cta { margin-left: 12px; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--navy); margin-left: auto;
}
.mobile-nav {
  display: none;
  background: #fff; border-top: 1px solid var(--gray-200);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 0; font-size: 15px; font-weight: 500;
  color: var(--gray-700); border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: var(--navy); color: #fff;
  padding: 104px 0 88px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.025));
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -0.5px; max-width: 700px;
}
.hero h1 .accent { color: #ff7a35; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.75); line-height: 1.65;
  margin-bottom: 40px; max-width: 500px;
}

/* Zip check form */
.hero-form {
  display: flex; max-width: 440px;
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.hero-form input {
  flex: 1; padding: 15px 18px; border: none;
  font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--gray-900); outline: none; min-width: 0;
}
.hero-form input::placeholder { color: var(--gray-300); }
.hero-form button {
  padding: 13px 22px; background: var(--orange); color: #fff;
  border: none; font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background .15s;
  white-space: nowrap; flex-shrink: 0;
}
.hero-form button:hover { background: var(--orange-dark); }
.hero-form-note { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 10px; }

.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero-stat .num { font-size: 30px; font-weight: 800; color: #ff7a35; line-height: 1; }
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ── Trust strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
}
.trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 28px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--gray-700);
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── Photo placeholder ──────────────────────────────────────── */
.photo-placeholder {
  background: var(--gray-100); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300); font-size: 12px; font-weight: 500;
  text-align: center; padding: 16px; line-height: 1.5;
}

/* ── Feature cards (home) ────────────────────────────────────── */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: var(--t); display: flex; flex-direction: column;
}
.feature-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.fc-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.feature-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--gray-500); line-height: 1.7; flex: 1; }
.fc-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--orange);
}

/* ── How it works ────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── Specials ────────────────────────────────────────────────── */
.specials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.special-card {
  border: 2px dashed var(--orange); border-radius: var(--radius);
  padding: 28px 24px; background: #fff;
  display: flex; flex-direction: column;
}
.special-card h3 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; line-height: 1.4;
}
.special-price { font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; margin: 8px 0; }
.special-price.text-price { font-size: 26px; line-height: 1.3; }
.special-desc { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; flex: 1; margin-bottom: 12px; }
.special-fine { font-size: 11.5px; color: var(--orange-dark); font-style: italic; line-height: 1.5; margin-bottom: 16px; }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 24px;
}
.review-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 15px; color: var(--gray-700); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.reviewer-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.reviewer-loc  { font-size: 12px; color: var(--gray-500); }

/* ── Associations ────────────────────────────────────────────── */
.assoc-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 56px 0;
}
.assoc-claim { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.assoc-sub { font-size: 15px; color: var(--gray-500); max-width: 600px; margin: 0 auto 36px; }
.assoc-logos {
  display: flex; justify-content: center;
  align-items: stretch; flex-wrap: wrap; gap: 20px;
}
.assoc-logo-item {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px 28px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; flex: 0 1 auto; min-width: 160px;
  transition: var(--t);
}
.assoc-logo-item:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.assoc-logo-item img { height: 72px; width: auto; object-fit: contain; }
.assoc-logo-item p { font-size: 11.5px; color: var(--gray-500); line-height: 1.4; max-width: 150px; }

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band { background: var(--orange); color: #fff; padding: 80px 0; text-align: center; }
.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.cta-band p { font-size: 17px; opacity: .88; margin-bottom: 36px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 28px;
}
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; margin-top: 14px; }
.footer-brand img { height: 58px; width: auto; }
.footer-phone { font-size: 22px; font-weight: 700; color: #ff7a35; margin-top: 14px; display: block; }
.footer-hours { font-size: 13px; margin-top: 4px; opacity: .65; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: #fff; margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,.65);
  margin-bottom: 10px; transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 13px; }

/* ── Modal ───────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,34,64,.65); z-index: 1000;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  width: 100%; max-width: 520px; max-height: 90vh;
  overflow-y: auto; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); border: none; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); transition: var(--t);
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-900); }
.modal h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 8px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--gray-900); outline: none; transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-success { text-align: center; padding: 20px 0; display: none; }
.form-success .check-icon {
  width: 60px; height: 60px; background: #16a34a; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── Services page ───────────────────────────────────────────── */
.page-hero { background: var(--navy); color: #fff; padding: 72px 0 64px; }
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 50px); font-weight: 800;
  margin-bottom: 14px; letter-spacing: -0.3px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.72); max-width: 520px; line-height: 1.7; }

.service-category { margin-bottom: 60px; }
.service-category-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.service-cat-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.service-cat-title { font-size: 22px; font-weight: 800; color: var(--navy); }
.service-items-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.service-item {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 24px 22px;
  display: flex; flex-direction: column; transition: var(--t);
  cursor: pointer;
}
.service-item:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-item p { font-size: 14px; color: var(--gray-500); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.service-item-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--orange); margin-top: auto;
}

/* ── About page ──────────────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 24px;
}
.value-card-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.value-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 3px; }
.contact-value { font-size: 17px; font-weight: 700; color: var(--navy); }
.contact-note { font-size: 13px; color: var(--gray-500); margin-top: 3px; }

.contact-form-card {
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }

/* ── Emergency band ──────────────────────────────────────────── */
.emergency-band { background: #b91c1c; color: #fff; padding: 40px 0; }
.emergency-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.emergency-inner h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.emergency-inner p { font-size: 15px; opacity: .88; }
.emergency-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.emergency-call-btn {
  background: #fff; color: #b91c1c; padding: 12px 24px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
  display: inline-block;
}
.emergency-call-btn:hover { opacity: .92; }

/* ── Photo hero ──────────────────────────────────────────────── */
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/cpp-truck.jpg');
  background-size: cover;
  background-position: center 38%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 18, 36, 0.92) 0%,
    rgba(10, 34, 64, 0.80) 52%,
    rgba(10, 34, 64, 0.50) 100%
  );
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

/* ── Availability modal ──────────────────────────────────────── */
.modal-avail {
  max-width: 600px; padding: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  max-height: 90vh; display: flex; flex-direction: column;
}
.avail-header {
  background: linear-gradient(135deg, var(--navy) 0%, #163b6e 100%);
  color: #fff; padding: 22px 28px;
  position: relative; flex-shrink: 0;
}
.avail-header-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; opacity: .65; margin-bottom: 6px;
}
.avail-header-title { font-size: 20px; font-weight: 800; margin-bottom: 3px; }
.avail-header-sub   { font-size: 14px; opacity: .78; }
.avail-close {
  position: absolute; top: 14px; right: 16px;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 50%; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.avail-close:hover { background: rgba(255,255,255,.28); }

.avail-tabs { display: flex; background: #111; flex-shrink: 0; }
.avail-tab {
  flex: 1; padding: 12px 16px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.45); cursor: default; border-bottom: 3px solid transparent;
  transition: all .2s; text-align: center;
}
.avail-tab.active { color: #fff; border-bottom-color: var(--orange); }
.avail-tab.done   { color: rgba(255,255,255,.75); }
.avail-tab.done::before { content: '✓ '; color: #4ade80; }

.avail-body { padding: 28px; overflow-y: auto; flex: 1; min-height: 0; }

.avail-q { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.avail-hint { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; }

/* Usage checkboxes */
.usage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 16px;
}
.usage-label { display: block; cursor: pointer; }
.usage-label input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }
.usage-card {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 13px 6px 10px; text-align: center;
  transition: all .15s; display: flex; flex-direction: column;
  align-items: center; gap: 5px; user-select: none;
}
.usage-card:hover { border-color: var(--gray-400); }
.usage-label input:checked ~ .usage-card {
  border-color: var(--navy); background: var(--navy); color: #fff;
}
.usage-label input:checked ~ .usage-card svg { stroke: #fff; fill: #fff; }
.usage-label input:checked ~ .usage-card .usage-sub { opacity: .65; }
.usage-name { font-size: 11.5px; font-weight: 700; line-height: 1.3; }
.usage-sub  { font-size: 10px; opacity: .6; }

/* No propane checkbox */
.no-propane-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--orange); cursor: pointer;
  margin-bottom: 22px; font-weight: 500;
}
.no-propane-row input {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--orange); cursor: pointer;
}

.avail-divider { height: 1px; background: var(--gray-200); margin: 20px 0; }

/* Tank ownership */
.ownership-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin: 12px 0 20px;
}
.ownership-label { display: block; cursor: pointer; }
.ownership-label input[type=radio] { position: absolute; opacity: 0; pointer-events: none; }
.ownership-card {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 18px 10px; text-align: center;
  transition: all .15s; display: flex; flex-direction: column;
  align-items: center; gap: 8px; user-select: none;
}
.ownership-card:hover { border-color: var(--gray-400); }
.ownership-label input:checked ~ .ownership-card {
  border-color: var(--navy); background: rgba(10,34,64,.06);
}
.ownership-name { font-size: 15px; font-weight: 700; color: var(--navy); }

/* Supplier input (inside avail body) */
.avail-body .form-group { margin-bottom: 16px; }
.avail-body .form-group label { font-size: 13px; }

/* SMS consent */
.sms-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--gray-500);
  margin: 14px 0 10px; cursor: pointer; line-height: 1.55;
}
.sms-consent input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* Trust notes */
.trust-notes { list-style: none; margin-bottom: 18px; }
.trust-notes li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-500); margin-bottom: 5px;
}
.trust-check { color: #16a34a; font-weight: 700; font-size: 15px; }

/* Back link */
.avail-back {
  text-align: center; font-size: 14px; color: var(--gray-500);
  cursor: pointer; margin-top: 14px;
  transition: color .15s;
}
.avail-back:hover { color: var(--navy); }

/* ── Top bar ─────────────────────────────────────────────────── */
.topbar {
  background: #06182e;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 7px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-tagline {
  font-size: 12px; color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: 6px;
}
.topbar-login {
  display: flex; align-items: center; gap: 7px;
  color: #fff; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 5px 14px; border-radius: 20px;
  text-decoration: none; transition: all .15s;
  white-space: nowrap;
}
.topbar-login:hover { background: var(--orange); border-color: var(--orange); }

/* ── Chat widget ─────────────────────────────────────────────── */
#chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 2000; }
#chat-toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--orange); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(229,91,0,.45); transition: transform .2s, box-shadow .2s;
  color: #fff; position: relative;
}
#chat-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(229,91,0,.55); }
.chat-badge {
  position: absolute; top: -2px; right: -2px;
  background: #b91c1c; color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
#chat-window {
  display: none; position: absolute; bottom: 70px; right: 0;
  width: 360px; border-radius: 18px; overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,.22);
  background: #fff; flex-direction: column;
}
#chat-window.open { display: flex; }
.chat-header {
  background: var(--navy); color: #fff;
  padding: 15px 18px; display: flex; align-items: center; gap: 10px;
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0; letter-spacing: -.3px;
}
.chat-header-info .chat-name { font-weight: 700; font-size: 14px; }
.chat-header-info .chat-status {
  font-size: 11px; opacity: .7; display: flex; align-items: center; gap: 4px;
}
.chat-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.chat-close {
  margin-left: auto; background: transparent; border: none;
  color: rgba(255,255,255,.7); font-size: 20px; cursor: pointer; line-height: 1;
  transition: color .15s;
}
.chat-close:hover { color: #fff; }
#chat-messages {
  flex: 1; overflow-y: auto; padding: 14px;
  min-height: 220px; max-height: 340px;
  display: flex; flex-direction: column; gap: 9px;
  background: var(--gray-50);
}
.chat-msg {
  max-width: 88%; padding: 10px 13px;
  border-radius: 14px; font-size: 13.5px; line-height: 1.55;
  animation: chatFadeIn .2s ease;
}
@keyframes chatFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg-bot {
  background: #fff; color: var(--gray-900);
  border-radius: 4px 14px 14px 14px;
  border: 1px solid var(--gray-200); align-self: flex-start;
}
.chat-msg-user {
  background: var(--navy); color: #fff;
  border-radius: 14px 4px 14px 14px; align-self: flex-end;
}
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 2px 0; }
.chat-typing span {
  width: 7px; height: 7px; background: var(--gray-400); border-radius: 50%;
  animation: chatBounce 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chatBounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
.chat-quick-btns {
  padding: 9px 11px 5px; background: var(--gray-50);
  display: flex; flex-wrap: wrap; gap: 6px;
  border-top: 1px solid var(--gray-200);
}
.chat-qb {
  padding: 5px 11px; font-size: 12px; font-weight: 600;
  border-radius: 20px; border: 1.5px solid var(--gray-200);
  background: #fff; color: var(--navy); cursor: pointer;
  transition: all .15s; font-family: 'Inter', sans-serif;
}
.chat-qb:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.chat-input-row {
  padding: 9px 11px; border-top: 1px solid var(--gray-200);
  display: flex; gap: 7px; background: #fff; align-items: center;
}
#chat-input {
  flex: 1; padding: 9px 12px; border: 1.5px solid var(--gray-200);
  border-radius: 20px; font-size: 13px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .15s;
}
#chat-input:focus { border-color: var(--navy); }
#chat-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange); border: none; color: #fff;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .15s;
}
#chat-send:hover { background: #c94f00; }
.chat-action-btn {
  display: inline-block; margin-top: 8px;
  background: var(--navy); color: #fff;
  border: none; padding: 8px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background .15s;
}
.chat-action-btn:hover { background: var(--orange); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 48px; }
  .about-split.reverse { direction: ltr; }
  .contact-split { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav    { display: none; }
  .header-cta  { display: none; }
  .hamburger   { display: flex; }

  .hero        { padding: 72px 0 56px; }
  .section     { padding: 64px 0; }
  .section-sm  { padding: 48px 0; }

  .feature-cards   { grid-template-columns: 1fr; }
  .specials-grid   { grid-template-columns: 1fr; }
  .reviews-grid    { grid-template-columns: 1fr; }
  .steps           { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .form-2col       { grid-template-columns: 1fr; }
  .value-cards     { grid-template-columns: 1fr; }

  .cta-band-btns { flex-direction: column; align-items: center; }
  .hero-stats    { gap: 24px; }
  .hero-form     { flex-direction: column; border-radius: var(--radius); }
  .hero-form input  { border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
  .hero-form button { border-radius: 0 0 var(--radius-sm) var(--radius-sm); width: 100%; padding: 14px; }

  .emergency-inner { flex-direction: column; text-align: center; }

  .modal { padding: 28px 20px; }
  .assoc-logos { justify-content: center; }
  .topbar-tagline { display: none; }
  #chat-window { width: 92vw; right: -4px; }
}


/* ── Nav dropdown (About menu) ─────────────────────────────── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  padding: 8px 13px; border-radius: var(--radius-sm); transition: var(--t);
  display: inline-flex; align-items: center; cursor: pointer;
}
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--navy); background: var(--gray-100); }
.nav-caret { font-size: 9px; margin-left: 5px; line-height: 1; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  min-width: 178px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 9px 18px; font-size: 14px; font-weight: 500;
  color: var(--navy); white-space: nowrap; border-radius: 0;
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--orange); }
