/* ===========================
   HULK HEATING SOLUTIONS
   Modern Professional Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

:root {
  --green: #1DB954;
  --green-dark: #159a42;
  --green-light: #e8f9ee;
  --black: #0a0a0a;
  --dark: #111827;
  --mid: #1f2937;
  --grey: #6b7280;
  --light-grey: #f3f4f6;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --radius: 8px;
  --radius-lg: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

/* ---- HEADER ---- */
header {
  background: var(--black);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  border-bottom: 2px solid var(--green);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

nav { display: flex; gap: 6px; align-items: center; }

nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}

nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
nav a.active { color: var(--green); }

nav .nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 8px;
  transition: background 0.2s;
}
nav .nav-cta:hover { background: var(--green-dark); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 70px 40px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,185,84,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: 1100px; margin: auto; position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,185,84,0.15);
  border: 1px solid rgba(29,185,84,0.35);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: nowrap; }
.hero-actions .btn { flex: 1; justify-content: center; text-align: center; }

@media (max-width: 600px) {
  .hero { padding-bottom: 36px; }
  .hero-actions { flex-direction: row; gap: 10px; }
  .hero-actions .btn { flex: 1; justify-content: center; text-align: center; font-size: 14px; padding: 13px 10px; }
}

.hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  white-space: nowrap;
}
.hero-stat span { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; line-height: 1.3; }

@media (max-width: 768px) {
  .hero-stats { margin-top: 28px; }
  .hero-stat strong { font-size: 26px; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: 'Barlow', sans-serif;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(29,185,84,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

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

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--dark);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
}

.trust-item:nth-child(2n) { border-right: none; }
.trust-item:nth-last-child(-n+2) { border-bottom: none; }

.trust-item::before {
  content: '✓';
  font-weight: 900;
  font-size: 13px;
  color: var(--green);
  flex-shrink: 0;
}

/* Remove the blue divider */
.trust-divider { display: none; }

/* ---- SECTIONS ---- */
.section {
  padding: 80px 40px;
}

.section-inner { max-width: 1100px; margin: auto; }

.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--dark);
}

.section-sub {
  font-size: 17px;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.65;
}

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

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

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.service-card {
  border: none;
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.25s;
  background: linear-gradient(135deg, #141c26 0%, #1f2937 100%);
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* Alternate gradient shades for visual variety */
.service-card:nth-child(2) { background: linear-gradient(135deg, #0f1923 0%, #1a2535 100%); }
.service-card:nth-child(3) { background: linear-gradient(135deg, #161d2a 0%, #1e2c3a 100%); }
.service-card:nth-child(4) { background: linear-gradient(135deg, #111827 0%, #1c2a38 100%); }
.service-card:nth-child(5) { background: linear-gradient(135deg, #0e1822 0%, #1a2736 100%); }
.service-card:nth-child(6) { background: linear-gradient(135deg, #141e2c 0%, #1f2d3d 100%); }
.service-card:nth-child(7) { background: linear-gradient(135deg, #101820 0%, #1c2a36 100%); }
.service-card:nth-child(8) { background: linear-gradient(135deg, #131b28 0%, #1e2c3c 100%); }

.service-card:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  border-left-color: var(--green);
}

.service-icon { display: none; }

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: 0.2px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}

.service-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.2px;
}

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

  .service-card {
    padding: 16px 14px;
    border-radius: 10px;
    border-left-width: 3px;
  }

  .service-card h3 { font-size: 15px; margin-bottom: 6px; }
  .service-card p { font-size: 12px; line-height: 1.5; }
  .service-card .card-arrow { font-size: 12px; margin-top: 10px; }
}

/* ---- WHY US ---- */
.section-alt { background: var(--dark); }

.section-alt .section-title { color: var(--white); }
.section-alt .section-sub { color: rgba(255,255,255,0.55); }
.section-alt .section-label { color: var(--green); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.feature-item {
  background: linear-gradient(145deg, #1a2535 0%, #1e2d3d 100%);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-item:nth-child(2) { background: linear-gradient(145deg, #161f2e 0%, #1c2b3a 100%); }
.feature-item:nth-child(3) { background: linear-gradient(145deg, #1b2636 0%, #202f40 100%); }
.feature-item:nth-child(4) { background: linear-gradient(145deg, #172030 0%, #1d2c3c 100%); }

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.feature-icon { display: none; }

.feature-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ---- AREAS ---- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.area-tag {
  background: linear-gradient(135deg, #1a2535 0%, #1e2d3d 100%);
  border: 1px solid rgba(29,185,84,0.25);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  letter-spacing: 0.2px;
  text-decoration: none;
  display: inline-block;
}

.area-tag:hover {
  border-color: var(--green);
  color: var(--white);
  background: linear-gradient(135deg, #1e2d3d 0%, #243445 100%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

/* ---- MAP ---- */
.map {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  user-select: none;
}

.faq-question:hover { background: var(--light-grey); }

.faq-question .faq-toggle {
  width: 24px; height: 24px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 700;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

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

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 60px 40px;
}

.page-hero-inner { max-width: 1100px; margin: auto; }

.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--green); font-style: normal; }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ---- SERVICE PAGE CONTENT ---- */
.service-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.service-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--dark);
}

.service-body h2:first-child { margin-top: 0; }

.service-body p { color: var(--grey); margin-bottom: 16px; line-height: 1.7; font-size: 15px; }

.service-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.service-body ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--grey);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.service-body ul li:last-child { border-bottom: none; }
.service-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.service-sidebar {}

.sidebar-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sidebar-card p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 18px; }

.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.sidebar-services {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-services h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-services ul { list-style: none; }
.sidebar-services ul li { border-bottom: 1px solid var(--border); }
.sidebar-services ul li:last-child { border-bottom: none; }
.sidebar-services ul li a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.sidebar-services ul li a:hover { color: var(--green); }

/* ---- CONTACT FORM ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-form .form-sub { color: var(--grey); font-size: 15px; margin-bottom: 28px; }

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

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Barlow', sans-serif;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(29,185,84,0.12);
}

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

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

.form-error { color: #dc2626; font-size: 12px; margin-top: 4px; display: none; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #dc2626; }
.form-group.error .form-error { display: block; }

.form-success {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.contact-info { padding: 10px 0; }

.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-info p { color: var(--grey); font-size: 15px; margin-bottom: 28px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-detail span { font-size: 15px; color: var(--grey); }
.contact-detail a { color: var(--green); text-decoration: none; font-size: 15px; font-weight: 600; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-card {
  border-radius: var(--radius-lg);
  background: var(--light-grey);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--grey);
  border: 2px dashed var(--border);
  font-weight: 500;
  gap: 8px;
  transition: border-color 0.2s;
}
.gallery-card:hover { border-color: var(--green); }
.gallery-card .gallery-icon { font-size: 36px; }

/* ---- AREAS PAGE ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
  transition: all 0.2s;
}

.area-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.area-card .area-pin { font-size: 24px; display: block; margin-bottom: 8px; }
.area-card strong { display: block; font-weight: 600; font-size: 15px; }
.area-card span { font-size: 13px; color: var(--grey); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  padding: 70px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 32px; }
.cta-banner .btn { margin: 0 6px; }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 50px 40px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand .logo { display: inline-flex; margin-bottom: 10px; }
.footer-brand .logo-img { height: 50px; }
.footer-brand p { font-size: 14px; line-height: 1.65; max-width: 260px; }

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

.gas-safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

/* ---- STICKY CALL BUTTON ---- */
.sticky-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(29,185,84,0.45);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Barlow', sans-serif;
}

.sticky-call:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,185,84,0.5);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  header { padding: 0 20px; }

  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    padding: 100px 30px 40px;
    z-index: 98;
    gap: 0;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
  }

  nav.open { display: flex; }

  nav a {
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }

  nav a:last-child { border-bottom: none; }
  nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

  nav .nav-cta {
    margin: 16px 0 0;
    background: var(--green);
    color: var(--white);
    border-radius: 8px;
    font-size: 17px;
    padding: 16px 30px;
    text-align: center;
    width: 100%;
    border-bottom: none;
  }

  nav .nav-cta:hover { background: var(--green-dark); }

  .hamburger { display: flex; z-index: 99; position: relative; }

  .hero { padding: 40px 20px 36px; }
  .hero h1 { font-size: 36px; }

  .section { padding: 56px 20px; }

  .trust-bar { gap: 20px; padding: 12px 20px; }

  .page-hero { padding: 48px 20px; }

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

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 32px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form { padding: 24px; }

  .cta-banner { padding: 50px 20px; }
}

/* ---- 24HR EMERGENCY STRIP ---- */
.emergency-strip {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 60%, #991b1b 100%);
  position: relative;
  overflow: hidden;
  transition: filter 0.2s;
}

.emergency-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 18px, rgba(0,0,0,0.05) 18px, rgba(0,0,0,0.05) 36px);
  pointer-events: none;
}

.emergency-strip:hover { filter: brightness(1.07); }

.emergency-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.emergency-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
  animation: pulse-ring 1.6s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.emergency-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.25);
  padding: 4px 10px; border-radius: 4px;
  white-space: nowrap; flex-shrink: 0;
}

.emergency-headline {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.emergency-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 800;
  color: white; white-space: nowrap;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px; border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .emergency-strip-inner { padding: 10px 16px; gap: 10px; }
  .emergency-headline { display: none; }
  .emergency-label { font-size: 12px; }
  .emergency-cta { font-size: 12px; padding: 7px 12px; }
}

/* Emergency cover grid mobile */
@media (max-width: 600px) {
  .emg-cover-grid { grid-template-columns: 1fr !important; }
}
