/* ==========================================
   OFFICIAL PARTNERS SECTION - MINIMALISTIC
   ========================================== */

.partners-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08) 0%, rgba(46, 125, 50, 0.12) 100%);
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(46, 125, 50, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.partners-showcase {
  position: relative;
  z-index: 2;
}

/* Partnership Content */
.partnership-content {
  padding: 2rem 0;
}

.partner-logo-showcase {
  margin-bottom: 2rem;
  text-align: center;
}

.partner-logo {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.partnership-info {
  margin-bottom: 2rem;
}

.partnership-title {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.partnership-description {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* Partnership Benefits - Badge Style */
.partnership-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.benefit-badge {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: 50px;
  border: 1px solid rgba(46, 125, 50, 0.15);
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.benefit-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.15), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
  border-color: var(--primary-green);
}

.benefit-badge:hover::before {
  left: 100%;
}

.benefit-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary-green);
  border-radius: 50%;
  margin-right: 0.75rem;
  color: var(--white);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.benefit-badge span {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-black);
}

/* Partnership CTA */
.partnership-cta {
  margin-top: 0.5rem;
}

.btn-animated {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-animated:hover::before {
  left: 100%;
}

.btn-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

/* Product Showcase */
.product-showcase {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
}

.product-image-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-container:hover .product-image {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-container:hover .product-overlay {
  transform: translateY(0);
}

.product-label {
  color: var(--white);
}

.product-name {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-type {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .partnership-content {
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .partnership-title {
    font-size: 1.5rem;
  }
  
  .partnership-description {
    font-size: 1rem;
  }
  
  .partnership-benefits {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
  }
  
  .benefit-badge {
    padding: 0.625rem 0.875rem;
  }
  
  .benefit-badge__icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    margin-right: 0.625rem;
  }
  
  .benefit-badge span {
    font-size: 0.85rem;
  }
  
  .product-showcase {
    padding: 1.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .partners-section {
    padding: 3rem 0;
  }
  
  .partnership-title {
    font-size: 1.375rem;
  }
  
  .partnership-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .benefit-badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  .benefit-badge__icon {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    margin-right: 0.5rem;
  }
  
  .benefit-badge span {
    font-size: 0.8rem;
  }
  
  .product-overlay {
    padding: 1rem;
  }
  
  .product-name {
    font-size: 1.125rem;
  }
  
  .product-type {
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .partnership-benefits {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .benefit-badge {
    justify-content: center;
  }
}
