/* ========== Footer Section ========== */
.Footer-new {
  position: relative;
}

/* Partners Section */
.Footer-partners-section {
  padding: clamp(3rem, 6vw, 4rem) 0;
  border-bottom: 1px solid #e2e8f0;
}

.Footer-partners-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.Footer-partners-title {
  text-align: center;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
/* Спеціальний фікс для Frutex SVG */
.Footer-partner-item img[src*="frutex"] {
  /* Збільшуємо розмір */
  max-width: 180px !important;
  max-height: 70px !important;
  min-width: 160px;

}


.Footer-partners-list-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  row-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.Footer-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
}

.Footer-partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Footer-partner-item img {
  max-width: 140px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 767px) {
  .Footer-partners-list-main {
      gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .Footer-partner-item img {
      max-width: 120px;
      max-height: 48px;
  }
}

@media (max-width: 480px) {
  .Footer-partners-section {
      padding: 2.5rem 0;
  }

  .Footer-partners-list-main {
      gap: 1.5rem;
  }

  .Footer-partner-item {
      padding: 0.5rem 1rem;
  }

  .Footer-partner-item img {
      max-width: 100px;
      max-height: 40px;
  }
}


/* Main Footer Content */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.Footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

/* Brand Column */
.Footer-column.brand-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.Footer-brand:hover {
  transform: translateX(4px);
}

.Footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.Footer-brand:hover .Footer-logo-img {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}

.Footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.Footer-brand-title {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.Footer-brand-subtitle {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 500;
}

.Footer-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Social Links */
.Footer-social {
  display: flex;
  gap: 0.75rem;
}

.Footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.4s ease;
}

.Footer-social-link:hover {
  background: #3B82F6;
  border-color: #3B82F6;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* Quick Links Column */
.Footer-column.quick-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Footer-heading {
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
  margin: 0;
}

.Footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.Footer-links li {
  list-style: none;
}

.Footer-links a {
  font-size: 0.9375rem;
  color: #475569;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.Footer-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #3B82F6;
}

.Footer-links a:hover {
  color: #3B82F6;
  transform: translateX(4px);
}

.Footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Column */
.Footer-column.contact-only {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.Footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.Footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-style: normal;
}

.Footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: #475569;
  transition: all 0.3s ease;
}

.Footer-contact-item:hover {
  color: #0f172a;
  transform: translateX(2px);
}

.Footer-contact-item .material-symbols-outlined {
  color: #3B82F6;
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: all 0.3s ease;
}

.Footer-contact-item:hover .material-symbols-outlined {
  transform: scale(1.1);
}

.Footer-contact-item a {
  color: #475569;
  text-decoration: none;
  transition: color 0.3s ease;
}

.Footer-contact-item a:hover {
  color: #3B82F6;
}

.Footer-contact-text {
  color: #475569;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* Bottom Bar */
.Footer-bottom {
  border-top: 2px solid #e2e8f0;
  background: #ffffff;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}

.Footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.Footer-copyright p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

.Footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.Footer-legal-links a {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.Footer-legal-links a:hover {
  color: #3B82F6;
}

/* ========== Responsive Breakpoints ========== */

/* Large Desktop (1536px+) */
@media (min-width: 1536px) {
  .Footer-partners-list-main {
      grid-template-columns: repeat(7, 1fr);
  }

  .Footer-grid {
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 5rem;
  }
}

/* Desktop (1024px - 1535px) */
@media (min-width: 1024px) and (max-width: 1535px) {
  .Footer-partners-list-main {
      grid-template-columns: repeat(4, 1fr);
  }

  .Footer-grid {
      grid-template-columns: 2fr 1fr 1.5fr;
      gap: 4rem;
  }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .Footer-partners-list-main {
      grid-template-columns: repeat(3, 1fr);
  }

  .Footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
  }

  .Footer-column.contact-only {
      grid-column: 1 / -1;
  }

  .Footer-bottom-container {
      flex-direction: row;
      text-align: left;
  }
}

/* Tablet Portrait (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .Footer-partners-list-main {
      grid-template-columns: repeat(3, 1fr);
  }

  .Footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
  }

  .Footer-column.brand-info {
      grid-column: 1 / -1;
  }
}

/* Mobile (max-width: 599px) */
@media (max-width: 599px) {
  .Footer-partners-section {
      padding: 2.5rem 0;
  }

  .Footer-partners-list-main {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
  }

  .Footer-partner-item {
      height: 70px;
  }

  .Footer-partner-item img {
      max-height: 40px;
  }

  .Footer-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 2.5rem 0;
  }

  .Footer-logo-img {
      width: 48px;
      height: 48px;
  }

  .Footer-brand-title {
      font-size: 1.0625rem;
  }

  .Footer-social {
      flex-wrap: wrap;
  }

  .Footer-social-link {
      width: 40px;
      height: 40px;
  }

  .Footer-bottom-container {
      text-align: center;
  }

  .Footer-copyright p {
      font-size: 0.8125rem;
  }

  .Footer-legal-links {
      gap: 1rem;
  }

  .Footer-legal-links a {
      font-size: 0.8125rem;
  }
}

/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
  .Footer-partners-list-main {
      grid-template-columns: 1fr;
  }

  .Footer-partner-item {
      max-width: 280px;
      margin: 0 auto;
  }

  .Footer-brand {
      flex-direction: column;
      align-items: flex-start;
  }

  .Footer-social-link {
      width: 38px;
      height: 38px;
  }
}
