/* ===== Contact Section ===== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff7f0, #ffe4cc); /* soft gradient */
  text-align: center;
  width: 100%;
}

.contact-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.contact-header h2 {
  font-size: 60px;
  color: #cc6600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-header p {
  font-size: 25px;
  color: #444;
  line-height: 1.7;
}

/* Contact Info Icons */
.contact-info {
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 18px;
  margin-bottom: 60px;
  max-width: 1200px;
}

@media (max-width: 500px){
  .contact-info {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  flex: 1 1 220px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.contact-card:hover {
  transform: translateY(-8px);
  border-top: 4px solid #cc6600;
}

.contact-icon {
  width: 80px;
  height: 80px;
  border: 2px dashed #cc6600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: #fff7f0;
}

.contact-icon img {
  width: 38px;
  height: 38px;
}

.contact-card h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
  max-width: 750px;
  margin: 0 auto 70px;
  text-align: left;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-form-container h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #cc6600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #cc6600;
  box-shadow: 0 0 8px rgba(204,102,0,0.3);
}

.contact-form button {
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff944d, #cc6600);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* Map */
.map-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.map-container h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #cc6600;
}

/* Highlight Bar */
.response-time {
  background: #cc6600;
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
}

/* FAQ Section */
.faq-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: left;
}

.faq-section h3 {
  font-size: 28px;
  color: #222;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: #fff7f0;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #cc6600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #ffe4cc;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  font-size: 15px;
  color: #444;
  background: #fff;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Scroll Animation Base ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
