.footer {
  background: linear-gradient(135deg, #ffffff, #e6ecfb);
  color: #1a1a1a;
  padding: 50px 40px;
  margin-top: 5%;
  border-top: 1px solid #e5e7eb;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ================= LINKS ================= */
.footer-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: none;
  color: #f15a26;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: #232d63;
  font-size: 24px;
}


.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo-box img {
  width: 80%;
}

.logo-box h3 {
  margin: 0;
  color: #020b2d;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.footer-links {
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  cursor: pointer !important;
   font-size: 14px;
  line-height: 1.6;
  color: #475569;
}


/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
}
.download-app{
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #ebf0fc;
  border: 1px solid #232d63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  background-color: #232d63;
  border: 1px solid #232d63;
  transform: translateY(-2px);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: #232d63;
  transition: fill 0.3s ease;
}

.social-icons a:hover svg {
  fill: #ffffff;
}

/* ================= FOOTER FORM ================= */

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-form .form-row {
  display: flex;
  gap: 10px;
}

.footer-form input,
.footer-form select,
.footer-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  outline: none;
}

.footer-form input:focus,
.footer-form select:focus,
.footer-form textarea:focus {
  border-color: #232d63;
}

.footer-form textarea {
  resize: none;
}

.footer-form button {
  background: #232d63;
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-form button:hover {
  background: #232d63;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-form .form-row {
    flex-direction: column;
  }
   .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

}
