/* PROFESSIONAL THEME */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --bg-body: #ffffff;
  --bg-surface: #f5f7fa;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #0071e3;
  --accent-hover: #005bb5;
  --radius: 6px;
  --shadow: 0 2px 6px rgba(0,0,0,.06);
  --font-header: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-header); font-weight: 600; }

h1 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); }
h2 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.35rem); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

/* ---------- Header ---------- */
.site-header {
  background: var(--bg-body);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar {
  background: var(--bg-surface);
  font-size: .875rem;
  color: var(--text-muted);
  padding: .5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.top-bar .hours,
.top-bar .phone {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-mono);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: -.5px;
}

/* ---------- Navigation ---------- */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-weight: 600;
  color: var(--text-main);
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.main-nav a:hover { border-bottom-color: var(--accent); }

/* ---------- Mobile Menu (Checkbox Hack) ---------- */
#menu-toggle { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-body);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform .3s ease;
    padding: 1rem 1.25rem;
  }
  .main-nav ul { flex-direction: column; gap: 1rem; }
  .hamburger { display: flex; }
  #menu-toggle:checked ~ .main-nav { transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  transition: background .2s;
}

.btn:hover { background: var(--accent-hover); }

/* ---------- Grids ---------- */
.offers-grid,
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .offers-grid,
  .partners-grid { grid-template-columns: 1fr; }
}

/* ---------- Job Card ---------- */
.job-card {
  background: var(--bg-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.job-card h3 { margin-bottom: .25rem; }
.job-card .meta {
  font-size: .875rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ---------- Partner Link ---------- */
.partner-link {
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}

.partner-link:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }

/* ---------- Partners Show More ---------- */
.partners-hidden { display: none; }
.show-more-checkbox { display: none; }
.show-more-checkbox:checked ~ .partners-hidden { display: grid; }
.show-more-checkbox:checked ~ .show-more-container { display: none; }

/* ---------- FAQ Accordion ---------- */
details {
  background: var(--bg-surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: .75rem;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform .2s;
}

details[open] summary::after { transform: rotate(45deg); }

details p {
  margin-top: .75rem;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text-main);
  color: #f9fafb;
  padding: 2.5rem 1.25rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section h4 {
  margin-bottom: .75rem;
  font-size: 1rem;
  color: #e5e7eb;
}

.footer-section a {
  color: #9ca3af;
  font-size: .875rem;
  line-height: 1.8;
}

.footer-section a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }