/* ============================================================
   MIRAI – Footer Styles
   ============================================================ */

.site-footer {
  background: #050E1F;
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,201,167,0.5), rgba(37,99,235,0.5), transparent);
}

/* Top wave */
.footer-wave {
  display: block;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.footer-main { padding: 72px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* ── Brand Column ── */
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo { height: 42px; width: auto; }

.footer-brand-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-brand-tag {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* ── Footer Column ── */
.footer-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link:hover {
  color: var(--accent-light);
  padding-left: 6px;
}
.footer-link::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.footer-link:hover::before { opacity: 1; }

/* ── Contact Column ── */
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(37,99,235,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--accent-light);
}
.footer-contact-text strong {
  display: block;
  color: var(--white);
  font-size: 0.82rem;
  margin-bottom: 2px;
}
.footer-contact-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-text a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-contact-text a:hover { color: var(--accent-light); }

/* ── Review Badge ── */
.google-review-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.google-review-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.google-g {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.review-stars { color: #F59E0B; font-size: 0.85rem; }
.review-count { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.review-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-copy a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-copy a:hover { color: var(--accent-light); }

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

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

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
