/* ===== Austin Handyman & Diesel — clean business theme ===== */

/* Colors & tokens */
:root{
  --bg:#0f172a;        /* slate-900 */
  --surface:#0b1223;   /* deep card */
  --card:#111827;      /* gray-900 */
  --border:rgba(255,255,255,.08);
  --text:#e5e7eb;      /* gray-200 */
  --muted:#a3adc2;     /* soft slate */
  --brand:#22c55e;     /* green-500 */
  --brand2:#14b8a6;    /* teal-500 */
  --link:#60a5fa;      /* blue-400 */
  --radius:16px;
  --shadow:0 12px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(96,165,250,.15), transparent 55%),
    radial-gradient(900px 500px at 100% -20%, rgba(20,184,166,.15), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* containers */
.container{max-width:1100px;margin:0 auto;padding:22px}

/* links & small helpers */
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
.small{color:var(--muted);font-size:.92rem}

/* ===== Header / Navigation ===== */
header{
  position:sticky;top:0;z-index:20;
  background:rgba(11,18,35,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:12px}
.brand .logo{
  width:44px;height:44px;border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  box-shadow:0 10px 24px rgba(34,197,94,.35);
}
.brand h1{margin:0;font-size:1.06rem}
nav a{color:#e7ecf4;opacity:.9;margin:0 10px}
nav a.active, nav a:hover{opacity:1}

/* ===== Sections & cards ===== */
.card{
  background:linear-gradient(180deg, rgba(17,24,39,.86), rgba(17,24,39,.72));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
h2{margin:0 0 12px}
.lead{font-size:1.12rem;color:#fff;opacity:.95}

/* hero layout */
.hero{
  display:grid;grid-template-columns:1.2fr .8fr;gap:24px;align-items:start;margin:28px 0 10px;
}
.kicker{letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-size:.82rem;margin-bottom:6px}
.badges{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.badge{
  background:rgba(255,255,255,.08);
  border:1px solid var(--border);
  padding:7px 10px;border-radius:999px;font-size:.88rem;color:#d7e2f0
}

/* services grid */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}
.service{
  background:linear-gradient(180deg, rgba(17,24,39,.9), rgba(17,24,39,.74));
  border:1px solid var(--border);border-radius:14px;padding:18px;box-shadow:var(--shadow)
}
.service h3{margin:0 0 8px}

/* tables (pricing) */
table{width:100%;border-collapse:separate;border-spacing:0 10px}
th,td{padding:14px 16px;text-align:left}
thead th{color:var(--muted);font-weight:600}
tbody tr{background:rgba(255,255,255,.06);border:1px solid var(--border)}
tbody tr td:first-child, thead tr th:first-child{border-top-left-radius:10px;border-bottom-left-radius:10px}
tbody tr td:last-child, thead tr th:last-child{border-top-right-radius:10px;border-bottom-right-radius:10px}

/* forms (contact) */
form{display:grid;gap:12px}
input,textarea{
  width:100%;padding:12px 14px;border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);color:#fff
}
textarea{min-height:140px;resize:vertical}
button{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:#01281d;border:0;border-radius:12px;padding:12px 16px;font-weight:800;cursor:pointer
}
button:hover{filter:brightness(1.06)}

/* footer */
footer{border-top:1px solid var(--border);margin-top:36px}

/* responsive */
@media (max-width: 920px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  nav{display:flex;flex-wrap:wrap;gap:8px}
}