/* New Footer Section Styles */
.new-footer-section {
  background-color: var(--primary-color1);
  position: relative;
  padding-bottom: 0;
}

.new-footer-section .container {
  position: relative;
  z-index: 1;
}

/* Footer Widget */
.new-footer-section .footer-widget {
  margin-bottom: 30px;
}

.new-footer-section .footer-widget-title {
  color: #ffffff;
  font-family: var(--font-rubik);
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.new-footer-section .footer-widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color2);
}

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

.new-footer-section .footer-links li {
  margin-bottom: 5px;
}

.new-footer-section .footer-links li:last-child {
  margin-bottom: 0;
}

.new-footer-section .footer-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-jost);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.new-footer-section .footer-links li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--primary-color2);
  transition: width 0.3s ease;
}

.new-footer-section .footer-links li a:hover {
  color: var(--primary-color2);
  padding-left: 8px;
}

.new-footer-section .footer-links li a:hover::before {
  width: 30px;
}

/* Footer Contact List */
.new-footer-section .footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.new-footer-section .footer-contact-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-jost);
  font-size: 15px;
  line-height: 1.6;
}

.new-footer-section .footer-contact-list .contact-item:last-child {
  margin-bottom: 0;
}

.new-footer-section .footer-contact-list .contact-item i {
  font-size: 20px;
  color: var(--primary-color2);
  flex-shrink: 0;
  margin-top: 2px;
}

.new-footer-section .footer-contact-list .contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-footer-section .footer-contact-list .contact-item a:hover {
  color: var(--primary-color2);
}

/* Footer Subscribe */
.new-footer-section .footer-subscribe {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.new-footer-section .footer-subscribe:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color2);
}

.new-footer-section .subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  color: #ffffff;
  font-family: var(--font-jost);
  font-size: 14px;
}

.new-footer-section .subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.new-footer-section .subscribe-btn {
  background: var(--primary-color2);
  border: none;
  outline: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-footer-section .subscribe-btn i {
  font-size: 18px;
  color: #ffffff;
}

.new-footer-section .subscribe-btn:hover {
  background: rgba(var(--primary-color2-opc), 0.8);
}

/* Social Title */
.new-footer-section .social-title {
  color: #ffffff;
  font-family: var(--font-rubik);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Footer Social List */
.new-footer-section .footer-social-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.new-footer-section .footer-social-list li a:hover {
  background: var(--primary-color2);
  border-color: var(--primary-color2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--primary-color2-opc), 0.4);
}

/* Footer Bottom */
.new-footer-section .footer-bottom-new {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 0;
  text-align: center;
}

.new-footer-section .copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-jost);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.3px;
}

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

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

  .new-footer-section .footer-widget {
    margin-bottom: 40px;
  }

  .new-footer-section .footer-widget-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .new-footer-section {
    padding-top: 100px;
  }

  .new-footer-section .footer-main {
    padding-bottom: 30px;
  }

  .new-footer-section .footer-widget {
    margin-bottom: 35px;
  }

  .new-footer-section .footer-widget-title {
    font-size: 17px;
    margin-bottom: 18px;
  }

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

  .new-footer-section .footer-contact-list .contact-item {
    margin-bottom: 15px;
  }

  .new-footer-section .footer-bottom-new {
    padding: 20px 0;
  }

  .new-footer-section .copyright-text {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .new-footer-section {
    padding-top: 100px;
  }

  .new-footer-section .footer-main {
    padding-bottom: 25px;
  }

  .new-footer-section .footer-widget {
    text-align: left;
  }

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

  .new-footer-section .footer-links li a,
  .new-footer-section .footer-contact-list .contact-item {
    font-size: 14px;
  }

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

  .new-footer-section .footer-social-list li a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}
