/* ==========================================================================
   PARTNERS PAGE — Professional Styling
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE-SPECIFIC VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --input-bg: rgba(255, 255, 255, 0.03);
  --input-border: rgba(250, 249, 246, 0.1);
  --input-focus: rgba(220, 20, 60, 0.5);
  --placeholder-color: rgba(250, 249, 246, 0.3);
}

/* --------------------------------------------------------------------------
   TRUST SECTION — Premium accent box
   -------------------------------------------------------------------------- */
.trust-section {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, transparent 100%);
  border: 1px solid rgba(220, 20, 60, 0.2);
  border-radius: 16px;
  padding: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--crimson);
}

.trust-section h2 {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--warm-white);
  margin-bottom: 40px;
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: left;
}

.trust-item h3 {
  color: var(--warm-white);
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.trust-item p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SCENARIO CARDS — Use cases
   -------------------------------------------------------------------------- */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.scenario-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.scenario-card:hover {
  border-color: var(--crimson);
  transform: translateY(-3px);
}

.scenario-card h3 {
  color: var(--warm-white);
  margin: 0 0 16px;
  font-size: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

.scenario-card .situation {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 16px;
  font-style: italic;
  border-left: 2px solid rgba(220, 20, 60, 0.3);
  padding-left: 12px;
}

.scenario-card .solution {
  font-size: 15px;
  color: var(--warm-white);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SERVICE GRID OVERRIDE — Partners page variant
   -------------------------------------------------------------------------- */
.partners-services .service-card {
  border-left: 3px solid var(--crimson);
}

.partners-services .service-card:hover {
  border-left-color: var(--soft-gold);
}

/* --------------------------------------------------------------------------
   PROCESS STEPS — Timeline style
   -------------------------------------------------------------------------- */
.process-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  border-left: 2px solid rgba(250, 249, 246, 0.1);
  padding-left: 32px;
  padding-bottom: 40px;
  position: relative;
}

.step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.step::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--crimson);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.15);
}

.step h3 {
  color: var(--warm-white);
  margin: 0 0 8px;
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 600;
}

.step p {
  color: var(--slate);
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   PARTNER CONTACT SECTION
   -------------------------------------------------------------------------- */
.partner-contact-section {
  padding: 80px 0;
}

.partner-contact-grid {
  max-width: 600px;
  margin: 40px auto 0;
}

.contact-form {
  background: var(--charcoal-2);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form-intro {
  margin-bottom: 32px;
  color: var(--slate);
  font-size: 15px;
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--warm-white);
  font-size: 15px;
}

.required {
  color: var(--crimson);
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  color: var(--warm-white);
  font-family: inherit;
  font-size: 16px;
  transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder-color);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 2px var(--input-focus);
  background: rgba(255, 255, 255, 0.05);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23faf9f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Checkbox Grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
  color: var(--slate);
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--warm-white);
}

.checkbox-label:has(input:checked) {
  background: rgba(220, 20, 60, 0.1);
  border-color: rgba(220, 20, 60, 0.3);
  color: var(--warm-white);
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--crimson);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   FAQ SECTION — Cleaner style
   -------------------------------------------------------------------------- */
.faq-section .service-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 24px 0;
}

.faq-section .service-card:hover {
  transform: none;
  box-shadow: none;
  border-bottom-color: var(--crimson);
}

.faq-section .service-card::before,
.faq-section .service-card::after {
  display: none;
}

/* --------------------------------------------------------------------------
   FOOTER NOTE
   -------------------------------------------------------------------------- */
.footer-note {
  text-align: center;
  padding: 30px 20px 40px;
  color: var(--slate);
  font-size: 13px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-note a {
  color: var(--slate);
}

.footer-note a:hover {
  color: var(--crimson);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .trust-section {
    padding: 40px 24px;
  }
  
  .trust-grid {
    gap: 24px;
  }
  
  .scenario-grid {
    grid-template-columns: 1fr;
  }
  
  .scenario-card {
    padding: 24px;
  }
  
  .contact-form {
    padding: 28px;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
