/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; /* reduced gap */
}

/* CARD */
.footer-col {
  background: rgba(255,255,255,0.03);
  padding: 15px; /* compact */
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.footer-col:hover {
  transform: translateY(-4px);
}

/* TITLE */
.footer-title {
  color: #fff;
  font-size: 15px;
  margin-bottom: 5px;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: #F15A24;
  margin-bottom: 10px;
}

/* TEXT */
.footer-description {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

/* SOCIAL */

.footer-social a i {
    margin: 0 !important;
}

/* LINKS */
.horizontal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  list-style: none;
}

.horizontal-links li:not(:last-child)::after {
  content: "|";
  margin-left: 6px;
  color: rgba(255,255,255,0.4);
}

.footer-links a {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: #F15A24;
}

/* INFO */
.footer-info {
  list-style: none;
  padding: 0;
}

.footer-info li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

.footer-info i {
  color: #F15A24;
  margin-top: 4px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #F15A24;
  border-top: 1px solid #bebcb6;
  padding-top: 10px;
}
.footer-bottom p {
    color: #F15A24;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .horizontal-links {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-area {
  background: var(--navy-dk) !important;
  padding: 24px 1.5rem 0 !important;
}
.footer-area .container { max-width: 1320px; }
.footer-logo a img {
  height: 70px; width: auto !important;
  border-radius: 6px; border: 1px solid rgba(255,255,255,.2) !important;
  margin-bottom: 14px;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.75) !important;
  font-size: .9rem; text-decoration: none; transition: var(--t);
}
.footer-social a:hover { background: var(--gold) !important; color: #fff !important; transform: translateY(-2px); }
.footer-tittle h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .07em; text-transform: uppercase;
  color: #fff; margin-bottom: 8px;
}
.footer-tittle .line, .line {
  width: 36px; height: 2px; background: var(--gold);
  border-radius: 2px; margin-bottom: 18px;
}
.footer-tittle ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-tittle ul li span {
  display: flex; gap: 9px; align-items: flex-start;
  color: rgba(255,255,255,.72); font-size: .875rem; line-height: 1.55;
}
.footer-tittle ul li span i { color: var(--gold); font-size: .8rem; margin-top: 3px; flex-shrink: 0; }
.footer-tittle ul li a {
  color: rgba(255,255,255,.72) !important; text-decoration: none; transition: var(--t);
}
.footer-tittle ul li a:hover { color: var(--gold-lt) !important; }
.footer-bottom-area {
  background: rgba(0,0,0,.2) !important;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0 !important;
}
.footer-copy-right p {
  color: rgba(255,255,255,.5) !important; font-size: .8rem !important;
}