/* Footer Styling */
.footer {
  background: #1b1b1b;
  color: #fff;
  padding: 50px 20px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffcc00; /* Accent color */
}

.footer p {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  font-size: 18px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover Effects */
.footer a:hover {
  color: #ffcc00;
  transform: translateY(-2px);
}

.footer-social a {
  margin-right: 15px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #ff66ff;
  transform: scale(1.2);
  text-shadow: 0 0 8px #ff66ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}

.phone-number, .company-email {
  transition: all 0.3s ease;
  cursor: pointer;
}

.phone-number:hover, .company-email:hover {
  color: #ff66ff;
  text-shadow: 0 0 8px #ff66ff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 20px;
  }
}
