/* Footer Styles (from user CSS, kept for completeness if page has footer) */
.footer {
  background-color: #002147;
  color: white;
}
.footer p {
  color: white;
  margin: 0;
}

.footer h3 {
  /* text-align: center; */
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--accent);
  left: 10%;
  transform: translateX(-40%);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-section h3 {
  color: #ff8430;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section h3.large {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: #d4c29c !important;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer-subtitle2 {
  color: #c2b7a0 !important;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #f2ebdc;
}

.contact-icon {
  width: 1rem;
  height: 1rem;
  margin: 0;
  margin-right: 0.5rem;
  color: #ff8430;
  background-color: transparent;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #f2ebdc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #ff8430;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  color: #f2ebdc;
  text-decoration: none;
  transition: color 0.2s;
}

.social-link:hover {
  color: #ff8430;
}

.social-icon-link {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  color: #ff8430;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #f2ebdc;
  font-size: 0.875rem;
}

.developer {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

.developer:hover {
  opacity: 1;
  text-decoration: underline;
  color: #ff8430;
}

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

  .footer-container {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .footer-container {
    padding: 3rem 2rem;
  }
}

.footer-social-share {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

.share-header {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hashtag-text {
  color: #bdc3c7;
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.social-icons {
  display: flex;
  justify-content: start;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

a.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

a.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

a.social-icon:hover::before {
  transform: scale(1);
}

a.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.facebook {
  background: linear-gradient(135deg, #3973f0, #7e9de1);
}

.twitter {
  background: linear-gradient(135deg, #1da1f2, #0084b4);
}

.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.instagram {
  background: linear-gradient(
    135deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}

.linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.tiktok {
  background: linear-gradient(135deg, #ff0050, #000000);
}

/* Responsive design */
@media (max-width: 768px) {
  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .share-header {
    font-size: 16px;
  }
}
