/* ===========================
   CONTACT PAGE STYLING
   =========================== */

.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.contact-section h2 span {
  color: #00a86b;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid Layout */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 3rem;
  padding: 0 60px;
  align-items: start;
}

/* Info Box */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.info-box i {
  font-size: 1.8rem;
  color: #00a86b;
  margin-bottom: 10px;
}

.info-box h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 5px;
}

.info-box p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Form */
.contact-form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: left;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00a86b;
}

.contact-btn {
  background: #00a86b;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #008f5f;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    padding: 0 30px;
  }
  .contact-section {
    padding: 80px 0;
  }
}