/* ============================================================
   ROYAL GLOBAL NET — footer.css
   ============================================================ */

.site-footer {
  background: #0e0e0e;
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}

/* --- Grid -------------------------------------------------- */
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* --- Brand column ----------------------------------------- */
.footer-brand .footer-logo {
  display: block;
  height: 80px;
  margin-bottom: 1.5rem;
}
.footer-brand .footer-logo img {
  height: 80px;
  width: auto;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* --- Column headers ---------------------------------------- */
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

/* --- Links ------------------------------------------------- */
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--brand);
}

/* --- Contact info ------------------------------------------ */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}
.footer-contact-item strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  display: block;
  font-size: 0.8rem;
}

/* --- Hours ------------------------------------------------- */
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours-row:last-child {
  border-bottom: none;
}
.footer-hours-row span:last-child {
  color: var(--brand);
  font-weight: 600;
}

/* --- Bottom bar -------------------------------------------- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom a:hover {
  color: var(--brand);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
