/* ================= FOOTER ================= */
.footer {
  background: #f3f6fb;
  padding: 80px 20px 40px;
  border-top: 1px solid #ddd;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.footer .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer .col-span-2 {
  grid-column: span 2;
}

/* LOGO */
.footer .logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer .logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #ddd;
}

.footer .logo img {
  width: 100%;
  object-fit: contain;
}

.footer .brand {
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  color: #1e58a9;
}

/* TEXT */
.footer .desc {
  color: #6b7280;
  max-width: 350px;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 20px;
}

/* SOCIAL ICONS */
.footer .socials {
  display: flex;
  gap: 12px;
}

.footer .icon-btn {
  width: 40px;
  height: 40px;
  background: #1e58a9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .icon-btn i {
  font-size: 16px;
}

.footer .icon-btn:hover {
  background: #c9a24b;
  transform: translateY(-3px);
}

/* HEADINGS */
.footer h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e58a9;
  margin-bottom: 20px;
}

/* LIST */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
}

.footer ul li a:hover {
  color: #c9a24b;
}

/* CONTACT */
.footer .item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 14px;
}

.footer .item i {
  color: #8DC63F;
  font-size: 16px;
  min-width: 18px;
}

/* BOTTOM */
.footer .bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  color: #999;
}

.footer .bottom-links {
  display: flex;
  gap: 20px;
}

.footer .bottom-links span:hover {
  color: #c9a24b;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer .grid {
    grid-template-columns: 1fr;
  }

  .footer .col-span-2 {
    grid-column: span 1;
  }

  .footer .bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}