/* Footer Styles */
.footer {
    position: relative;
    background-color: #0e0e0e;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
    overflow: hidden;
    z-index: 1;
  }
  
  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff3366, #ff6b3d, #ffd23f);
    z-index: 2;
  }
  
  .footer .grid-overlay {
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  .footer__container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer__logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer__logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .footer__logo:hover {
    transform: scale(1.05);
  }
  
  .footer__slogan {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }
  
  .footer__contact-title, 
  .footer__nav-title, 
  .footer__social-title {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
  }
  
  .footer__contact-title::after, 
  .footer__nav-title::after, 
  .footer__social-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #ff6b3d);
  }
  
  .footer__contact-info {
    margin-bottom: 1.5rem;
  }
  
  .footer__contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
  }
  
  .footer__contact-icon {
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3366, #ff6b3d);
    color: #fff;
    font-size: 1rem;
  }
  
  .footer__nav-list {
    list-style: none;
    padding: 0;
  }
  
  .footer__nav-item {
    margin-bottom: 1rem;
  }
  
  .footer__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1rem;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
  }
  
  .footer__nav-link::before {
    content: "→";
    position: absolute;
    left: 0;
    transform: translateX(-5px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .footer__nav-link:hover {
    color: #ff3366;
    transform: translateX(5px);
  }
  
  .footer__nav-link:hover::before {
    transform: translateX(0);
    opacity: 1;
  }
  
  .footer__social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .footer__social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, background 0.3s;
  }
  
  .footer__social-item:hover {
    transform: translateY(-5px);
    background: #f0f0f0;
  }
  
  .footer__social-icon {
    width: 20px;
    height: 20px;
    /* filter: invert(1); */
  }
  
  .footer__newsletter {
    margin-top: 1.5rem;
  }
  
  .footer__newsletter-form {
    display: flex;
    margin-top: 1rem;
    max-width: 300px;
  }
  
  .footer__newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
  }
  
  .footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .footer__newsletter-button {
    background: linear-gradient(135deg, #ff3366, #ff6b3d);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .footer__newsletter-button:hover {
    background: linear-gradient(135deg, #ff6b3d, #ff3366);
  }
  
  .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
  }
  
  .footer__copyright {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
  }
  
  .footer__design-by {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    opacity: 0.5;
  }
  
  .footer__back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff3366, #ff6b3d);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  
  .footer__back-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .footer__back-to-top:hover {
    transform: scale(1.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer {
      padding: 3rem 1.5rem 1rem;
    }
    
    .footer__content {
      grid-template-columns: 1fr;
    }
    
    .footer__logo-container {
      align-items: center;
      text-align: center;
      margin-bottom: 2rem;
    }
    
    .footer__contact-title::after, 
    .footer__nav-title::after, 
    .footer__social-title::after {
      left: 50%;
      transform: translateX(-50%);
      width: 40%;
    }
    
    .footer__contact-title, 
    .footer__nav-title, 
    .footer__social-title {
      display: block;
      text-align: center;
      width: 100%;
    }
    
    .footer__contact-info,
    .footer__nav-list {
      text-align: center;
    }
    
    .footer__contact-item {
      justify-content: center;
    }
    
    .footer__social-links {
      justify-content: center;
    }
    
    .footer__newsletter-form {
      margin: 1rem auto;
    }
  }
  
  @media (max-width: 480px) {
    .footer__nav-link {
      font-size: 1rem;
    }
    
    .footer__social-item {
      width: 35px;
      height: 35px;
    }
    
    .footer__social-icon {
      width: 18px;
      height: 18px;
    }
  } 