/* ==============================
   CONTACT SECTION
============================== */
.contact-header,
.contact-header h2,
.contact-header p,
.contact-info,
.contact-form h3 {
  text-align: center;
}


.contact-header {
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.contact-header p {
  color: #666;
}

.contact-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.info-card {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.info-card i {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 12px;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #222;
}

.info-card p {
  color: #555;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: auto;
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6b35;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  background: #ff6b35;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #e55b2a;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 400px;
  }
}
