/* ════════════════════════
   PAGE BANNER
════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, #ff004f, #ff6b95);
  color: #ffffff;
  text-align: center;
  padding: 80px 10%;
}

.page-banner h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-banner h1 span {
  color: #111111;
}

.page-banner p {
  font-size: 16px;
  opacity: 0.9;
}

/* ════════════════════════
   SECTION LABEL
════════════════════════ */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #ff004f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: #fff0f3;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ════════════════════════
   CONTACT INFO CARDS
════════════════════════ */
.contact-cards-section {
  padding: 70px 10%;
  background: #ffffff;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 0, 79, 0.08);
  border-bottom: 3px solid #ff004f;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(255, 0, 79, 0.16);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: #fff0f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-icon i {
  font-size: 24px;
  color: #ff004f;
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
}

.card-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.card-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-social a:hover {
  background: #ff004f;
  border-color: #ff004f;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ════════════════════════
   CONTACT FORM & MAP
════════════════════════ */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 10%;
  background: #fff0f3;
  align-items: start;
}

.contact-form-wrap h2,
.contact-map-wrap h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.contact-form-wrap h2 span,
.contact-map-wrap h2 span {
  color: #ff004f;
}

.contact-form-wrap p,
.contact-map-wrap p {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Form Styles */
.contact-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 30px rgba(255, 0, 79, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #111111;
  background: #ffffff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff004f;
  box-shadow: 0 0 0 3px rgba(255, 0, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff004f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  font-size: 16px;
  margin-top: 6px;
}

/* Map */
.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 0, 79, 0.12);
}

/* ════════════════════════
   FAQ SECTION
════════════════════════ */
.faq-section {
  padding: 80px 10%;
  background: #ffffff;
  text-align: center;
}

.faq-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 50px;
}

.faq-section h2 span {
  color: #ff004f;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1.5px solid #f0e0e4;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #ff004f;
  box-shadow: 0 4px 16px rgba(255, 0, 79, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.3s;
}

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

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
}

.faq-question i {
  color: #ff004f;
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 768px) {
  .page-banner h1 {
    font-size: 34px;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 6%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .faq-section h2,
  .contact-form-wrap h2,
  .contact-map-wrap h2 {
    font-size: 28px;
  }

  .contact-cards-section {
    padding: 50px 6%;
  }
}