/* Footer Styles */
footer {
  width: 100%;
  float: left;
  background: linear-gradient(135deg, #1a2a6c 0%, #2a4a7c 100%);
  color: white;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-sections {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding: 60px 0 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

/* Footer Logo - Updated */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: #ff6b35;
  transform: translateY(-3px);
}

/* Footer Titles */
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff6b35;
}

/* Footer Links */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #ff6b35;
  padding-left: 5px;
}

/* Contact Info */
.contact-info-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item-footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-item-footer i {
  color: #ff6b35;
  margin-top: 2px;
  min-width: 16px;
}

/* Newsletter */
.newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  color: white;
  padding: 12px 20px;
  outline: none;
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  background: #ff6b35;
  border: none;
  color: white;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: #e55a2b;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff6b35;
}

/* Responsive Footer */
@media only screen and (max-width: 1024px) {
  .footer-sections {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .footer-sections {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  .footer-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}