/* ===== Footer ===== */
.dr1044footer {
  background: #0b1d2e;
  color: #fff;
  font-family: 'Arial', sans-serif;
  padding: 50px 20px 20px;
  line-height: 1.6;
}

.dr1044footer a {
  color: #f0c14b;
  text-decoration: none;
  transition: 0.3s;
}

.dr1044footer a:hover {
  color: #ffd700;
}

/* Footer Container Grid */
.dr1044footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* Logo + Summary */
.dr1044footer .footer-about {
  flex: 1 1 280px;
  text-align: left;
}

.dr1044footer .footer-about .footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  background: #f0c14b; /* Golden circular background */
  padding: 5px;
  border: 3px solid #ffd700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.dr1044footer .footer-about h2 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: #f0c14b;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.dr1044footer .footer-about p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* Quick Links */
.dr1044footer .footer-links {
  flex: 1 1 180px;
}

.dr1044footer .footer-links h3 {
  margin-bottom: 12px;
  color: #f0c14b;
}

.dr1044footer .footer-links ul {
  list-style: none;
  padding: 0;
}

.dr1044footer .footer-links ul li {
  margin-bottom: 8px;
}

.dr1044footer .footer-links ul li a {
  font-size: 0.95rem;
}

/* Contact */
.dr1044footer .footer-contact {
  flex: 1 1 200px;
}

.dr1044footer .footer-contact h3 {
  margin-bottom: 12px;
  color: #f0c14b;
}

.dr1044footer .footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

/* Social & QR */
.dr1044footer .footer-social {
  flex: 1 1 200px;
  text-align: center;
}

.dr1044footer .footer-social h3 {
  margin-bottom: 12px;
  color: #f0c14b;
}

.dr1044footer .footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.dr1044footer .footer-social .social-icons img {
  width: 35px; /* slightly bigger */
  height: 35px;
  transition: transform 0.3s, filter 0.3s;
  filter: brightness(0.9);
}

.dr1044footer .footer-social .social-icons img:hover {
  transform: scale(1.3);
  filter: brightness(1.2);
}

.dr1044footer .footer-social .qr-code {
  width: 160px; /* bigger QR */
  height: 160px;
  border: 3px solid #f0c14b;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Footer Bottom */
.dr1044footer .footer-bottom {
  text-align: center;
  margin-top: 35px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

.dr1044footer .footer-bottom a {
  color: #f0c14b;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .dr1044footer .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .dr1044footer .footer-about {
    text-align: center;
  }
  .dr1044footer .footer-links,
  .dr1044footer .footer-contact,
  .dr1044footer .footer-social {
    flex: 1 1 100%;
    max-width: 400px;
  }
  .dr1044footer .footer-links ul li,
  .dr1044footer .footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .dr1044footer .footer-social {
    margin-top: 10px;
  }
  .dr1044footer .footer-social h3 {
    margin-bottom: 10px;
  }
  .dr1044footer .footer-social .social-icons {
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
  }
  .dr1044footer .footer-social .qr-code {
    width: 140px;
    height: 140px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .dr1044footer .footer-about .footer-logo {
    width: 80px;
    height: 80px;
  }
  .dr1044footer .footer-social .qr-code {
    width: 120px;
    height: 120px;
  }
  .dr1044footer .footer-social .social-icons img {
    width: 28px;
    height: 28px;
  }
}