/* Main layout wrapper */
.main-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Accent color class */
.highlight {
  color: #015430;
  font-weight: 600;
}

/* Contact Section Wrapper */
.contact-section {
  background: linear-gradient(to bottom, #f7fbff 0%, #ffffff 100%);
  padding: 80px 0 60px 0;
}

/* Container Box */
.contact-container, .contact-flex {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  padding: 48px 36px;
}

/* Contact Info Box */
.contact-info {
  flex: 1 1 320px;
  min-width: 280px;
}
.contact-info h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.contact-info p {
  font-size: 1.08rem;
  color: #555;
  margin-bottom: 22px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #333;
  margin-bottom: 12px;
}
.contact-info i {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #015430;
}

/* Social Icons */
.contact-social a {
  color: #fff;
  background: #015430;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 115, 230, 0.18);
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.contact-social a:hover {
  background: #015430;
  transform: translateY(-3px) scale(1.12);
}

/* Contact Form Styling */
.contact-form {
  flex: 1 1 370px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f8fbfd;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0, 115, 230, 0.08);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 1.07rem;
  border: 1.5px solid #d7e2ec;
  background: #fff;
  transition: 0.3s;
  margin-bottom: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #015430;
  box-shadow: 0 0 0 4px rgba(0, 115, 230, 0.13);
}

/* Submit Button */
.contact-btn {
  align-self: flex-start;
  background: linear-gradient(90deg, #03693d 60%, #18db87 100%);
  padding: 15px 44px;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.4,2,.6,1);
  box-shadow: 0 4px 12px rgba(0, 115, 230, 0.18);
  letter-spacing: 0.5px;
}
.contact-btn:hover {
  background: linear-gradient(90deg, #18db87 60%, #03693d 100%);
  transform: translateY(-2px) scale(1.06);
}

/* Map Embed */
.contact-map {
  flex: 1 1 370px;
  min-width: 300px;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #f7fbff;
  box-shadow: 0 4px 20px rgba(0, 115, 230, 0.10);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 18px;
}

/* Media Queries */
@media (max-width: 1024px) {
  .contact-container, .contact-flex {
    flex-direction: column;
    gap: 24px;
    padding: 28px 6vw;
  }
  .contact-info, .contact-form, .contact-map {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 28px 0 10px;
  }
  .contact-info h2 {
    font-size: 1.25rem;
  }
  .contact-form {
    padding: 12px 2vw;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 115, 230, 0.08);
  }
  .contact-map {
    height: 180px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 115, 230, 0.08);
  }
  .contact-info p, .contact-info li {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .main-content-wrapper {
    padding: 0 2vw;
  }
  .contact-btn {
    width: 100%;
    text-align: center;
    font-size: 0.98rem;
    padding: 12px 0;
  }
  .contact-info h2 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .contact-container, .contact-flex {
    padding: 4px 0;
    border-radius: 0;
    box-shadow: none;
    gap: 12px;
  }
  .contact-form, .contact-map {
    border-radius: 8px;
    box-shadow: none;
    padding: 8px 2vw;
  }
  .contact-map {
    height: 120px;
  }
}
