.contact-container {
  padding: 40px 20px;
  background: #f9fbfd;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
}

.contact-heading {
  font-size: 24px;
  color: #E53935;
  margin-bottom: 30px;
  font-family: 'DM Serif Text', serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.contact-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.15);
}

.contact-icon {
  font-size: 32px;
  color: #083d77;
  margin-bottom: 10px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.contact-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #222;
}

.contact-card a {
  color: #1e88e5;
  font-size: 16px;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-heading {
    font-size: 20px;
  }
}










/* Contact Section Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.contact-section {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #E53935;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'DM Serif Text', serif;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card h3 {
  color: darkblue;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  color: #0d47a1;
}

.card ul li:last-child {
  border-bottom: none;
}

.card ul li span {
  color: #0d47a1;
  font-weight: 500;
}

.highlight {
  color: #1b5e20;
  font-weight: bold;
}

.map-container {
  margin-top: 10px;
  position: relative;
}

.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #1a237e;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.map-btn:hover {
  background-color: #0d47a1;
}

/* Responsive */
@media (max-width: 768px) {
  .card ul li {
    flex-direction: column;
    align-items: flex-start;
  }

  .card ul li span {
    margin-top: 4px;
  }

  .map-btn {
    width: 100%;
    text-align: center;
  }
}













/* Google Rating Box */
.google-rating-box {
  background: linear-gradient(135deg, #fbcf33, #f6b20e);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.google-rating-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.google-rating-box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.google-rating-box .review-button {
  background-color: #fff;
  color: #f6b20e;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  border: 2px solid #fff;
}

.google-rating-box .review-button:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* Emergency Contact */
.emergency-contact {
  background-color: #ffecec;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin: 30px 20px;
  border-radius: 10px;
}

.emergency-contact h2 {
  color: #b30000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.emergency-contact p {
  color: #333;
  font-size: 16px;
  margin-bottom: 25px;
}

.emergency-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.call-btn,
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.call-btn {
  background-color: #d00000;
  color: #fff;
}

.whatsapp-btn {
  background-color: #25d366;
  color: #fff;
}

.call-btn:hover {
  background-color: #a60000;
}

.whatsapp-btn:hover {
  background-color: #1ebd58;
}

/* Responsive Layout */
@media (min-width: 600px) {
  .emergency-buttons {
    flex-direction: row;
    justify-content: center;
  }
}