* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000000;
  color: #111;
}


.spacer {
  height: 40px;
}

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

footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #0DFDB1, transparent);
}

/* MAIN FOOTER */
.footer-main {
  padding: 60px 20px 40px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col h3 {
  color: #0DFDB1;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0DFDB1, transparent);
}

/* DESCRIPTION */
.footer-description {
  color: #999;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 14px;
}

/* STATS */
.footer-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 253, 177, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(13, 253, 177, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(13, 253, 177, 0.1);
  transform: translateY(-2px);
  border-color: rgba(13, 253, 177, 0.3);
}

.stat-item i {
  font-size: 24px;
  color: #0DFDB1;
}

.stat-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.stat-item strong {
  font-size: 18px;
  color: white;
  font-weight: 700;
}

.stat-item span {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #0DFDB1;
  padding-left: 5px;
}

.footer-links li a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.footer-links li a:hover i {
  transform: translateX(3px);
}

/* CONTACT */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact li i {
  font-size: 18px;
  color: #0DFDB1;
  width: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact strong {
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.footer-contact span,
.footer-contact a {
  color: #999;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #0DFDB1;
}

/* NEWSLETTER */
.newsletter-form {
  margin-bottom: 25px;
}

.input-group {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 5px;
  transition: all 0.3s ease;
}

.input-group:focus-within {
  border-color: #0DFDB1;
  box-shadow: 0 0 15px rgba(13, 253, 177, 0.2);
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
}

.input-group input::placeholder {
  color: #666;
}

.input-group button {
  background: linear-gradient(135deg, #0DFDB1, #00d9a3);
  border: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.input-group button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(13, 253, 177, 0.4);
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border-left: 3px solid #0DFDB1;
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(13, 253, 177, 0.05);
  transform: translateX(5px);
}

.badge i {
  font-size: 20px;
  color: #0DFDB1;
}

.badge span {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* FOOTER BOTTOM */
.footer-bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo-small {
  height: 35px;
  filter: brightness(0) invert(1);
}

.footer-copyright p {
  color: #999;
  font-size: 13px;
  margin: 0;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #0DFDB1;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #0DFDB1;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(13, 253, 177, 0.3);
}

/* INTERN BUTTON */
.footer-intern-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(13, 253, 177, 0.1);
  border: 1px solid #0DFDB1;
  border-radius: 8px;
  color: #0DFDB1;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-intern-btn:hover {
  background: #0DFDB1;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(13, 253, 177, 0.3);
}

.footer-intern-btn i {
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 15px 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-copyright {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stat-item {
    flex: 1;
    min-width: 140px;
  }
  
  .footer-social {
    justify-content: center;
  }
}


