/* Modern Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #6a148b 50%, transparent 100%);
}

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

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 0 40px;
  border-bottom: 1px solid #333;
}

/* Company Info Section */
.company-info {
  padding-right: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-logo h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.company-tagline {
  font-size: 1rem;
  color: #6a148b;
  font-weight: 500;
  margin-bottom: 10px;
  font-style: italic;
}

.company-description {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #333;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #6a148b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(106, 20, 139, 0.3);
}

.social-link img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  transition: filter 0.3s ease;
}

.social-link:hover img {
  filter: invert(1) brightness(1.2);
}

/* Footer Sections */
.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #6a148b;
}

/* Lists */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-section ul li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #6a148b;
}

.footer-section ul li a:hover {
  color: #6a148b;
  padding-left: 20px;
}

.footer-section ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Contact Info */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.2rem;
  min-width: 20px;
  margin-top: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-value {
  font-size: 0.95rem;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #6a148b;
}

/* Newsletter Section */
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid #333;
  background: linear-gradient(90deg, transparent 0%, rgba(106, 20, 139, 0.05) 50%, transparent 100%);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.newsletter-content h4 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.newsletter-content p {
  font-size: 0.95rem;
  color: #cccccc;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  min-width: 350px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #444;
  border-radius: 30px;
  background: #222;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #6a148b;
  box-shadow: 0 0 0 3px rgba(106, 20, 139, 0.1);
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-btn {
  padding: 12px 25px;
  background: #6a148b;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #7d1ba0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(106, 20, 139, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
  
  .contact-info {
    grid-column: 1 / -1;
  }
  
  .newsletter-form {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 40px 0 30px;
  }
  
  .company-info {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo h3 {
    font-size: 1.1rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px 20px;
  }
  
  .newsletter-form {
    min-width: auto;
    width: 100%;
    max-width: 400px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 0 25px;
  }
  
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .newsletter-input,
  .newsletter-btn {
    width: 100%;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-item {
    margin-bottom: 15px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .social-link img {
    width: 20px;
    height: 20px;
  }
}

/* Animation for footer elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(2) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.3s;
}

/* Hover effects */
.footer-section:hover h4::after {
  width: 50px;
  transition: width 0.3s ease;
}
