/* Modern Footer Design */
.footer-modern {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  color: #e0e0e0;
  padding-top: 60px;
  margin-top: 60px;
}

.footer-main {
  padding-bottom: 40px;
}

.footer-main .container {
  max-width: 1400px;
  padding-left: 30px;
  padding-right: 30px;
}

/* Footer Widgets */
.footer-widget {
  padding-right: 10px;
}

.footer-logo img {
  max-width: 180px;
  height: auto;
  display: block;
}

.footer-desc {
  color: #b0b0b0!important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Footer Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff!important;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #0f5cff!important;
}

.footer-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff!important;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Social Media Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff!important;
  transition: all 0.3s ease;
}

.footer-social a i {
  color: #ffffff!important;
  font-size: 16px;
  opacity: 1;
}

.footer-social a:hover {
  background: #0f5cff!important;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(15, 92, 255, 0.3);
}

/* Address Styling */
.footer-address {
  font-style: normal;
}

.footer-address p {
  color: #b0b0b0!important;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Working Hours */
.footer-hours p {
  color: #b0b0b0!important;
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Items */
.contact-item h4 {
  font-size: 13px;
}

.contact-item p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-item a {
  color: #b0b0b0!important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #0f5cff!important;
}

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

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

.footer-links a {
  color: #b0b0b0!important;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -5px;
  opacity: 1;
  color: red;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff!important;
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
  color: #ffffff;
}

/* Inline Footer Links */
.footer-links-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links-inline li {
  position: relative;
}

.footer-links-inline li:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -10px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-links-inline a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links-inline a:hover {
  color: #0f5cff;
}

/* Bottom Links Section */
.footer-main .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Footer Copyright */
.footer-copyright {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Responsive Design */
@media (max-width: 991px) {
  .footer-modern {
    padding-top: 40px;
  }

  .footer-widget {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .footer-links-inline {
    flex-direction: column;
    gap: 8px;
  }

  .footer-links-inline li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer-modern {
    padding-top: 30px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
