/* ============================================================
   Partner With Us Page Styles
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.partner-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #1A4731 0%, #0F2D1E 100%);
  text-align: center;
  color: white;
}

.partner-hero .eyebrow { color: var(--gold); }

.partner-hero .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  color: white;
  margin-bottom: 24px;
}

.partner-hero .hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Partnership Types ───────────────────────────────────── */
.partner-types { background: var(--bg); }

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.type-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}

.type-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.type-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.type-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ── Form Section ────────────────────────────────────────── */
.partner-form-section { background: white; }

.partner-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.partner-form-container {
  background: var(--bg);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-subheading {
  color: var(--gray-500);
  font-size: 16px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field:last-child { margin-bottom: 0; }

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--orange); }

.form-field textarea { resize: vertical; min-height: 100px; }

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

/* ── Checkboxes ──────────────────────────────────────────── */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  color: var(--gray-700);
  background: white;
}

.checkbox-label:hover {
  border-color: var(--orange);
  background: rgba(244,98,42,0.04);
}

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

.checkbox-label input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: var(--orange);
}

/* ── Form Actions ────────────────────────────────────────── */
.form-actions { margin-top: 40px; text-align: center; }

.form-actions .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}

.form-privacy {
  font-size: 13px;
  color: var(--gray-500);
}

/* ── Sidebar ─────────────────────────────────────────────── */
.partner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.highlight-card {
  background: linear-gradient(135deg, #1A4731, #0F2D1E);
  color: white;
}

.highlight-card h3 { color: white; }
.highlight-card p  { color: rgba(255,255,255,0.82); }

.sidebar-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-card p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.sidebar-list {
  list-style: none;
  padding: 0;
}

.sidebar-list li {
  padding: 9px 0 9px 28px;
  position: relative;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-list li:last-child { border-bottom: none; }

.sidebar-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
  transition: var(--transition);
  text-decoration: none;
}

.contact-links a:hover {
  background: rgba(244,98,42,0.08);
  color: var(--orange);
}

.sidebar-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.sidebar-steps li {
  counter-increment: step-counter;
  padding: 10px 0 10px 36px;
  position: relative;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.5;
}

.sidebar-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .partner-form-wrapper { grid-template-columns: 1fr; }
  .partner-sidebar      { position: static; display: grid; grid-template-columns: repeat(3,1fr); }
  .types-grid           { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .partner-hero         { padding: 140px 0 60px; }
  .partner-form-container { padding: 32px 24px; }
  .types-grid           { grid-template-columns: 1fr; }
  .partner-sidebar      { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .checkbox-group       { grid-template-columns: 1fr; }
}
