/* ============================================
   CONTACT WRAPPER
   ============================================ */
.contact-wrapper {
  background-color: #f9fafb;
  min-height: 100vh;
  padding: 40px 0 60px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 14px;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #e91e63;
}

.breadcrumb .separator {
  color: #9ca3af;
}

.breadcrumb .current {
  color: #1f2937;
  font-weight: 500;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 15px;
}

.page-header p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   CONTACT CONTENT
   ============================================ */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
}

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  background: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e91e63;
}

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

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

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

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-section h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 20px;
}

/* Contact Methods */
.contact-methods {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.email-icon {
  background: #fce7f3;
  color: #e91e63;
}

.call-icon {
  background: #fce7f3;
  color: #e91e63;
}

.hours-icon {
  background: #fce7f3;
  color: #e91e63;
}

.method-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px;
}

.method-details p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.faq-text {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 15px;
}

.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e91e63;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-link:hover {
  gap: 12px;
}

.faq-link i {
  font-size: 12px;
}

/* Social Section */
.social-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.social-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-link.facebook {
  background: #f3f4f6;
  color: #6b7280;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.instagram {
  background: #f3f4f6;
  color: #6b7280;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link.twitter {
  background: #f3f4f6;
  color: #6b7280;
}

.social-link.twitter:hover {
  background: #1da1f2;
  color: white;
}

.social-link.pinterest {
  background: #f3f4f6;
  color: #6b7280;
}

.social-link.pinterest:hover {
  background: #e60023;
  color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .info-section {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 28px;
  }

  .form-section {
    padding: 25px;
  }

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

  .contact-wrapper {
    padding: 30px 0 40px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 24px;
  }

  .page-header p {
    font-size: 14px;
  }

  .form-section {
    padding: 20px;
  }

  .contact-methods {
    padding: 20px;
  }

  .method-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}