@import url("https://fonts.googleapis.com/css2?family=Great+Vibes:wght@400&family=Inter:wght@300;400;500;600&display=swap");

.footer {
  background: linear-gradient(
    135deg,
    rgba(45, 55, 72, 0.95) 0%,
    rgba(74, 85, 104, 0.95) 25%,
    rgba(128, 128, 128, 0.95) 50%,
    rgba(74, 85, 104, 0.95) 75%,
    rgba(45, 55, 72, 0.95) 100%
  );
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 4rem 0 0;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 8s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  /* Changed back to 3 columns with Facebook moved under brand */
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-section {
  position: relative;
}

.footer-heading {
  font-family: "Inter", sans-serif;
  /* Increased font size for better visibility */
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.brand-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  width: fit-content;
}

.social-link:hover {
  color: #1877f2;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.social-icon {
  width: 24px;
  height: 24px;
  color: #a0aec0;
  transition: all 0.3s ease;
}

.social-link:hover .social-icon {
  color: #1877f2;
}

.brand-name {
  /* Restored fancy script font and made it white as requested */
  font-family: "Great Vibes", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-tagline {
  font-family: "Inter", sans-serif;
  /* Increased size to fill space better */
  font-size: 1.3rem;
  color: #ffd700;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
  /* Increased padding for easier clicking */
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}

.contact-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
  /* Increased icon size for better visibility */
  width: 24px;
  height: 24px;
  color: #a0aec0;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  /* Increased font size for better readability */
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #cbd5e0;
}

.contact-link.facebook:hover {
  color: #1877f2;
}

.contact-note {
  /* Increased font size */
  font-size: 0.9rem;
  color: #a0aec0;
  font-style: italic;
}

.appointment-text {
  color: #ffd700;
  font-weight: 500;
  /* Increased font size */
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  /* Increased font size for better visibility */
  font-size: 1.1rem;
  transition: all 0.3s ease;
  /* Increased padding for easier clicking */
  padding: 0.75rem;
  border-radius: 8px;
}

.footer-link:hover {
  color: #cbd5e0;
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.05);
}

.link-icon {
  /* Increased icon size */
  width: 24px;
  height: 24px;
  color: #a0aec0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-link:hover .link-icon {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 2rem 0;
}

.copyright {
  text-align: center;
  color: #a0aec0;
  font-family: "Inter", sans-serif;
  /* Increased font size */
  font-size: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Improved mobile responsiveness with more compact layout */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .links-section {
    grid-column: 1 / -1;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }

  /* Made mobile text smaller as requested */
  .brand-name {
    font-size: 2.5rem;
  }

  .brand-tagline {
    font-size: 1rem;
  }

  .footer-heading {
    font-size: 1.2rem;
  }

  .contact-link,
  .footer-link {
    font-size: 0.95rem;
  }

  .social-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 0;
  }

  .footer-container {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  /* Further reduced mobile sizes */
  .brand-name {
    font-size: 2rem;
  }

  .brand-tagline {
    font-size: 0.9rem;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .contact-link,
  .footer-link {
    font-size: 0.9rem;
  }

  .social-link {
    font-size: 0.9rem;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .copyright {
    padding: 0 1rem;
    font-size: 0.9rem;
  }
}
