
.main-footer {
  background: #171717;
  color: #fff;
  padding: 60px 0 40px; 
  border-top: 4px solid #FF6B00;
  font-family: 'Inter', sans-serif;
}


.footer-top {
  padding-bottom: 40px;
}

.footer-title {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #FF6B00;
  border-radius: 2px;
}

.footer-logo {
  width: 150px;
  height: 52px;
  margin-bottom: 25px;

}


.footer-middle {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 30px 0;
  margin: 40px 0;
  border: 1px solid rgba(255,107,0,0.1);
}

.contact-social-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-section-title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.contact-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-item {
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,140,66,0.05));
  border: 1px solid rgba(255,140,66,0.3);
  border-radius: 10px;
  padding: 15px 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(4px);
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,140,66,0.15));
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255,107,0,0.1);
}

.contact-item i {
  color: #FF8C42;
  font-size: 1.1rem;
}

.contact-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.contact-info-footer p {
  line-height: 1.8;
  margin: 0;
  color: #d8d8d8;
}

.contact-info-footer br {
  display: block;
  content: "";
  margin-bottom: 8px; 
}

.social-section {
  margin-top: 25px;
}

.social-links-outer {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links-outer a {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,140,66,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links-outer a:hover {
  background: linear-gradient(135deg, #FF6B00, #FF8C42);
  transform: scale(1.1);
  border-color: transparent;
}


.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.footer-links a:hover {
  color: #FF8C42;
  padding-left: 12px;
}

.footer-links a:hover::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #FF8C42;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 25px 0 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

.developer-credit {
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.developer-credit a {
  color: rgba(255,255,255,0.7);
  text-decoration: none; 
  transition: color 0.3s ease;
  font-weight: 500; 
}

.developer-credit a:hover {
  color: #FF8C42;
  text-decoration: none; 
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-col {
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-boxes {
    flex-direction: column;
    width: 100%;
  }

  .contact-item {
    justify-content: center;
    padding: 12px 15px;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-links a:hover::before {
    display: none;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links-outer a {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding: 40px 0 30px;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .contact-item a {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }
}