.footer {
  background: #0d1b2a;
  color: #fff;
  padding: 4rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}


.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
}


.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: clamp(260px, 30vw, 340px); 
  height: auto;
  object-fit: contain;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 1.8rem auto;
  line-height: 1.7;
  max-width: 520px;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  text-align: center;
}

/* Socials */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.social-link {
  width: clamp(40px, 3vw, 48px);
  height: clamp(40px, 3vw, 48px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.25s ease;
}

.social-link:hover {
  background: #f5b301;
  transform: scale(1.08);
}

.social-link .icon {
  width: clamp(20px, 2vw, 24px);
  height: clamp(20px, 2vw, 24px);
  stroke: #fff;
  transition: stroke 0.3s;
}

.social-link:hover .icon {
  stroke: #0d1b2a; 
}


.footer-links,
.footer-services {
  text-align: center;
  margin-top: 2rem;
}

.footer-services a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-services a:hover {
  color: #f5b301;
}



.footer-links h3,
.footer-services h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.9rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: #f5b301;
}


.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #888;
  background: #0d1b2a; 
}

.footer-bottom a {
  color: #facc15;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom .creator {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.9;
}


@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    align-items: center;
  }

  .footer-links,
  .footer-services {
    margin-top: 0;
  }

  .footer-services {
    margin-top: 5.3rem; 
  }
}
