@import url(./header.css);
@import url(./animations.css);
@import url(./pages-hero.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'AvenirMedium';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.5;
  min-height: 100vh;
  padding-top: 3rem;
}
.hero-section {
  margin: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
      rgba(0, 0, 0, 0.1) 0%,
      rgba(46, 125, 50, 0.8) 100%
    ),
    url("../img/team.jpeg");
  background-size: cover;
  background-position: center;
  padding: 24px;
  color: white;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Contact Content Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 20px;
  max-width: 1200px;
  margin: 40px auto;
}

@media (min-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info Section */
.contact-info {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--secondary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(46, 125, 50, 0.1) 0%,
    rgba(255, 152, 0, 0.1) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
}

.contact-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
}

.contact-content p {
  color: var(--gray);
  font-size: 16px;
}

/* Map Section */
.map-section {
  margin-top: 20px;
}

.map-container {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* Contact Form Section */
.contact-form-section {
  background-color: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  padding: 15px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    min-height: 350px;
    margin: 10px;
  }

  .hero-title {
    font-size: 24px;
  }

  .contact-container {
    padding: 15px;
    margin: 20px auto;
  }

  .contact-info,
  .contact-form-section {
    padding: 20px;
  }

  .map-container iframe {
    height: 250px;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: var(--primary);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}
