* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Arial, sans-serif;
}

body {
  background: #f4f6f8;
  color: #111;
  line-height: 1.5;
}

/* SECTION BASE */
section {
  padding: 22px 16px;
  margin: 12px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}



/* HERO */
.hero {
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  color: #fff;
  margin: 0;
  border-radius: 0 0 18px 18px;
}

.hero h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.logo-wrap {
  text-align: center;
  margin-bottom: 8px;
}

.logo {
  max-width: 140px;   /* ideal for mobile */
  width: 100%;
  height: auto;
}
.sub {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 16px;
}

/* CALL BUTTONS */
.call-btn {
  display: block;
  text-align: center;
  background: #111;
  color: #fff;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  margin: 14px 0;
}

.call-btn.primary {
  background: #facc15;
  color: #111;
}

/* TEXT */
h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 800;
}

ul {
  padding-left: 18px;
}

li {
  margin: 6px 0;
  font-size: 0.95rem;
}

.hero-points {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-points .point {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-phone {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

/* IMAGE GROUP – MOBILE FIRST */
.section-image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* mobile: 2x2 */
  gap: 8px;
  padding: 0 12px;
  margin: 14px 0;
}

.section-image-group img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}

/* DESKTOP (PC) */
@media (min-width: 768px) {
  .section-image-group {
    grid-template-columns: repeat(2, 1fr); /* FORCE 2x2 */
    max-width: 900px;
    margin: 20px auto;
  }
}

/* FLOATING CALL ICON – MATCHES PAGE THEME */
.floating-call-icon {
  position: fixed;
  bottom: 80px;
  right: 18px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #e1e414d8;              /* white like your UI */
  color: #e11d48;                   /* emergency red */

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  text-decoration: none;

  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  z-index: 99999;
}

/* Subtle emergency pulse (same red) */
.floating-call-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: emergencyPulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.6);
}

@keyframes emergencyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(225, 29, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
  }
}

/* Mobile-first: hide on desktop if needed */
@media (min-width: 768px) {
  .floating-call-icon {
    display: none;
  }
}







/* SERVICES & AREAS */
.services li,
.areas li {
  list-style: disc;
}

/* NOTE */
.note {
  background: #fef3c7;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* FINAL CTA */
.final {
  background: linear-gradient(135deg, #111827, #000);
  color: #fff;
}

.final .call-btn.primary {
  background: #ef4444;
  color: #fff;
}

/* FOOTER */
footer {
  text-align: center;
  font-size: 0.85rem;
  padding: 18px 12px;
  color: #fff;
  background: #000;
}

/* STICKY CALL */
#stickyCall {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transition: bottom 0.3s ease;
}
