/* ===== COOPERATION BANNER ===== */
.footer-coop-banner {
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 50%, #6366f1 100%);
  padding: 40px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.footer-coop-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.footer-coop-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.coop-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.coop-banner-text h3 {
  color: white;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.coop-banner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
  max-width: 550px;
}

.coop-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.coop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.coop-btn-primary {
  background: white;
  color: #1e40af;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.coop-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.coop-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.coop-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ===== MAIN FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 0;
  margin-top: 0;
  border-top: none;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Logo */
.footer-logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--accent);
}

/* Footer About */
.footer-about {
  font-size: 13px;
  line-height: 1.7;
  color: #94a3b8;
  text-align: left;
  opacity: 1;
  margin-bottom: 20px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

/* Footer Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Footer Contacts */
.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #94a3b8;
}

.footer-contacts li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contacts li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contacts li a:hover {
  color: var(--accent);
}

/* Footer Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* ===== TRUST BADGES ===== */
.footer-badges {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.badges-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

.badge-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
  color: #94a3b8;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .coop-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .coop-banner-text p {
    max-width: 100%;
  }
  .coop-banner-actions {
    justify-content: center;
  }
  .badges-row {
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-coop-banner {
    padding: 30px 0;
    margin-top: 40px;
  }
  .coop-banner-text h3 {
    font-size: 20px;
  }
  .coop-banner-text p {
    font-size: 13px;
  }
  .coop-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .coop-btn {
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px 0 28px;
    text-align: center;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-about {
    text-align: center;
    font-size: 13px;
  }
  .footer-coop-text {
    font-size: 13px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-heading {
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-contacts {
    align-items: center;
  }
  .footer-contacts li {
    justify-content: center;
  }
  .footer-links {
    align-items: center;
  }
  .footer-links li {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
  }
  .badges-row {
    gap: 16px;
    justify-content: center;
  }
  .badge-item {
    font-size: 12px;
  }
}
