/* ===== RESET ===== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: "Poppins", "Georgia", serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO SECTION ===== */
.main {
  width: 100%;
  background: linear-gradient(135deg, #0d4008 0%, #1a5c12 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.main h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgb(254, 234, 165);
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main p {
  font-size: 18px;
  max-width: 700px;
  line-height: 1.6;
  color: rgba(254, 234, 165, 0.95);
}

/* ===== MAIN CONTAINER SECTION ===== */
.box2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===== LEFT COLUMN - CONTACT INFO ===== */
.box201 {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.box201:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.t1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0d4008;
  font-family: "Playfair Display", serif;
  border-bottom: 3px solid rgb(254, 234, 165);
  padding-bottom: 10px;
}

/* ===== CONTACT DETAILS ===== */
.contact-section {
  margin-bottom: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 4px solid #0d4008;
}

.contact-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d4008;
}

.contact-details {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 15px;
  color: #555;
}

.contact-details strong {
  color: #0d4008;
  display: inline-block;
  min-width: 140px;
}

.para {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  color: #666;
  font-style: italic;
}

/* ===== SERVICE PROMISE ===== */
.idx {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.idx li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.idx li:hover {
  background: rgb(254, 234, 165);
  transform: translateX(5px);
}

.promise-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0d4008, #1a5c12);
  color: rgb(254, 234, 165);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(13, 64, 8, 0.3);
}

.promise-content {
  flex: 1;
}

.promise-content strong {
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  color: #0d4008;
}

.promise-content {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== RIGHT COLUMN - FORM ===== */
.box202 {
  position: relative;
}

.form-section {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.form-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.form-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #0d4008;
  font-family: "Playfair Display", serif;
  border-bottom: 3px solid rgb(254, 234, 165);
  padding-bottom: 10px;
}

/* Success/Error Messages */
.form-section p[style*="color: green"],
.form-section p[style*="color: red"] {
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.form-section p[style*="color: green"] {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724 !important;
}

.form-section p[style*="color: red"] {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24 !important;
}

/* ===== FORM GROUPS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0d4008;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fafafa;
  color: #333;
  padding: 12px 15px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0d4008;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(13, 64, 8, 0.1);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #0d4008, #1a5c12);
  color: rgb(254, 234, 165);
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(13, 64, 8, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1a5c12, #0d4008);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 64, 8, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .box2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .main h1 {
    font-size: 36px;
  }

  .main p {
    font-size: 16px;
  }

  .t1,
  .form-section h2 {
    font-size: 24px;
  }

  .form-section,
  .box201 {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .main {
    padding: 60px 20px 40px;
  }

  .main h1 {
    font-size: 32px;
  }

  .main p {
    font-size: 15px;
  }

  .box2 {
    padding: 0 15px 40px;
  }

  .box201,
  .form-section {
    padding: 25px;
  }

  .t1,
  .form-section h2 {
    font-size: 22px;
  }

  .contact-section h3 {
    font-size: 18px;
  }

  .promise-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .promise-content strong {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .main h1 {
    font-size: 28px;
  }

  .main p {
    font-size: 14px;
  }

  .box201,
  .form-section {
    padding: 20px;
  }

  .t1,
  .form-section h2 {
    font-size: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .submit-btn {
    font-size: 15px;
    padding: 12px 25px;
  }

  .idx li {
    padding: 12px;
  }
}