/* Footer styles */
footer {
  background-color: var(--footer-bg, #0f172a);
  color: var(--footer-text, #cbd5e1);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Footer logo section */
.footer-logo h3 {
  color: var(--light-text, #ffffff);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.footer-logo p {
  color: #ccc;
  margin-bottom: 20px;
}

.footer-address,
.footer-contact,
.footer-email {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-address i,
.footer-contact i,
.footer-email i {
  margin-right: 10px;
  color: var(--accent-color, #f97316);
}

/* Footer social media */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light-text, #ffffff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition, all 0.3s ease);
}

.footer-social a:hover {
  background-color: var(--primary-color, #1e40af);
  transform: translateY(-5px);
}

.footer-social a i {
  font-size: 1.2rem;
}

/* Footer links section */
.footer-links h4,
.footer-newsletter h4 {
  color: var(--light-text, #ffffff);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color, #1e40af);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition, all 0.3s ease);
}

.footer-links ul li a:hover {
  color: var(--primary-color, #1e40af);
  padding-left: 5px;
}

/* Footer newsletter section */
.footer-newsletter p {
  margin-bottom: 15px;
  color: #ccc;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  outline: none;
}

.newsletter-form button {
  background-color: var(--primary-color, #1e40af);
  color: var(--light-text, #ffffff);
  border: none;
  padding: 0 15px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: var(--transition, all 0.3s ease);
}

.newsletter-form button:hover {
  background-color: var(--secondary-color, #0f766e);
}

/* Footer bottom section */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 5px;
    padding: 12px;
    width: 100%;
  }
}

