/* ijji.ai — shared tokens, reset, footer (index + FAQ) */

:root {
  --navy: #1d4497;
  --navy-mid: #1d4497;
  --gold: #0ad69c;
  --gold-light: #3de8b5;
  --coral: #ff6b6b;
  --teal: #009c72;
  --cream: #f7f3e3;
  --text: #1a1a2e;
  --muted: #6b7280;
  --font-th: 'Arvo', 'Sarabun', serif;
  --font-en: 'Helvetica Thai', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* FOOTER */
footer {
  background: #1a1e2e;
  padding: 0;
}

.footer-faq-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-faq-links a {
  display: block;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr auto;
  gap: 48px;
  padding: 48px 48px 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .logo {
  margin-bottom: 8px;
  font-size: 22px;
  font-family: var(--font-th);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}

.footer-brand .logo span {
  color: #fff;
}

.footer-brand .footer-tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: rgba(100, 160, 255, 0.85);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  text-decoration: none;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
  text-align: center;
}
