:root{
  --black:#111;
  --gray:#f4f4f4;
  --gold:#d4af37;
  --text:#222;
  --muted:#555;
  --radius:10px;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: Arial, sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.5;
  text-align:center;
}

.container{
  width:90%;
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* HEADER (CENTERED) */
.header{
  background:var(--black);
  color:#fff;
  padding:42px 0 28px;
}

.header h1{
  margin:0;
  font-size:34px;
}

.tagline{
  margin:10px 0 0;
  color:#ddd;
}

/* NAV BUTTONS */
.nav{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.nav a{
  display:inline-block;
  text-decoration:none;
  color:#fff;
  font-weight:bold;
  font-size:14px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,0.22);
  border-radius:999px;
  background:rgba(255,255,255,0.06);
}

.nav a:hover{
  background:rgba(255,255,255,0.14);
}

/* HEADER CALL BUTTON */
.header-call{
  display:inline-block;
  margin-top:16px;
  padding:12px 22px;
  background:var(--gold);
  color:#000;
  text-decoration:none;
  font-weight:bold;
  border-radius:8px;
}

/* HERO */
.hero{
  background:var(--gray);
  padding:70px 0;
}

.hero h2{
  margin:0 0 12px;
  font-size:30px;
}

.hero-sub{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
}

/* BUTTONS */
.cta-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 28px;
  background:#000;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  border-radius:8px;
  transition: transform .15s ease, opacity .15s ease;
}

.cta-btn:hover{
  opacity:0.92;
  transform:translateY(-1px);
}

.secondary{
  background:transparent;
  color:#000;
  border:2px solid #000;
}

/* SERVICES */
.services{
  padding:70px 0;
  background:#fff;
}

.section-sub{
  margin-top:10px;
  color:var(--muted);
}

.service-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:24px;
  margin-top:36px;
}

.service{
  width:320px;
  max-width:100%;
  padding:22px 18px;
  border:1px solid #e9e9e9;
  border-radius:var(--radius);
  background:#fff;
  text-align:left;
}

.service h3{
  margin:0 0 8px;
  font-size:18px;
}

.service p{
  margin:0;
  color:var(--muted);
}

/* PROJECTS */
.projects{
  padding:70px 0;
  background:var(--gray);
}

/* BEFORE/AFTER GRID */
.ba-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px;
  max-width:950px;
  margin:40px auto 10px;
}

.ba-card{
  position:relative;
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  background:#ddd;
  border:1px solid rgba(0,0,0,0.08);
}

.ba-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.ba-label{
  position:absolute;
  top:10px;
  left:10px;
  background:rgba(0,0,0,0.78);
  color:#fff;
  font-weight:bold;
  padding:6px 10px;
  border-radius:8px;
  font-size:13px;
}

.ba-wide{
  grid-column: 1 / -1;
}

.ba-wide img{
  height:340px;
}

.gallery-note{
  margin-top:18px;
  color:var(--muted);
}

/* CONTACT */
.contact{
  padding:70px 0;
  background:#fff;
}

.contact a{
  color:#000;
  font-weight:bold;
  text-decoration:none;
}

footer{
  background:var(--black);
  color:#fff;
  padding:20px 0;
}

/* MOBILE */
@media (max-width: 800px){
  .header h1{ font-size:28px; }
  .hero h2{ font-size:26px; }
  .ba-grid{ grid-template-columns: 1fr; }
  .ba-wide img{ height:260px; }
  .service{ text-align:left; }
}


/* TRUST / REVIEWS */
.trust{ background: var(--gray); padding: 60px 0; }
.trust-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;
  margin-top:20px;
}
.trust-card{
  display:block;
  padding:18px;
  border:1px solid #ddd;
  border-radius: var(--radius);
  background:#fff;
  color:inherit;
  text-decoration:none;
  text-align:left;
}
.trust-card h3{ margin:0 0 6px 0; color: var(--black); }
.trust-card p{ margin:0; color: var(--muted); }
.callout{
  margin-top:22px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid #ddd;
  background:#fff;
  text-align:left;
}

/* MINI CTAs */
.mini-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin: 18px 0 10px;
}
.mini-cta{
  display:inline-block;
  padding:10px 14px;
  border:1px solid #ddd;
  border-radius:999px;
  text-decoration:none;
  color:var(--text);
  background:#fff;
  font-weight:700;
  font-size:0.95rem;
}
.mini-cta:hover{ border-color: var(--gold); }

/* BULLET LIST */
.bullet-list{
  max-width: 800px;
  margin: 0 auto;
  text-align:left;
  padding-left: 20px;
}
.service-area{ margin-top: 14px; color: var(--muted); }

/* FOOTER */
footer{ background:#111; color:#fff; padding: 30px 0; }
.footer-inner{ text-align:center; }
.footer-links a, footer a{ color:#fff; text-decoration: underline; }
.footer-nap{ margin: 8px 0; }


/* --- Polished before/after gallery --- */
.ba-grid{
  gap: 18px;
}
.ba-card{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transform: translateZ(0);
}
.ba-card picture, .ba-card img{
  display:block;
  width:100%;
}
.ba-card img{
  height: 260px;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.05);
}
.ba-card figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing: .2px;
  color:#fff;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
}
@media (max-width: 520px){
  .ba-card img{ height: 220px; }
}
/* FORM STYLING */
form{
  max-width:700px;
  margin:30px auto 0;
  text-align:left;
}

form label{
  display:block;
  margin-bottom:8px;
  font-weight:bold;
  color:var(--black);
}

form input,
form select,
form textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:18px;
  border:1px solid #d9d9d9;
  border-radius:8px;
  font-size:16px;
  font-family:Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

form input:focus,
form select:focus,
form textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(212,175,55,0.18);
}

form textarea{
  min-height:140px;
  resize:vertical;
}

form button{
  display:inline-block;
  padding:14px 28px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:bold;
  font-size:16px;
  cursor:pointer;
}

form button:hover{
  opacity:0.92;
}
.
