:root{
  --bg:#0c0f14;
  --panel:#121826;
  --text:#e8eefc;
  --muted:#b9c4dc;
  --shadow: 0 14px 30px rgba(0,0,0,.35);
  --radius: 16px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: 'Poppins', sans-serif;
  color:var(--text);
  background: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url("grass.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  line-height:1.45;
}
header{
  padding: 26px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(12,15,20,.65);
  backdrop-filter: blur(8px);
}
header h1{ margin:0; font-size: 28px; }
header p{ margin:6px 0 0; color: var(--muted); }

section{
  max-width: 740px;
  margin: 28px auto;
  padding: 18px;
}

h2{ margin: 0 0 10px; font-size: 22px; }
label{ color: var(--muted); font-size: 13px; }

input, textarea{
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(18,24,38,.65);
  color: var(--text);
}

textarea{ min-height: 120px; }

button{
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(74,222,128,.95), rgba(74,222,128,.65));
  color: #07110a;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}

button:hover{ filter: brightness(1.05); }
/* --- Top header bar --- */
.topbar{
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(12,15,20,.65);
  backdrop-filter: blur(8px);
}

.topbar-inner{
  max-width: 1100px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width: 260px;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(18,24,38,.55);
  padding: 6px;
}

.brand-name{
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .2px;
}

.brand-tag{
  color: var(--muted);
  font-size: 13px;
}

.topbar-buttons{
  display:flex;
  gap:10px;
}

.btn-small{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  text-decoration:none;
  font-weight: 700;
}

.btn-solid{
  background: linear-gradient(135deg, rgba(74,222,128,.95), rgba(74,222,128,.65));
  color:#07110a;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}

.btn-small:hover{ filter: brightness(1.05); }
#quote h2{
  font-style: italic;
}
.estimate-title{
  font-style: italic;
}
/* ===== HERO STYLES (added) ===== */

.hero{
  padding: 70px 20px;
  text-align: center;
}

.hero-inner{
  max-width: 850px;
  margin: 0 auto;
}

.hero h1{
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-sub{
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

.btn-large{
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  text-decoration:none;
  background: linear-gradient(135deg, rgba(74,222,128,.95), rgba(74,222,128,.65));
  color:#07110a;
  box-shadow: var(--shadow);
}

.btn-outline{
  padding: 16px 22px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.25);
  color: var(--text);
}

.btn-outline:hover,
.btn-large:hover{
  filter: brightness(1.05);
}
/* Subtle texture overlay */

body::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity:0.25;
  mix-blend-mode: overlay;
}
/* Grass edge under hero */

.hero{
  position: relative;
}

.hero::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:80px;
  background: url("https://svgshare.com/i/14oU.svg") repeat-x bottom;
  background-size: 300px 80px;
  filter: brightness(1.2);
}
/* ===== Embedded texture overlay (no external files) ===== */
body{
  position: relative;
}

/* Subtle distressed texture */

body{
  position: relative;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55; /* adjust 0.12–0.25 */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
/* ===== Premium polish ===== */

/* Make the hero feel like a real website section */
.hero{
  padding: 70px 20px 90px;
}

.hero-inner{
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 34px 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

/* Make the hero subtext easier to read */
.hero-sub{
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Unify card/form styling */
.card,
.form{
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 34px rgba(0,0,0,0.40);
}

/* Inputs: slightly clearer edges */
input, textarea{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
}

/* Buttons: match logo vibe (grass green) */
.btn-large,
button,
.btn-solid{
  background: linear-gradient(135deg, #6cff2f, #1f7a2e);
  color: #061d0b;
}

.btn-outline{
  border: 1px solid rgba(255,255,255,0.24);
}
/* ===== Checkbox alignment fix ===== */

.checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  background: rgba(0,0,0,0.28);
  border:1px solid rgba(255,255,255,0.10);
  color: var(--text);
  line-height:1.4;
}

.checkbox input{
  margin-top:4px;
  width:18px;
  height:18px;
}
.checkbox-note{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.checkbox{
  align-items: flex-start;
}

.checkbox > div{
  display:flex;
  flex-direction:column;
}

.checkbox strong{
  font-weight:600;
}

.checkbox-note{
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
/* Highlight selected services */

/* Highlight selected service box */

.checkbox:has(input:checked) {
  border-color: #6cff2f;
  background: rgba(108,255,47,0.08);
}
/* Text message link color */

.tiny a {
  color: #6cff2f;
  font-weight: 600;
}

.tiny a:hover {
  color: #8dff5a;
}
.tiny a:hover {
  color: #8dff5a;
  font-style: italic;
}