/* HIGH CONTRAST NAVIGATION FIXES */

/* Emergency Service Areas - Improve contrast */
.emergency-service-areas {
  background: #1a1a1a; /* Darker background */
  padding: 30px 20px;
  margin: 20px 0;
}

.emergency-service-areas h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

/* Service Area Links - High contrast */
.service-area-links a {
  color: #00d4ff !important; /* Bright cyan instead of blue */
  background: rgba(0, 212, 255, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 5px 10px;
}

.service-area-links a:hover {
  background: #00d4ff;
  color: #000000 !important;
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Emergency Services Links */
.emergency-services a {
  color: #ffeb3b !important; /* Bright yellow for emergency services */
  background: rgba(255, 235, 59, 0.1);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 3px 8px;
}

.emergency-services a:hover {
  background: #ffeb3b;
  color: #000000 !important;
  border-color: #ffeb3b;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 235, 59, 0.4);
}

/* Authority Resources Links */
.authority-resources a {
  color: #4caf50 !important; /* Bright green for authority resources */
  background: rgba(76, 175, 80, 0.1);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 3px 8px;
}

.authority-resources a:hover {
  background: #4caf50;
  color: #ffffff !important;
  border-color: #4caf50;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
}

/* Region Selector Buttons */
.region-selector {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.region-selector h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.region-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.region-btn {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  border: 2px solid #00d4ff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.region-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.region-btn.active {
  background: #00d4ff;
  color: #000000;
}

/* Hidden class for regional switching */
.hidden {
  display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .service-area-links a,
  .emergency-services a,
  .authority-resources a {
    display: block;
    margin: 8px 0;
    text-align: center;
  }

  .region-buttons {
    flex-direction: column;
    align-items: center;
  }

  .region-btn {
    width: 100%;
    max-width: 300px;
  }
}/* Force deployment trigger - Fri Sep 19 04:39:24 EDT 2025 */
