/* Modern Contact Page Design */

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #f7f7f7;
}

/* Header Section */
.page-header {
  position: relative;
  height: 55vh;
  background: url('img/contact.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Green overlay */
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(155, 198, 208, 0.55); /* semi-transparent green overlay */
  z-index: 0;
}

/* keep text above overlay */
.page-header h1,
.page-header .breadcrumb {
  position: relative;
  z-index: 1;
}


.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.page-header h1 {
  position: relative;
  font-size: 2.8rem;
  font-weight: 600;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Contact Section */
.contact-section {
  padding: 80px 10%;
  background: #fff;
}

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

/* Left Info */
.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  font-size: 2rem;
  color: #1f3d25;
  margin-bottom: 15px;
}

.contact-info p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
}

/* Right Form */
.contact-form {
  flex: 1 1 50%;
  background: #f9fafb;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1f3d25;
  box-shadow: 0 0 6px rgba(31, 61, 37, 0.2);
  outline: none;
}

.send-btn {
  background: #1f3d25;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.send-btn:hover {
  background: #2e5932;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-info, .contact-form {
    width: 100%;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
}
