/* Footer Styles */
.abs-footer {
  background: var(--accent);
  color: #fff;
  padding: 60px 0 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

.abs-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.abs-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.abs-footer-grid {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.abs-footer-column {
  position: relative;
  z-index: 2;
}

.abs-footer-column-about {
  flex: 1;
}

.abs-footer-right-columns {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.abs-footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.abs-footer-title::before {
 
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #ff8f00;
  z-index: 1;
}


.abs-footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #ff6d00, #ff8f00);
  transition: width 0.3s ease;
}

.abs-footer-column:hover .abs-footer-title::after {
  width: 80px;
}

.abs-footer-content {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.abs-footer-logo img {
  max-width: 160px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.abs-footer-logo img:hover {
  transform: scale(1.05);
}

.abs-footer-about {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
  max-width: 300px;
}

.abs-footer-social {
  display: flex;
  gap: 12px;
}

.abs-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.abs-social-link:hover {
  background: #ff6d00;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.abs-footer-links, .abs-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abs-footer-links li, .abs-footer-contact li {
  margin-bottom: 14px;
}

.abs-footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

.abs-footer-links a:hover {
  color: #ff8f00;
  transform: translateX(8px);
}

.abs-footer-contact li {
  display: flex;
  align-items: flex-start;
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
}

.abs-footer-contact i {
  margin-right: 12px;
  color: #ff8f00;
  font-size: 18px;
  margin-top: 4px;
}

.abs-footer-mobile-bottom {
  display: none;
  text-align: center;
  margin-bottom: 24px;
}

.abs-footer-logo-mobile img {
  max-width: 100px;
  margin-bottom: 10px;
}

.abs-footer-social-mobile {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.abs-footer-social-mobile .abs-social-link {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.abs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.abs-footer-copyright {
  color: #d1d5db;
  font-size: 0.9rem;
}

.abs-footer-legal {
  display: flex;
  gap: 24px;
}

.abs-footer-legal a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.abs-footer-legal a:hover {
  color: #ff8f00;
}


	@media (max-width: 1100px) {
		
		.abs-footer-grid {
		  display: flex;
		  gap: 20px;
		  margin-bottom: 25px;
		}

		.abs-footer-column {
		  position: relative;
		  z-index: 2;
		}

		.abs-footer-column-about {
		  flex: 1;
		}

		.abs-footer-right-columns {
		  flex: 2;
		  display: grid;
		  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		  gap: 20px;
		}
	}


/* Responsive Adjustments */
@media (max-width: 1000px) {
  .abs-footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .abs-footer-column-about {
    display: none;
  }

  .abs-footer-right-columns {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .abs-footer-column {
    margin-bottom: 4px;
  }

  .abs-footer-title {
    font-size: 1.3rem;
    padding: 10px 20px 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .abs-footer-title::before {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ff8f00;
    z-index: 1;
  }

  .abs-footer-title.active::before {
    content: '\f077'; /* Font Awesome chevron-up */
  }

  .abs-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff6d00, #ff8f00);
  }

  .abs-footer-content {
    max-height: 0;
    opacity: 0;
    padding: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .abs-footer-content.active {
    max-height: 500px; /* Adjust based on content height */
    opacity: 1;
    padding: 12px 0;
  }

  .abs-footer-about, .abs-footer-links li, .abs-footer-contact li {
    font-size: 0.9rem;
  }

  .abs-footer-logo img {
    max-width: 140px;
  }

  .abs-footer-social .abs-social-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .abs-footer-mobile-bottom {
    display: block;
    text-align: center;
    margin-bottom: 32px;
  }

  .abs-footer-logo-mobile img {
    max-width: 100px;
    margin-bottom: 16px;
  }

  .abs-footer-social-mobile {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .abs-footer-social-mobile .abs-social-link {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .abs-footer {
    padding: 40px 0 16px;
  }

  .abs-footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .abs-footer-column-about {
    display: none;
  }

  .abs-footer-right-columns {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .abs-footer-column {
    margin-bottom: 4px;
  }

  .abs-footer-title {
    font-size: 1.3rem;
    padding: 10px 20px 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .abs-footer-title::before {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #ff8f00;
    z-index: 1;
  }

  .abs-footer-title.active::before {
    content: '\f077'; /* Font Awesome chevron-up */
  }

  .abs-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff6d00, #ff8f00);
  }

  .abs-footer-content {
    max-height: 0;
    opacity: 0;
    padding: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .abs-footer-content.active {
    max-height: 500px; /* Adjust based on content height */
    opacity: 1;
    padding: 12px 0;
  }

  .abs-footer-about, .abs-footer-links li, .abs-footer-contact li {
    font-size: 0.9rem;
  }

  .abs-footer-logo img {
    max-width: 140px;
  }

  .abs-footer-social .abs-social-link {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .abs-footer-mobile-bottom {
    display: block;
    text-align: center;
    margin-bottom: 32px;
  }

  .abs-footer-logo-mobile img {
    max-width: 100px;
    margin-bottom: 16px;
  }

  .abs-footer-social-mobile {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .abs-footer-social-mobile .abs-social-link {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .abs-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .abs-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
  }
}

@media (max-width: 480px) {
  .abs-footer-container {
    padding: 0 16px;
  }

  .abs-footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .abs-footer-column-about {
    display: none;
  }

  .abs-footer-right-columns {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .abs-footer-column {
    margin-bottom: 4px;
  }

  .abs-footer-title {
    font-size: 1.2rem;
    padding: 10px 20px 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .abs-footer-title::before {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #ff8f00;
    z-index: 1;
  }

  .abs-footer-title.active::before {
    content: '\f077'; /* Font Awesome chevron-up */
  }

  .abs-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff6d00, #ff8f00);
  }

  .abs-footer-content {
    max-height: 0;
    opacity: 0;
    padding: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .abs-footer-content.active {
    max-height: 500px; /* Adjust based on content height */
    opacity: 1;
    padding: 10px 0;
  }

  .abs-footer-about, .abs-footer-links li, .abs-footer-contact li {
    font-size: 0.85rem;
  }

  .abs-footer-logo img {
    max-width: 120px;
  }

  .abs-footer-social .abs-social-link {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .abs-footer-logo-mobile img {
    max-width: 80px;
    margin-bottom: 16px;
  }

  .abs-footer-social-mobile .abs-social-link {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .abs-footer-copyright, .abs-footer-legal a {
    font-size: 0.85rem;
  }
}