/* Footer Component */
.footer {
  background: var(--bg-footer);
  padding: clamp(3rem, 8vw, 4rem) 0 clamp(2rem, 5vw, 3rem) 0;
  margin-top: auto;
  font-family: 'Inter', var(--font-family);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 4rem);
}

/* Main Footer Content */
.footer__main {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
  grid-template-columns: 1fr;
}

/* Brand Section */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 320px;
}

.footer__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer__logo-img {
  width: clamp(150px, 20vw, 206.665px);
  height: auto;
  aspect-ratio: 206.66/78.00;
}

.footer__description {
  color: var(--text-tertiary);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* Footer Sections */
.footer__section {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.footer__section-title {
  color: var(--text-footer-primary);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  line-height: 1.43;
  margin: 0;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.footer__link {
  color: #EB1260;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__link:hover {
  color: #C10E52;
  transform: translateX(2px);
}

.footer__badge {
  background: #EB1260;
  color: white;
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  font-weight: 500;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

/* Newsletter Section */
.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.footer__newsletter-title {
  color: var(--text-footer-primary);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  font-weight: 600;
  line-height: 1.43;
  margin: 0;
}

.footer__subscribe-form {
  width: 100%;
}

.footer__input-group {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.footer__email-input {
  flex: 1;
  min-width: 200px;
  padding: clamp(0.5rem, 2vw, 0.625rem) clamp(0.75rem, 2vw, 1rem);
  border: 1px solid var(--border-footer);
  border-radius: var(--radius-md);
  background: var(--bg-primary-footer);
  font-family: inherit;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  color: var(--text-footer-primary);
  transition: all var(--transition-fast);
}

.footer__email-input::placeholder {
  color: var(--text-footer-primary);
  font-weight: 400;
}

.footer__email-input:focus {
  outline: none;
  border-color: #EB1260;
  box-shadow: 0 0 0 3px rgba(235, 18, 96, 0.1);
}

.footer__subscribe-btn {
  display: flex;
  padding: clamp(0.5rem, 2vw, 0.625rem) clamp(0.75rem, 2vw, 1rem);
  justify-content: center;
  align-items: center;
  gap: clamp(0.25rem, 1vw, 0.375rem);
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #EB1260;
  box-shadow: 
      0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 
      0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset, 
      0px 1px 2px 0px rgba(10, 13, 18, 0.05);
  
  color: white;
  font-family: inherit;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.footer__subscribe-btn:hover {
  background: #C10E52;
  transform: translateY(-1px);
  box-shadow: 
      0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 
      0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset, 
      0px 2px 4px 0px rgba(10, 13, 18, 0.1);
}

.footer__subscribe-btn:active {
  transform: translateY(0);
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  padding-top: clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--border-footer);
}

.footer__copyright {
  color: var(--text-quaternary);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
}

.footer__copyright p {
  margin: 0;
}

.footer__legal-links {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
}

.footer__legal-link {
  color: var(--text-quaternary);
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--text-tertiary);
}

/* Responsive Breakpoints */
@media (min-width: 480px) {
  .footer__input-group {
      flex-wrap: nowrap;
  }
  
  .footer__email-input {
      min-width: auto;
  }
}

@media (min-width: 768px) {
  .footer__main {
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 4vw, 3rem);
  }
  
  .footer__brand {
      grid-column: 1;
      grid-row: 1;
  }
  
  .footer__newsletter {
      grid-column: 2;
      grid-row: 1;
  }
  
  .footer__section:nth-of-type(1) {
      grid-column: 1;
      grid-row: 2;
  }
  
  .footer__section:nth-of-type(2) {
      grid-column: 2;
      grid-row: 2;
  }
}

@media (min-width: 1024px) {
  .footer__main {
      grid-template-columns: 320px 1fr 1fr 1fr;
      gap: clamp(2rem, 3vw, 2rem);
      align-items: flex-start;
  }
  
  .footer__brand {
      grid-column: 1;
      grid-row: 1;
  }
  
  .footer__section:nth-of-type(1) {
      grid-column: 2;
      grid-row: 1;
  }
  
  .footer__section:nth-of-type(2) {
      grid-column: 3;
      grid-row: 1;
  }
  
  .footer__newsletter {
      grid-column: 4;
      grid-row: 1;
  }
}