.footer {
  background: linear-gradient(to right, #ffffff, #f7f7f7);
  padding: 60px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  border-top: 1px solid #e2e2e2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between; 
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 25px;
  aspect-ratio: 1/1;
}

.footer-contact h4,
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #111;
}

.footer-contact p {
  margin: 6px 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #D4AF37;
}

.social-icons a {
  margin-right: 14px;
  font-size: 20px;
  color: #444;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #D4AF37;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
}

