/* ===============================
   FOOTER (CLEAN VERSION)
================================ */

.site-footer {
  background: #0a0f1a;
  color: #d1d5db;
  font-size: 15px;
  line-height: 1.6;
}

/* GRID LAYOUT (DESKTOP) */
.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 60px 0;
}

/* COLUMNS */
.footer-col {
  text-align: left;
}

/* LOGO COLUMN */
.footer-brand {
  display: block;
}

.footer-brand img {
  max-width: 140px;
  margin-bottom: 20px;
}

/* HEADINGS */
.footer-col h4 {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* CONTACT ROWS */
.footer-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

/* ICONS */
.footer-emoji {
  font-size: 14px;
  margin-top: 2px;
}

.footer-row .phone-icon {
    width: 16px;
    height: 16px;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 3px;
}

/* LINKS */
.site-footer a {
  color: #d1d5db;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
}

/* SERVICES LIST */
.footer-col a {
  display: block;
  margin-bottom: 8px;
}

/* DISCLAIMER */
.footer-disclaimer {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 12px;
  line-height: 1.5;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #9ca3af;
  border-top: 1px solid rgba(255,255,255,0.08);
}