/* Footer Styles */
footer {
  background-color: #D4006C;
  margin-top: 50px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 25px 20px;
}

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

.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-section h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.1rem;
  margin-top: 0;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer-container > .footer-section.footer-section--contact {
  text-align: center;
}

.footer-container > .footer-section.footer-section--contact h3 {
  text-align: center;
}

.footer-container > .footer-section.footer-section--contact p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-container > .footer-section.footer-section--contact p i {
  width: 14px;
  flex-basis: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

footer .social-icon {
  background-color: var(--accent-orange, #FF5A1F);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
  font-size: 1.2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

footer .social-icon:hover {
  background-color: white;
  color: var(--accent-orange, #FF5A1F);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  width: 100%;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-orange, #FF5A1F);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer quick links columns rules */
@media (min-width: 1100px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Compact footer on small phones */
@media (max-width: 650px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px 10px;
    gap: 10px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4px;
  }
  .footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
  .footer-section p {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .social-icons {
    gap: 8px;
    margin-top: 8px;
  }
  footer .social-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
 
  .footer-links li {
    margin-bottom: 4px;
  }
  .footer-bottom {
    padding-top: 10px;
  }
  .footer-bottom p {
    font-size: 0.78rem;
  }
}


