/* style.css - single stylesheet for all pages (mobile-first, responsive) */
:root{
  --brand:#0b6fb1;
  --accent:#0f9d58;
  --bg:#f7f9fb;
  --card:#ffffff;
  --muted:#6b7280;
  --max-width:1100px;
  --radius:10px;
  --shadow: 0 6px 18px rgba(11,111,177,0.08);
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: light;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  font-size:16px;
}

.container{
  width:94%;
  max-width:var(--max-width);
  margin:24px auto;
}

/* Header / Nav */
.header{
  background:linear-gradient(90deg, rgba(11,111,177,0.06), rgba(15,157,88,0.03));
  border-radius:var(--radius);
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-shadow:var(--shadow);
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
  text-decoration:none;
  color:inherit;
}
.logo{
  width:48px;
  height:48px;
  background:var(--brand);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size:18px;
  box-shadow:0 4px 12px rgba(11,111,177,0.18);
}
.nav{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  color:var(--brand);
  padding:8px 12px;
  border-radius:8px;
  font-weight:600;
}
.nav a.active, .nav a:hover{
  background:var(--brand);
  color:#fff;
  box-shadow:0 6px 18px rgba(11,111,177,0.08);
}

/* Hero */
.hero{
  margin-top:18px;
  background:var(--card);
  padding:20px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.hero h1{margin:0;font-size:1.6rem}
.hero p{margin:0;color:var(--muted)}

/* Cards and sections */
.grid{
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:16px;
  margin-top:16px;
}
.card{
  background:var(--card);
  padding:16px;
  border-radius:12px;
  box-shadow:var(--shadow);
}
.small{font-size:0.95rem;color:var(--muted)}

/* Pricing table */
.pricing{
  display:grid;
  grid-template-columns:repeat(1,1fr);
  gap:12px;
}
.price-card{
  border:1px solid rgba(15,157,88,0.08);
  padding:16px;
  border-radius:10px;
}
.price-title{font-weight:700;color:var(--brand)}
.price-amount{font-size:1.4rem;font-weight:800;margin:8px 0;color:#111}

/* Footer */
.footer{
  margin-top:22px;
  padding:18px;
  text-align:center;
  color:var(--muted);
  font-size:0.95rem;
}

/* Responsive layout for larger screens */
@media(min-width:760px){
  .hero{grid-template-columns:1fr 360px;align-items:center}
  .grid{grid-template-columns:repeat(2,1fr)}
  .pricing{grid-template-columns:repeat(3,1fr)}
  .nav{gap:8px}
}

/* Forms */
input,textarea,select,button{
  font-family:inherit;
  font-size:1rem;
}
.input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid #e6e9ef;
  background:#fff;
  color:#111;
}
textarea{min-height:120px;resize:vertical}
.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:8px;
  background:var(--brand);
  color:#fff;
  border:none;
  cursor:pointer;
  font-weight:700;
}
.small-muted{color:var(--muted);font-size:0.95rem}

/* Blog list */
.post{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.post .meta{color:var(--muted);font-size:0.9rem}

/* Utility */
.kv{display:flex;gap:8px;flex-wrap:wrap}
.badge{background:#eef6ff;color:var(--brand);padding:6px 8px;border-radius:8px;font-weight:700;font-size:0.9rem}
/* Multi-level dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 260px;
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 12px;
  z-index: 9999;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* County sections */
.dropdown-section {
  margin-bottom: 14px;
  position: relative;
}

.dropdown-section strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  cursor: pointer;
}

/* Sub-dropdown (cities) */
.sub-dropdown {
  display: none;
  padding-left: 12px;
  border-left: 2px solid #e5e7eb;
  margin-top: 6px;
}

.dropdown-section:hover .sub-dropdown {
  display: block;
}

.sub-dropdown a {
  display: block;
  padding: 4px 0;
  text-decoration: none;
  color: #111;
  font-size: 0.95rem;
}

.sub-dropdown a:hover {
  color: var(--brand);
}/* Clean vertical dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 260px;
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 12px 0;
  z-index: 9999;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* County blocks */
.county-block {
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
}

.county-block:last-child {
  border-bottom: none;
}

.county-title {
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

/* City links */
.dropdown-content a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
  color: #111;
  font-size: 0.95rem;
}

.dropdown-content a:hover {
  color: var(--brand);
}.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.county-list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}

.county-list li {
  margin: 4px 0;
}

.county-list a {
  color: var(--brand);
  text-decoration: none;
}

.county-list a:hover {
  text-decoration: underline;
}
.service-card {
  border: 1px solid #c5c5c5;
  border-radius: 10px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}