/* CONTACT PAGE */

/* Contact Section Layout */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 8%;
  background: linear-gradient(to LEFT, #f8f8f8, #e0f8e0);
  gap: 2rem;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 3rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.contact-left p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 20px;
}

.email-info {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #e7f7ef;
  padding: 15px 20px;
  border-left: 5px solid var(--green-dark);
  border-radius: 8px;
  font-size: 0.95rem;
  color: #222;
}

.email-info img.email-icon {
  width: 200px;
  height: 200px;
}

/* Contact Form */
.contact-right {
  flex: 1;
  min-width: 300px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: 600;
  color: var(black);
  margin-bottom: 5px;
}

form input,
form textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: vertical;
}

form textarea {
  min-height: 120px;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 5px rgba(66, 186, 150, 0.4);
}

form .btn {
  background-color: var(--green-dark);
  color: white;
  padding: 10px 16px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form .btn:hover {
  background-color: var(--green-hover);
}

/* Responsive */
@media (max-width: 768px) {
  .contact {
    flex-direction: column;
  }
}

/* Loader Overlay */
#loaderOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

#loaderBox {
  background: #222;
  color: #fff;
  font-size: 1.25rem;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  font-family: "Inter", sans-serif;
}