/* =========================================
   PARTNERS PAGE STYLES
========================================= */

/* --- BANNER --- */
.page-banner {
  height: 40vh;
  min-height: 300px;
  background: linear-gradient(rgba(20, 92, 55, 0.9), rgba(20, 92, 55, 0.8)),
              url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=1200&q=80'); /* Handshake/Farm bg */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 60px;
}

.banner-content h1 { font-size: 3rem; margin-bottom: 0.5rem; }
.banner-content p { font-size: 1.2rem; color: #e5f3ec; }

/* --- INTRO SECTION --- */
#partner-intro {
  background: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}

.intro-container { max-width: 800px; margin: 0 auto; }
.intro-container h2 { color: var(--green-dark); font-size: 2.2rem; margin-bottom: 1rem; }
.intro-container p { color: var(--text-muted); line-height: 1.6; margin-bottom: 3rem; font-size: 1.1rem; }

.partner-types {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.type-card {
  flex: 1;
  min-width: 280px;
  background: #fdfdfd;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--green-main);
}

.type-card .icon { font-size: 3rem; margin-bottom: 1rem; }
.type-card h3 { color: var(--green-dark); margin-bottom: 0.5rem; }
.type-card p { color: var(--text-muted); margin-bottom: 1.5rem; }
.link-arrow { color: var(--green-main); font-weight: 600; font-size: 0.9rem; }

/* --- FARMING SCHEME (Split Layout) --- */
#farming-scheme {
  background: var(--green-soft);
  padding: 5rem 1.5rem;
}

.scheme-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.scheme-content { flex: 1; }
.scheme-image { flex: 1; }
.scheme-image img { width: 100%; border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.section-tag {
  color: var(--green-main);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.scheme-content h2 { font-size: 2.2rem; color: var(--green-dark); margin-bottom: 1.5rem; }
.scheme-content p { color: var(--text-main); margin-bottom: 1.5rem; line-height: 1.7; }

/* Requirements Box */
.requirements-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 5px solid var(--green-main);
  margin-top: 2rem;
}

.requirements-box h4 { color: var(--green-dark); margin-bottom: 1rem; }
.requirements-box ul { padding-left: 1.2rem; }
.requirements-box li { margin-bottom: 0.5rem; color: var(--text-muted); }

/* --- BILL OF RIGHTS --- */
#rights {
  background: var(--white);
  padding: 5rem 1.5rem;
}

.rights-container { max-width: 900px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--green-dark); font-size: 2rem; }

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.right-item {
  background: #f8fcf9;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.right-item .check {
  background: var(--green-main);
  color: white;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.right-item p { margin: 0; font-weight: 500; color: var(--green-dark); }

.cta-wrapper { text-align: center; }

/* --- DISTRIBUTORS SECTION --- */
#distributors {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.distributor-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* Swaps image to right */
  gap: 4rem;
}

.dist-text { flex: 1; }
.dist-image { flex: 1; }
.dist-image img { width: 100%; border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.dist-text h2 { font-size: 2.2rem; color: var(--green-dark); margin-bottom: 1.5rem; }
.dist-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--green-main);
  color: var(--green-main);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-outline:hover { background: var(--green-main); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .scheme-container, .distributor-container { flex-direction: column; }
  .scheme-image, .dist-image { width: 100%; }
  /* Reset order for Distributor on mobile so image is usually top/bottom depending on preference */
  .distributor-container { flex-direction: column; } 
  .dist-image { order: -1; } /* Image top */
}