/* LimitBee — Contact */
:root {
  --purple-deep: #4c1d95;
  --purple-mid: #7c3aed;
  --blue-bright: #2563eb;
  --gold: #f59e0b;
  --gold-light: #fde68a;
  --ink: #0f172a;
  --ink-soft: #475569;
  --surface: #faf8ff;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 24px 64px rgba(76, 29, 149, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 248, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.logo-link { display: flex; align-items: center; gap: 0.75rem; }
.logo-link img { width: 44px; height: 44px; border-radius: 50%; }
.logo-text {
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--purple-deep), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.25s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--purple-deep);
  background: rgba(124, 58, 237, 0.08);
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }

.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, var(--purple-deep) 0%, #312e81 100%);
  color: var(--white);
  text-align: center;
}

.page-hero-inner { max-width: 600px; margin: 0 auto; }

.page-hero .section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p { font-size: 1.1rem; opacity: 0.9; }

.support-showcase {
  padding: 0 2rem 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.support-showcase-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
  border-radius: 20px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.support-showcase-inner img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.support-showcase-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple-deep);
  margin-bottom: 0.75rem;
}

.support-showcase-text p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(124, 58, 237, 0.08);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(124, 58, 237, 0.15);
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(37, 99, 235, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.contact-card a {
  color: var(--purple-mid);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--purple-deep); }

.map-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(124, 58, 237, 0.08);
  box-shadow: var(--shadow);
}

.map-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 1.25rem;
}

.address-block {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--purple-mid);
}

.address-block p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.address-block p:last-child { margin-bottom: 0; }

.hours-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.04));
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.hours-block .icon { font-size: 1.5rem; }

.hours-block strong {
  display: block;
  font-size: 0.9rem;
  color: #b45309;
}

.hours-block span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.site-footer {
  background: linear-gradient(135deg, var(--purple-deep), #1e1b4b);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img { width: 48px; height: 48px; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.875rem; opacity: 0.75; max-width: 320px; }
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; opacity: 0.75; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .support-showcase-inner { grid-template-columns: 1fr; text-align: center; }
  .support-showcase-inner img { max-width: 260px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
