/* Partners Page Styles */
.partners-hero-section {
  background: #fff;
  padding: 80px 0 40px 0;
  text-align: center;
}
.partners-hero-title {
  font-family: "Bellefair", serif;
  font-size: 2.7rem;
  color: #c0392b;
  margin-bottom: 0.5rem;
}
.partners-hero-tagline {
  font-family: "Belleza", sans-serif;
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.partners-welcome-section {
  background: #f8f9fa;
  padding: 60px 0 60px 0;
  text-align: center;
}
.partners-welcome-container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 3rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.partners-welcome-title {
  font-family: "Bellefair", serif;
  font-size: 2rem;
  color: #c0392b;
  margin-bottom: 1rem;
}
.partners-welcome-desc {
  font-family: "Belleza", sans-serif;
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.reseller-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.reseller-form .form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
.reseller-form label {
  font-family: "Belleza", sans-serif;
  color: #c0392b;
  font-size: 1rem;
  font-weight: 500;
}
.reseller-form input,
.reseller-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Belleza", sans-serif;
  background: #f8f9fa;
  transition: border 0.2s;
}
.reseller-form input:focus,
.reseller-form textarea:focus {
  border: 1.5px solid #c0392b;
  outline: none;
}
.reseller-form .cta-button {
  margin-top: 0.5rem;
  width: 100%;
  font-size: 1.1rem;
}
.form-status.success {
  color: #27ae60;
  margin-top: 1rem;
  font-weight: 500;
}
.partners-contact-cta {
  margin-top: 1.5rem;
}
.partners-contact-cta .cta-link {
  color: #ff6b6b;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.partners-contact-cta .cta-link:hover {
  color: #c0392b;
}
.partners-form-wrapper {
  width: 100%;
  max-width: 800px;
  align-self: center;
  margin-bottom: 0;
  overflow-x: hidden;
}
.partners-form-wrapper iframe {
  width: 100% !important;
  min-width: 0;
  max-width: 100%;
  min-height: 600px;
  height: auto;
  aspect-ratio: 4/3;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  background: #fff;
  display: block;
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .partners-list-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .partner-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .partners-welcome-container {
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
  .partners-form-wrapper iframe {
    min-height: 400px;
    aspect-ratio: 1/1;
  }
}

@media (max-width: 600px) {
  .partners-hero-title {
    font-size: 2rem;
  }
  .partners-welcome-container {
    padding: 1.5rem 0.5rem 1rem 0.5rem;
  }
  .partners-form-wrapper iframe {
    min-height: 320px;
    aspect-ratio: 1/1.2;
  }
}
