
.section-title{
  text-align: center;
}
/* ===== Contact Header ===== */
.contact-header {
  text-align: center;
  background: linear-gradient(135deg, #f8bbd0, #fce4ec);
  color: #e91e8f;
  padding: 60px 20px;
}

.contact-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #e91e8f;
  font-weight: 600;
}

.contact-header p {
  font-size: 16px;
  color: #555;
}

/* ===== Contact Section ===== */
.contact-section {
  padding-top: 10px;
  padding-bottom:  20px;
  padding-inline: 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

/* Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #e91e8f;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  color: #e91e8f;
  font-size: 18px;
  margin-right: 12px;
}

.contact-info .social-links {
  margin-top: 15px;
}

.contact-info .social-links a {
  color: #333;
  margin-right: 15px;
  transition: 0.3s;
}

.contact-info .social-links .social i{
  font-size: 20px;
}

/* Form */
.contact-form {
  flex: 1.3;
  min-width: 300px;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #e91e8f;
  font-weight: 600;
}

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

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

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e91e8f;
  box-shadow: 0 0 5px rgba(233, 30, 99, 0.3);
}

.contact-form button {
  background: #e91e8f;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #d81b60;
}

/* ===== Map ===== */
.map iframe {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 10px;
  border: 2px solid #f8bbd0;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding-top: 25px;
  padding-bottom:  20px;
  padding-inline: 20px;
  border-radius: 10px;
}

.faq-section h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #8a3b49;
  font-weight: 600;
}

.faq-item {
  max-width: 90%;
  margin: 0 auto 15px;
}

.faq-question {
  width: 100%;
  background: #e91e8f;
  border: none;
  padding: 15px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

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

.faq-answer {
  display: none;
  background: #fff;
  padding: 15px;
  border-radius: 0 0 8px 8px;
  font-size: 15px;
  line-height: 1.6;
  border-left: 3px solid #e91e8f;
  color: #444;
}

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

  .form-row {
    flex-direction: column;
  }

  .contact-header h1 {
    font-size: 28px;
  }
}
