.elementor-1595 .elementor-element.elementor-element-86f3b81{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-66c4eee */:root {
  --primary: #2f4f2f;     /* Deep green */
  --accent: #c2a85d;     /* Soft gold */
  --bg: #f6f8f6;         /* Light background */
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --card: #ffffff;
}

.emergency-section {
  max-width: 1280px;
  margin: 80px auto;
  padding: 40px 24px;
  background: var(--bg);
  font-family: "Inter", "Poppins", sans-serif;
}

.emergency-section h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.emergency-section .subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 50px;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* CARD */
.emergency-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.emergency-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.emergency-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.emergency-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  padding: 20px 20px 6px;
}

.emergency-card p {
  font-size: 15px;
  color: var(--muted);
  padding: 0 20px 12px;
  line-height: 1.6;
}

/* NUMBER / CTA */
.emergency-card .number {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 22px;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

/* ICON STYLE */
.emergency-card .number::before {
  content: "📞";
  font-size: 22px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .emergency-section {
    padding: 40px 16px;
  }

  .emergency-section h2 {
    font-size: 30px;
  }
}


/* ICON OVER IMAGE */
.emergency-card {
  position: relative;
}

.emergency-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  background: rgba(255,255,255,0.92);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.emergency-card:hover .emergency-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* CARD HOVER ENHANCEMENT */
.emergency-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

/* NUMBER EMPHASIS ON HOVER */
.emergency-card:hover .number {
  color: #2f4f2f;
  letter-spacing: 0.5px;
}

/* IMAGE SLIGHT ZOOM */
.emergency-card img {
  transition: transform 0.5s ease;
}

.emergency-card:hover img {
  transform: scale(1.05);
}/* End custom CSS */