/* Core Variables */
:root {
  --font-heading: "Unbounded", cursive;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --primary: #15b144;
  --primary-dark: #0e8a33;
  --primary-light: rgba(21, 177, 68, 0.1);
  --white: #ffffff;
  --dark: #1a1a1a;
  --gray: #666666;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.partnership-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.92)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2940&auto=format&fit=crop")
      center/cover fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(21, 177, 68, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(21, 177, 68, 0.2);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  text-decoration: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Benefits Section */
.partnership-benefits {
  padding: 120px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-header p {
  color: var(--gray);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon i {
  font-size: 28px;
  color: var(--primary);
}

/* Impact Stats */
.impact-stats {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
  padding: 100px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card h4 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Partnership Types */
.partnership-types {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #e8f5e8 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(21, 177, 68, 0.2);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-header p {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 60px;
}

@media (min-width: 1200px) {
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.type-card {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

/* Horizontal card layout */
.type-card.horizontal {
  padding: 0;
}

.type-card.horizontal .card-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}

.type-card.horizontal .card-media {
  display: block;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

.type-card.horizontal .card-content {
  padding: 16px 18px;
}

/* Simple carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel .slides img {
  flex: 0 0 100%; /* each image takes full carousel width */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-btn.prev {
  left: 12px;
}
.carousel-btn.next {
  right: 12px;
}

.card-description {
  max-height: 78px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.card-description.expanded {
  max-height: 500px;
}

.read-more {
  margin-top: 6px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.benefits-list {
  margin: 12px 0 20px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 20px;
}

@media (min-width: 1200px) {
  .benefits-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Tabs for model filter */
.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 24px;
}

.model-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(21, 177, 68, 0.25);
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.model-tab:hover {
  background: var(--primary-light);
}

.model-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: transparent;
}

/* Card thumbnail */
.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  margin: 8px 0 14px;
  background: #f3f5f4;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
  animation: thumbPanZoom 14s ease-in-out infinite;
}
.type-card:hover .card-thumb img {
  transform: scale(1.06);
}
.card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.08)
  );
}
.card-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* Subtle auto pan/zoom for card thumbnails */
@keyframes thumbPanZoom {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(1%, -1%, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

.benefits-list li {
  margin: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefits-list li i {
  color: var(--primary);
  background: var(--primary-light);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-right: 0;
  margin-top: 2px;
}

.highlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 8px;
}

.highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(21, 177, 68, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.action-btn.primary {
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
}

.action-btn.secondary {
  background: #f1f5f3;
  color: var(--dark);
  padding: 12px 18px;
  border-radius: 10px;
}

/* Responsive: stack media/content */
@media (max-width: 992px) {
  .type-card.horizontal .card-body {
    grid-template-columns: 1fr;
  }
  .type-card.horizontal .card-media {
    height: 260px;
  }
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(21, 177, 68, 0.12);
  border-color: rgba(21, 177, 68, 0.22);
}

.type-card:hover::before {
  transform: scaleX(1);
}

.type-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(21, 177, 68, 0.05)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.type-card:hover .type-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.type-icon i {
  font-size: 32px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.type-card:hover .type-icon i {
  color: var(--white);
}

.type-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.3;
}

.type-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.type-features {
  list-style: none;
  margin: 24px 0;
}

.type-features li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.type-features li:last-child {
  border-bottom: none;
}

.type-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.type-features strong {
  color: var(--dark);
  font-weight: 600;
}

.card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.goal-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.learn-more-btn {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.learn-more-btn::after {
  content: "→";
  transition: transform 0.3s ease;
}

.learn-more-btn:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

.learn-more-btn:hover::after {
  transform: translateX(3px);
}

/* Enhanced CTA Section */
.partnership-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2940&auto=format&fit=crop")
      center/cover fixed;
  color: var(--white);
  text-align: center;
  position: relative;
}

.partnership-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 177, 68, 0.1),
    rgba(21, 177, 68, 0.05)
  );
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(21, 177, 68, 0.2);
  color: var(--primary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(21, 177, 68, 0.3);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 48px 0;
  flex-wrap: wrap;
}

.cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-top: 32px;
}

.cta-note i {
  color: var(--primary);
  font-size: 18px;
}

/* Success Stories */
.success-stories {
  padding: 120px 0;
  background: var(--white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* FAQ Section */
.partnership-faq {
  padding: 120px 0;
  background: #f8f9fc;
}

.faq-grid {
  max-width: 800px;
  margin: 60px auto 0;
}

/* CTA Section */
.partnership-cta {
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.92)),
    url("path-to-your-image.jpg") center/cover;
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .cta-content h2 {
    font-size: 48px;
  }

  .cta-stats {
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 15px;
  }

  .partnership-types {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .benefit-card {
    padding: 25px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .types-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .type-card {
    padding: 30px;
  }

  .type-card h3 {
    font-size: 20px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 18px;
  }

  .cta-stats {
    flex-direction: column;
    gap: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .partnership-cta {
    padding: 80px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card h4 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .type-card {
    padding: 25px;
  }

  .type-icon {
    width: 60px;
    height: 60px;
  }

  .type-icon i {
    font-size: 28px;
  }

  .card-cta {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .goal-badge {
    text-align: center;
  }

  .learn-more-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .benefit-card,
  .type-card {
    padding: 30px 20px;
  }

  .stat-card h4 {
    font-size: 36px;
  }
}

/* Success Stories Section */
.story-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.story-content {
  padding: 30px;
}

.story-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

.story-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.story-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* FAQ Section */
.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--gray);
  display: none;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* CTA Section Enhancements */
.partnership-cta {
  position: relative;
  overflow: hidden;
}

.partnership-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--primary-dark), var(--primary));
  opacity: 0.9;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-content .btn-primary {
  background: var(--white);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
}

.cta-content .btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
  .type-card,
  .story-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .story-card img {
    height: 200px;
  }

  .story-content {
    padding: 20px;
  }

  .story-content h3 {
    font-size: 20px;
  }

  .faq-question {
    padding: 16px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

/* Partner Us Section */
.partner-us {
  padding: 120px 0;
  background: linear-gradient(
      135deg,
      rgba(30, 40, 10, 0.98),
      rgba(26, 35, 8, 0.95)
    ),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80")
      center/cover fixed;
  position: relative;
  overflow: hidden;
}

.partner-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/pattern.svg") repeat;
  opacity: 0.03;
  animation: floatBackground 30s linear infinite;
}

.partner-us__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.partner-us__content {
  padding-right: 20px;
}

.partner-us__content h2 {
  font-family: "Unbounded", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-us__content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.partner-us__image {
  width: 100%;
  max-width: 100%;
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.partner-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.partner-us__image:hover img {
  transform: scale(1.05);
}

.partner-us__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.partner-stat {
  text-align: center;
}

.partner-stat__number {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-size: 2.5rem;
  background: linear-gradient(45deg, #fff, var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.partner-stat__label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Form Styles */
.partner-us__form-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  padding: 30px;
  width: 100%;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.partner-us__form-container h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.partner-us form {
  display: grid;
  gap: 20px;
}

.partner-us form input,
.partner-us form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--glass-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.partner-us form textarea {
  height: 120px;
  resize: vertical;
}

.partner-us form input:focus,
.partner-us form textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.1);
}

.partner-us form input::placeholder,
.partner-us form textarea::placeholder {
  color: var(--text-muted);
}

.partner-us form button {
  background: linear-gradient(45deg, var(--primary-light), var(--accent-green));
  color: var(--primary-dark);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(163, 255, 18, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partner-us form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(163, 255, 18, 0.3);
}

.partner-us form button i {
  transition: transform 0.3s ease;
}

.partner-us form button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .partner-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .partner-us__content {
    padding-right: 0;
    text-align: center;
  }

  .partner-us__stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .partner-us {
    padding: 80px 0;
  }

  .partner-us__content h2 {
    font-size: 2.5rem;
  }

  .partner-us__form-container {
    padding: 30px;
  }
}

/* FAQ Section Styling */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(
    to bottom,
    rgba(21, 177, 68, 0.05),
    rgba(255, 255, 255, 1) 100%
  );
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(21, 177, 68, 0.1);
  color: #15b144;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.faq-header h2 {
  font-size: 42px;
  color: #1f2937;
  margin-bottom: 16px;
  font-weight: 700;
}

.faq-header p {
  color: #6b7280;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 30px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h3 {
  color: #15b144;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.faq-item p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header h2 {
    font-size: 32px;
  }

  .faq-item {
    padding: 24px;
  }

  .faq-item h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 28px;
  }

  .faq-header p {
    font-size: 16px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item p {
    font-size: 15px;
  }
}

/* Enhanced Get Involved Section */
.get-involved {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(21, 177, 68, 0.05) 0%,
    rgba(255, 215, 0, 0.05) 100%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(21, 177, 68, 0.1);
  color: #15b144;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 42px;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-header p {
  color: #6b7280;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layout */
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card Styles */
.involvement-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.involvement-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #15b144;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon i {
  color: white;
  font-size: 24px;
}

.involvement-card h3 {
  font-size: 24px;
  color: #1f2937;
  margin-bottom: 12px;
}

.involvement-card > p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Opportunity List */
.opportunity-list {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.opportunity {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.opportunity i {
  color: #15b144;
  font-size: 20px;
}

.opportunity h4 {
  color: #1f2937;
  margin-bottom: 4px;
}

.opportunity p {
  color: #6b7280;
  font-size: 14px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1f2937;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #15b144;
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 177, 68, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* Checkbox Style */
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #15b144;
}

.checkbox label {
  color: #6b7280;
  font-size: 14px;
}

/* Button Styles */
.volunteer-button,
.submit-button {
  width: 100%;
  padding: 14px 24px;
  background: #15b144;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volunteer-button:hover,
.submit-button:hover {
  background: #34d367;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .involvement-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .get-involved {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .involvement-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .section-header p {
    font-size: 16px;
  }

  .opportunity {
    flex-direction: column;
    text-align: center;
  }

  .opportunity i {
    margin: 0 auto;
  }
}

/* Modern Partnership Types Redesign */
.partnership-types {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e8f5e8 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.partnership-types::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    rgba(21, 177, 68, 0.1),
    rgba(21, 177, 68, 0.05)
  );
  border: 1px solid rgba(21, 177, 68, 0.2);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 20px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.section-header p {
  font-size: 20px;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Modern Card Grid */
.types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

.type-card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 177, 68, 0.1);
}

.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.type-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 60px rgba(21, 177, 68, 0.15);
  border-color: rgba(21, 177, 68, 0.3);
}

.type-card:hover::before {
  transform: scaleX(1);
}

.type-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 40px rgba(21, 177, 68, 0.2);
}

.type-card.featured::before {
  background: linear-gradient(90deg, var(--primary), #ff6b35, var(--primary));
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 32px 0;
  margin-bottom: 20px;
}

.type-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    rgba(21, 177, 68, 0.05)
  );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.type-card:hover .type-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.type-icon i {
  font-size: 28px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.type-card:hover .type-icon i {
  color: var(--white);
}

.goal-display {
  text-align: right;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--white);
  font-weight: 600;
}

.goal-amount {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.goal-label {
  font-size: 12px;
  opacity: 0.9;
}

.type-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin: 0 32px 12px;
  color: var(--dark);
  line-height: 1.3;
}

.card-subtitle {
  color: #0e8a33;
  font-size: 20px;
  font-weight: bold;

  /* margin: 0 32px 24px; */
  line-height: 1.5;
}

.card-content {
  padding: 0 32px;
  margin-bottom: 32px;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(21, 177, 68, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(21, 177, 68, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(21, 177, 68, 0.08);
  border-color: rgba(21, 177, 68, 0.2);
  transform: translateX(8px);
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.feature-item div {
  font-size: 14px;
  line-height: 1.4;
}

.feature-item strong {
  color: var(--dark);
  font-weight: 600;
}

.card-actions {
  display: flex;
  gap: 12px;
  padding: 0 32px 32px;
}

.action-btn {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 177, 68, 0.3);
}

.action-btn.secondary {
  background: rgba(21, 177, 68, 0.1);
  color: var(--primary);
  border: 1px solid rgba(21, 177, 68, 0.2);
}

.action-btn.secondary:hover {
  background: rgba(21, 177, 68, 0.15);
  border-color: rgba(21, 177, 68, 0.3);
  transform: translateY(-2px);
}

/* Powerful CTA Section */
.partnership-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partnership-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(21, 177, 68, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(21, 177, 68, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-header {
  margin-bottom: 60px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(21, 177, 68, 0.2);
  border: 1px solid rgba(21, 177, 68, 0.3);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.cta-header h2 {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.cta-header p {
  font-size: 22px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
}

/* Impact Highlights */
.impact-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.highlight-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(21, 177, 68, 0.3);
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.highlight-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.highlight-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.highlight-progress {
  margin-top: 20px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  transition: width 2s ease;
}

.progress-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA Actions */
.cta-actions {
  margin: 60px 0;
}

.primary-action {
  margin-bottom: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 20px;
  padding: 24px 40px;
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 177, 68, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 8px;
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 20px;
}

.btn-arrow {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.cta-btn:hover .btn-arrow {
  transform: translateX(8px);
}

.action-note {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.secondary-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-icon {
  font-size: 20px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 36px;
  }

  .cta-header h2 {
    font-size: 36px;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .impact-highlights {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    margin: 40px 0;
  }

  .secondary-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn.secondary {
    margin: 8px 0;
    width: 100%;
    max-width: 300px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 20px;
  }
}

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

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 28px;
  }

  .cta-header h2 {
    font-size: 28px;
  }

  .header-badge,
  .cta-badge {
    padding: 10px 20px;
    font-size: 14px;
  }

  .type-icon {
    width: 56px;
    height: 56px;
  }

  .type-icon i {
    font-size: 24px;
  }

  .goal-display {
    padding: 6px 12px;
  }

  .goal-amount {
    font-size: 16px;
  }

  .feature-item {
    padding: 12px;
    gap: 12px;
  }

  .feature-icon {
    font-size: 20px;
  }

  .cta-btn {
    padding: 16px 24px;
    font-size: 16px;
  }

  .cta-btn.primary {
    padding: 20px 32px;
    font-size: 18px;
  }
}
