/* Precision Coats Commercial Roofing - Site Styles
   Theme: Sky Blue, Royal Blue, Black, White */

:root{
  --sky:#4DB8FF;
  --royal:#1E3A8A;
  --black:#0B0F19;
  --white:#ffffff;
  --gray:#F5F7FA;
  --text:#1f2937;
  --shadow: 0 12px 30px rgba(0,0,0,.12);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}

a{color:var(--royal); text-decoration:none;}
a:hover{text-decoration:underline;}

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

.topbar{
  background:var(--black);
  color:var(--white);
  font-size:.95rem;
}
.topbar .container{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  padding:10px 0;
  align-items:center;
  justify-content:space-between;
}
.topbar a{color:var(--sky); font-weight:700;}

header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.98);
  border-bottom:1px solid #e5e7eb;
  backdrop-filter: blur(10px);
}

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.logo{
  display:flex; gap:10px; align-items:center;
  font-weight:900;
  letter-spacing:.3px;
  color:var(--black);
  font-size:1.1rem;
}
.logo span{
  display:inline-block;
  width:12px; height:12px;
  background:linear-gradient(135deg, var(--sky), var(--royal));
  border-radius:50%;
}
.menu{
  display:flex; gap:16px; flex-wrap:wrap;
  align-items:center;
  font-weight:700;
}
.menu a{
  padding:10px 12px;
  border-radius:10px;
}
.menu a:hover{
  background:var(--gray);
  text-decoration:none;
}

.btn{
  display:inline-block;
  background:linear-gradient(135deg, var(--sky), var(--royal));
  color:var(--white);
  padding:12px 18px;
  border-radius:14px;
  font-weight:900;
  box-shadow: var(--shadow);
  border:none;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.05); text-decoration:none;}
.btn.outline{
  background:transparent;
  border:2px solid var(--royal);
  color:var(--royal);
  box-shadow:none;
}
.btn.outline:hover{background:var(--gray);}

.hero{
  background:
    linear-gradient(90deg, rgba(11,15,25,.78), rgba(11,15,25,.25)),
    url("heroroof.jpg") center/cover no-repeat;
  color:var(--white);
  padding:80px 0;
}
.hero h1{
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height:1.1;
  margin:0 0 12px 0;
  max-width:820px;
}
.hero p{
  font-size:1.15rem;
  max-width:760px;
  margin:0 0 22px 0;
  color:rgba(255,255,255,.92);
}
.hero .cta-row{display:flex; gap:12px; flex-wrap:wrap;}

.badge-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}
.badge{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
  padding:10px 12px;
  border-radius:14px;
  font-weight:700;
  font-size:.95rem;
}

.section{padding:58px 0;}
.section.alt{background:var(--gray);}
.section h2{
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin:0 0 12px 0;
  color:var(--black);
}
.section p.lead{
  font-size:1.05rem;
  max-width:850px;
}

.grid{
  display:grid;
  gap:18px;
}
.grid.cols-3{grid-template-columns:repeat(3, 1fr);}
.grid.cols-2{grid-template-columns:repeat(2, 1fr);}
@media(max-width:900px){
  .grid.cols-3{grid-template-columns:1fr;}
  .grid.cols-2{grid-template-columns:1fr;}
}

.card{
  background:var(--white);
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 25px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.06);
}
.card h3{margin:0 0 8px 0; color:var(--royal);}
.card p{margin:0;}

.icon{
  width:38px; height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  margin-bottom:12px;
  background:linear-gradient(135deg, rgba(77,184,255,.18), rgba(30,58,138,.16));
  border:1px solid rgba(30,58,138,.20);
  font-weight:900;
  color:var(--royal);
}

.split{
  display:grid;
  gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
@media(max-width:900px){ .split{grid-template-columns:1fr;} }

.checklist{padding-left:18px;}
.checklist li{margin:8px 0;}

.kpi{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.kpi .pill{
  background:var(--white);
  border:1px solid #e5e7eb;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
}

.footer{
  background:var(--black);
  color:rgba(255,255,255,.9);
  padding:40px 0;
}
.footer a{color:var(--sky);}
.footer .grid{gap:24px;}
.footer h4{margin:0 0 10px 0; color:var(--white);}
.small{font-size:.95rem; opacity:.9;}
hr.sep{border:none; border-top:1px solid rgba(255,255,255,.18); margin:18px 0;}
.form{
  display:grid;
  gap:12px;
}
input, textarea, select{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #d1d5db;
  font-size:1rem;
}
textarea{min-height:130px; resize:vertical;}
.notice{
  background:rgba(77,184,255,.12);
  border:1px solid rgba(77,184,255,.28);
  padding:14px 16px;
  border-radius:16px;
}
