/* General Layout */
body, .main-content {
  background: #eef7e9;
}

.contact-us-container {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin: 4rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.112);
  overflow: hidden;
}

/* Contact Info Section (Now Left) */
.contact-us-info-wrapper {
  flex: 1;
  min-width: 450px;
  background: #d4ead5;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-us-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #385723;
  margin-bottom: 1rem;
}

.contact-us-info-card {
  background: #e9f2e9;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-us-info-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(39, 131, 82, 0.2);
}

.contact-us-info-card i {
  font-size: 1.5rem;
  color: #385723;
  margin-top: 0.2rem;
}

.contact-us-info-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

/* Form Section (Now Right) */
.contact-us-form-wrapper {
  flex: 2;
  min-width: 450px;
  background: #fff;
  padding: 3rem 2.5rem;
}

.form-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #385723;
}

/* Form Fields */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

.form-group label i {
  margin-right: 0.7rem;
  color: #385723;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background: #fcfcfc;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #385723;
  outline: none;
  background: #fff;
  box-shadow: 0 0 8px rgba(56, 87, 35, 0.15);
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 0.5rem;
}

.phone-input-group select {
  flex: 0 0 auto;
  width: 120px;
}

.phone-input-group input {
  flex: 1;
}

/* Button */
.btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #385723;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn i {
  margin-right: 0.5rem;
}

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

.btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-us-container {
    flex-direction: column-reverse; /* Form on top in mobile */
    margin: 2rem auto;
    width: 95%;
  }

  .contact-us-form-wrapper,
  .contact-us-info-wrapper {
    min-width: 100%;
    padding: 2rem;
  }
  
  .phone-input-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .phone-input-group select {
    width: 100%;
  }
}