/* ====================================================
   CONTACT US — King Burger's Store
   Requires: theme.css + cp.css loaded first
   ==================================================== */

body { background: var(--cp-bg); min-height: 100vh; display: flex; flex-direction: column; color: var(--cp-text); }
main { flex: 1; }

/* ── Hero ── */
.contact-hero {
  background: var(--cp-bg);
  padding: 5.5rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,240,255,0.06);
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% -10%, rgba(0,240,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.contact-hero > * { position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,240,255,0.05);
  border: 1px solid rgba(0,240,255,0.22);
  color: var(--cp-cyan);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  font-family: 'Orbitron', sans-serif;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--cp-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Contact section ── */
.contact-section { padding: 4rem 1.5rem 5rem; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.info-card {
  background: var(--cp-surface);
  border: 1px solid rgba(0,240,255,0.09);
  border-radius: 3px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1), box-shadow 220ms, border-color 220ms;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(0,240,255,0.09), 0 14px 36px rgba(0,0,0,0.45);
  border-color: rgba(0,240,255,0.3);
}

.info-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(0,240,255,0.07);
  border: 1px solid rgba(0,240,255,0.18);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cp-cyan);
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.info-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.info-text { color: rgba(216,228,255,0.5); font-size: 0.875rem; line-height: 1.55; }
.info-link {
  color: var(--cp-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
  transition: color 200ms, text-shadow 200ms;
}
.info-link:hover { color: #fff; text-shadow: 0 0 8px rgba(0,240,255,0.5); }

/* ── Chat CTA card ── */
.chat-cta {
  background: rgba(6,6,18,0.95);
  border: 1px solid rgba(0,240,255,0.12);
  border-radius: 6px;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.chat-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% -10%, rgba(0,240,255,0.07) 0%, transparent 55%),
    linear-gradient(rgba(0,240,255,0.015) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(0,240,255,0.015) 1px, transparent 1px) 0 0 / 44px 44px;
  pointer-events: none;
}
.chat-cta > * { position: relative; }
.chat-cta .chat-icon {
  width: 64px; height: 64px;
  background: rgba(0,240,255,0.1);
  border: 1px solid rgba(0,240,255,0.3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cp-cyan);
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(0,240,255,0.2);
}
.chat-cta h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.625rem;
}
.chat-cta p {
  color: var(--cp-muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.chat-cta-hint {
  color: rgba(216,228,255,0.28);
  font-size: 0.8rem;
  margin-top: 1.25rem;
}
