.footer {
  background: #0f172a;
  padding: 60px 0;
  color: #e5e7eb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 40px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  width: 220px;
  height: 60px;
}

.footer-logo h3 {
  color: #e83e8c;
  margin: 0;
}

.footer-logo p {
  font-size: 14px;
  margin: 0;
}

/* Description */
.footer-desc {
  margin: 20px 0;
  line-height: 1.6;
  color: #d1d5db;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #e83e8c;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #e83e8c;
  color: #fff;
}

/* Quick Links */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #e83e8c;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #e5e7eb;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #e83e8c;
}

/* Contact */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: #e83e8c;
  margin-top: 5px;
}

.map-btn {
  display: inline-block;
  background: linear-gradient(45deg, #e83e8c, #c21e68);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: 0.3s;
}

.map-btn:hover {
  opacity: 0.9;
}

.appointment-btn {
  display: inline-block;
  background: #e83e8c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 500;
  transition: 0.3s;
}

.appointment-btn i {
  margin-right: 8px;
}

.appointment-btn:hover {
  background: #d63384;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.copyright-section {
  position: relative;

  text-align: center;
  color: black;
  font-family: "Poppins", sans-serif;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  overflow: hidden;
}

/* Zig-zag subtle pattern */
.copyright-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 20px
  );
  pointer-events: none;
}

.copyright-section p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.copyright-section strong {
  font-weight: 600;
}

/* Blue Dot */

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .copyright-section {
    padding: 30px 15px;
  }

  .copyright-section p {
    font-size: 14px;
    line-height: 1.6;
  }
}
