/* ==== Global Body Styling ==== */
body {
  border-radius: 18px;
  margin: 8px;
  overflow: hidden;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
}

/* ==== Footer Base Styling ==== */
.footer {
  background: #ffa500;
  color: #fefcff;
  padding-top: 28px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0 16px 20px;
}

.footer-box h3 {
  margin: 0 0 10px 0;
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  color: #fefcff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.brand-name {
  margin: 0;
  color: #fefcff;
  font-weight: 800;
  letter-spacing: 1px;
}

.tagline {
  margin-top: 6px;
  opacity: 0.9;
}

/* ==== Social Icons - Wrapper ==== */
.social-icons {
  display: flex;
  margin-top: 12px;
  gap: 10px;
}

/* ==== Base Style for All Social Icons ==== */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 26px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}

/* ==== WhatsApp Icon Styling ==== */
.social-icons a.whatsapp-link {
  background-color: #25D366;
}

.social-icons a.whatsapp-link:hover {
  background-color: #fff;
  color: #25D366;
  transform: scale(1.1);
}

/* ==== LinkedIn Icon Styling ==== */
.social-icons a.linkedin-link {
  background-color: #0077B5;
}

.social-icons a.linkedin-link:hover {
  background-color: #fff;
  color: #0077B5;
  transform: scale(1.1);
}

/* ==== Footer Bottom ==== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 12px 10px 16px;
  color: #fefcff;
}

/* ==== Responsive Layouts ==== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .main-section {
    padding: 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-box,
  .footer-links,
  .footer-bottom {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
