/* Contact Us Page Styles */

.contact-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
}



.contact-hero__gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}



.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info {
  padding: 80px 0;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.contact-method {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #ec4899;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.contact-method__icon {
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec4899;
}

.contact-method__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1a1a1a;
}

.contact-method__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-method__link {
  color: #ec4899;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-method__link:hover {
  color: #be185d;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.form-content {
  max-width: 700px;
}

.form-content .section-title {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.form-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.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-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-label span {
  color: #ec4899;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1a1a1a;
  font-family: inherit;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ec4899;
  background-color: #fff5f7;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0;
}

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: #ec4899;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.form-submit {
  align-self: flex-start;
  margin-top: 10px;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  border: 1px solid #fbcfe8;
  padding: 25px;
  border-radius: 12px;
}

.contact-card--special {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: white;
  border: none;
}

.contact-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.contact-card--special .contact-card__title {
  color: white;
}

.contact-card__text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  color: #666;
}

.contact-card--special .contact-card__text {
  color: #f3e8f5;
}

.contact-card__link {
  color: #ec4899;
  text-decoration: none;
  font-weight: 600;
  display: inline;
  transition: color 0.3s ease;
}

.contact-card--special .contact-card__link {
  color: white;
}

.contact-card__link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #ec4899;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.faq-item__question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 15px;
  line-height: 1.4;
}

.faq-item__answer {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Support Options Section */
.support-options {
  padding: 80px 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.support-option {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.support-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.support-option__icon {
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ec4899;
}

.support-option__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: #1a1a1a;
}

.support-option__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button Styles */
.btn--small {
  font-size: 0.85rem;
  padding: 8px 16px;
}

.btn--large {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* CTA Section */
.contact-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin: 0 0 20px;
  line-height: 1.3;
}

.cta-text {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero__title {
    font-size: 2.5rem;
  }

  .contact-hero__subtitle {
    font-size: 1rem;
  }

  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    order: -1;
  }

  .section-title {
    font-size: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero__title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .form-description {
    font-size: 0.9rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }
}
