.footer {
  background-color: #1c1f23;
  color: #ccc;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f5c266;
}

.footer .logo {
  font-size: 20px;
  color: #f5c266;
  font-weight: bold;
}

.footer .phone {
  color: #fff;
  font-weight: 600;
  margin-top: 15px;
}

.footer .subtitle {
  color: #f5c266;
  font-size: 13px;
  margin-bottom: 15px;
}

.footer .social-icons a {
  color: #999;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s;
}

.footer .social-icons a:hover {
  color: #f5c266;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 15px;
}

.subscribe-form button {
  background-color: #f5c266;
  color: #000;
  padding: 10px;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #e1af43;
}
