/* Footer Contact Us */

.contact-container {
  background-color: #1a629e4d;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  margin: 5rem auto 10rem;
  box-sizing: border-box;
}

.contact-header {
  margin-bottom: 10px;
  text-align: justify;
  padding: 15px;
  color: #0f395c;
}

.contact-header h1 {
  margin-bottom: 10px;
  font-size: 46px;
  text-align: center;
  font-weight: 700;
}

.contact-header p {
  margin-bottom: 20px;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #1a629e;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-options {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}

.contact-or {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  color: #067577;
  padding: 15px 18px;
}

.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

.contact-options button {
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  background-image: linear-gradient(#1d9097, #092f31cc);
  transition: background 0.3s ease;
  width: 95%;
  margin: 0 auto 10px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  color: #044c4e;
}

.contact-form textarea {
  resize: none;
  height: 80px;
}

.contact-form button {
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  background-image: linear-gradient(#1d9097, #092f31cc);
  transition: background 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.contact-form button:hover,
.contact-options button:hover {
  background: linear-gradient(135deg, #00796b, #004d40);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: none;
}

.overlay-text {
  color: white;
}

.loader-icon {
  font-size: 2em;
  vertical-align: middle;
  margin-right: 0.5em;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .contact-container {
    margin: 2rem auto 5rem;
    padding: 15px;
  }

  .contact-row {
    flex-direction: column;
    align-items: center;
  }

  .contact-options {
    width: 100%;
    margin-right: 0;
  }

  .contact-or {
    padding: 10px 0;
  }

  .contact-form {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contact-container {
    margin: 1rem auto 3rem;
    padding: 10px;
  }

  .contact-header {
    padding: 10px;
  }

  .contact-form button {
    max-width: 100%;
  }
}
