/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f9fdfa;
} */

.map-contact {
  padding: 40px 20px;
}

#map {
  height: 300px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 40px;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.location-box {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  border-top: 4px solid #00796b;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.location-box h3 {
  color: #00796b;
  margin-bottom: 10px;
  font-size: 20px;
}

.location-box p {
  margin: 5px 0;
  font-size: 15px;
  color: #555;
}

.location-box a.map-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border: 2px solid #00796b;
  color: #00796b;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location-box a.map-btn:hover {
  background-color: #00796b;
  color: #fff;
}

/*  */

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
} */

.container {
  max-width: 1000px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #009688;
  outline: none;
}

.contact-form .row input {
  flex: 1;
  min-width: 200px;
}

.contact-form button {
  padding: 14px 40px;
  background-color: #00897b;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00796b;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00897b;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #00695c;
}
