/* Base styles for Alex Liggett IT Solutions */
:root {
  --primary: #1769FF;
  --secondary: #00BFA6;
  --dark: #111827;
  --mid: #374151;
  --light: #F9FAFB;
  --accent: #FFB020;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--mid);
  background: var(--light);
}

.container { width: min(1100px, 92%); margin: 0 auto; }

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { opacity: 0.92; }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: rgba(23,105,255,0.06); }

.site-header {
  background: var(--dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-logo { width: 56px; height: auto; }
.brand-name { font-weight: 800; font-size: 1.1rem; display: block; }
.brand-tagline { font-size: 0.9rem; opacity: 0.85; display: block; }

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  padding: 56px 0;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
.hero-copy h1 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.6rem); line-height: 1.2; color: var(--dark); margin: 0 0 8px; }
.hero-copy p { margin: 0 0 16px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quick-list { display: flex; flex-wrap: wrap; gap: 10px 14px; padding: 0; margin: 18px 0 0; list-style: none; }
.quick-list li { background: #fff; border: 1px solid #e5e7eb; padding: 6px 10px; border-radius: 999px; font-weight: 600; }

.hero-card {
  background: var(--dark);
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.hero-logo { width: 120px; height: auto; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25)); }
.hero-card h3 { margin: 4px 0; }
.hero-card p { margin: 0; opacity: 0.9; }

.services { padding: 40px 0; }
.services h2, .why h2, .areas h2, .contact h2 { color: var(--dark); font-size: 1.8rem; margin-bottom: 10px; }
.grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 16px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.03);
}
.card h3 { margin-top: 0; color: var(--dark); }

.why { padding: 10px 0 30px; }
.why-list { display: grid; gap: 8px; padding-left: 1rem; }

.areas { background: #fff; padding: 22px 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }

.contact { padding: 34px 0 46px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 12px 0; }
.contact-link { color: var(--primary); text-decoration: none; font-weight: 700; }
.contact-link:hover { text-decoration: underline; }
.form label { display: grid; gap: 6px; margin-bottom: 12px; }
.form input, .form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 10px; font: inherit;
}
.form button { width: 100%; }

.site-footer { background: var(--dark); color: #fff; }
.footer-inner { display: flex; gap: 18px; align-items: center; justify-content: space-between; padding: 16px 0; }
.footer-brand { display: flex; gap: 10px; align-items: center; }
.footer-logo { width: 42px; height: auto; }

.muted { opacity: 0.7; }
.small { font-size: 0.9rem; }

/* Larger screens */
@media (min-width: 820px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; gap: 34px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
