/* ==========================================
   FOOTER
   ========================================== */

.site-footer{
  background:linear-gradient(135deg, #1a2332 0%, #0f1724 100%);
  color:#fff;
  padding:4rem 0 0;
  margin-top:1.5rem;
  position:relative;
}

.site-footer::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  background:var(--gradient-3);
}

/* Footer Content Grid */
.footer-content{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:3rem;
  padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

/* Footer About Section */
.footer-about{
  max-width:350px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:1rem;
  margin-bottom:1.25rem;
}

.footer-logo-wrapper{
  width:56px;
  height:56px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(31,139,241,0.3);
  flex-shrink:0;
}

.footer-logo{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.footer-brand-name{
  font-size:1.5rem;
  font-weight:800;
  color:white;
  display:block;
  margin-bottom:0.25rem;
}

.footer-tagline{
  font-size:0.85rem;
  color:rgba(255,255,255,0.7);
  margin:0;
  line-height:1.4;
}

.footer-description{
  color:rgba(255,255,255,0.8);
  line-height:1.7;
  margin:0 0 1.5rem;
  font-size:0.95rem;
}

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

.social-link{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.1);
  border-radius:10px;
  color:white;
  transition:all 0.3s ease;
  text-decoration:none;
  backdrop-filter:blur(10px);
}

.social-link:hover{
  background:var(--gradient-3);
  transform:translateY(-3px);
  box-shadow:0 4px 12px rgba(31,139,241,0.4);
}

/* Footer Columns */
.footer-col{
  display:flex;
  flex-direction:column;
}

.footer-title{
  font-size:1.125rem;
  font-weight:700;
  color:white;
  margin:0 0 1.25rem;
  position:relative;
  padding-bottom:0.75rem;
}

.footer-title::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:40px;
  height:3px;
  background:var(--gradient-3);
  border-radius:2px;
}

/* Footer Links */
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:0.625rem;
}

.footer-links a{
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  font-size:0.95rem;
  transition:all 0.3s ease;
  display:inline-block;
  position:relative;
  padding-left:0;
}

.footer-links a::before{
  content:'→';
  position:absolute;
  left:-20px;
  opacity:0;
  transition:all 0.3s ease;
}

.footer-links a:hover{
  color:white;
  padding-left:20px;
  transform:translateX(2px);
}

.footer-links a:hover::before{
  opacity:1;
  left:0;
}

/* Footer Contact List */
.footer-contact-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.footer-contact-list li{
  display:flex;
  align-items:center;
  gap:0.75rem;
  color:rgba(255,255,255,0.8);
  font-size:0.9rem;
}

.footer-contact-list svg{
  flex-shrink:0;
  color:var(--primary-light);
}

.footer-contact-list a{
  color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:all 0.3s ease;
}

.footer-contact-list a:hover{
  color:white;
  text-decoration:underline;
}

/* Footer Bottom */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:2rem 0;
  flex-wrap:wrap;
  gap:1rem;
}

.footer-copyright,
.footer-credits{
  margin:0;
}

.footer-copyright p,
.footer-credits p{
  margin:0;
  font-size:0.9rem;
  color:rgba(255,255,255,0.6);
}

.heart{
  color:#ff6b6b;
  animation:heartbeat 1.5s ease-in-out infinite;
  display:inline-block;
}

@keyframes heartbeat{
  0%, 100%{
    transform:scale(1);
  }
  10%, 30%{
    transform:scale(1.1);
  }
  20%, 40%{
    transform:scale(0.9);
  }
}

/* Responsive Footer */
@media(max-width:1024px){
  .footer-content{
    grid-template-columns:1fr 1fr;
    gap:2.5rem;
  }

  .footer-about{
    grid-column:1 / -1;
    max-width:100%;
  }
}

@media(max-width:640px){
  .footer-content{
    grid-template-columns:1fr;
    gap:2.5rem;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:0.75rem;
  }

  .footer-social{
    justify-content:center;
  }
}


