/* ===========================================================
   BDaniel General Construction Corp — Stylesheet
   Brand colors taken from the logo (navy + orange)
   =========================================================== */

:root {
  --navy:        #1d2d3f;
  --navy-dark:   #14202e;
  --navy-light:  #2a4055;
  --orange:      #f0922e;
  --orange-dark: #d97916;
  --gray-bg:     #f5f6f8;
  --gray-line:   #e3e6ea;
  --text:        #2b3440;
  --text-soft:   #5d6b7a;
  --white:       #ffffff;
  --shadow:      0 10px 30px rgba(20, 32, 46, 0.08);
  --shadow-lg:   0 20px 50px rgba(20, 32, 46, 0.15);
  --radius:      14px;
  --maxw:        1180px;
  --header-h:    78px;
}

/* -------- Reset -------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--navy); font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { position: relative; }

/* -------- Layout helpers -------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-gray { background: var(--gray-bg); }
.bg-navy { background: var(--navy); color: #d7dee6; }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 18px; }
.section-intro { max-width: 640px; margin: 0 auto 50px; color: var(--text-soft); font-size: 1.05rem; }
.section-intro.left { margin-left: 0; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px; font-weight: 600;
  font-family: 'Poppins', sans-serif; font-size: 0.98rem;
  cursor: pointer; border: 2px solid transparent; transition: all .25s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(240,146,46,.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(240,146,46,.45); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--orange); background: var(--orange); }

/* -------- Header -------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-line); z-index: 1000; transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; }
.brand-text { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); line-height: 1.05; font-size: 1.05rem; }
.brand-text small { display: block; font-size: .62rem; letter-spacing: 1.5px; color: var(--orange); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 16px; border-radius: 8px; font-weight: 500; font-size: .96rem;
  color: var(--navy); transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta { margin-left: 10px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); margin-right: 6px; }
.nav-phone i { color: var(--orange); }
.hamburger { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; color: var(--navy); }
/* Mobile-only tap-to-call button (hidden on desktop, where .nav-phone is shown) */
.nav-call {
  display: none; width: 44px; height: 44px; flex: none; border-radius: 50%;
  background: var(--orange); color: #fff; align-items: center; justify-content: center;
  font-size: 1.05rem; margin-left: auto; margin-right: 6px; transition: background .2s;
}
.nav-call:hover { background: var(--orange-dark); color: #fff; }

/* -------- Hero -------- */
.hero {
  margin-top: var(--header-h); min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; color: #fff;
  background:
    linear-gradient(120deg, rgba(20,32,46,.93) 0%, rgba(29,45,63,.78) 55%, rgba(29,45,63,.35) 100%),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80') center/cover no-repeat;
}
.hero-inner { max-width: 720px; padding: 60px 0; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5.5vw, 4rem); margin-bottom: 22px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.18rem; color: #dfe6ee; margin-bottom: 34px; max-width: 580px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 46px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: #e6edf4; }
.hero-badge i { color: var(--orange); font-size: 1.5rem; }

/* -------- Stats bar -------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 14px; }
.stat .num { font-family: 'Poppins', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--orange); }
.stat .label { color: var(--text-soft); font-weight: 500; font-size: .95rem; }

/* -------- Services -------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--gray-line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 210px; overflow: hidden; }
.card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.07); }
.card-body { padding: 26px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card-body p { color: var(--text-soft); font-size: .97rem; margin-bottom: 14px; }
.card-link { color: var(--orange); font-weight: 600; font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }
.card-link i { transition: transform .2s; }
.card:hover .card-link i { transform: translateX(4px); }

/* Services page: make the whole card clickable, not just the link */
.svc-cards .card { position: relative; cursor: pointer; }
.svc-cards .card .card-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* Service icon grid (services page) */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 70px; }
.svc-detail:last-child { margin-bottom: 0; }
.svc-detail.reverse .svc-text { order: 2; }
.svc-detail img { border-radius: var(--radius); box-shadow: var(--shadow); height: 380px; width: 100%; object-fit: cover; }
.svc-text h3 { font-size: 1.7rem; margin-bottom: 14px; }
.svc-text p { color: var(--text-soft); margin-bottom: 16px; }
.svc-text ul { display: grid; gap: 10px; }
.svc-text ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.svc-text ul li i { color: var(--orange); margin-top: 5px; }

/* -------- Why us / features -------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { text-align: center; padding: 30px 20px; }
.feature .ic {
  width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(240,146,46,.12); color: var(--orange); font-size: 1.7rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--text-soft); font-size: .94rem; }

/* -------- About -------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-imgs { position: relative; }
.about-imgs img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-imgs .img-main { height: 460px; width: 100%; object-fit: cover; }
.about-imgs .img-badge {
  position: absolute; bottom: -26px; right: -10px; background: var(--orange); color: #fff;
  padding: 22px 28px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center;
}
.about-imgs .img-badge .big { font-family: 'Poppins',sans-serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-imgs .img-badge .sm { font-size: .85rem; }
.about-text p { color: var(--text-soft); margin-bottom: 18px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 30px; }
.checklist li { display: flex; gap: 10px; align-items: center; font-weight: 500; }
.checklist li i { color: var(--orange); }

.value-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background:#fff; border:1px solid var(--gray-line); border-radius: var(--radius); padding: 32px 26px; }
.value-card .ic { color: var(--orange); font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--text-soft); font-size: .95rem; }

/* -------- Gallery -------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; height: 280px; cursor: pointer; }
.gallery-item img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px;
  background: linear-gradient(to top, rgba(20,32,46,.8), transparent 60%);
  color: #fff; font-family: 'Poppins',sans-serif; font-weight: 600; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .cap { opacity: 1; }

/* -------- Testimonials -------- */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.tcard { background:#fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border:1px solid var(--gray-line); }
.tcard .stars { color: var(--orange); margin-bottom: 14px; }
.tcard p { font-style: italic; color: var(--text); margin-bottom: 20px; }
.tcard .who { display: flex; align-items: center; gap: 14px; }
.tcard .avatar {
  width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'Poppins',sans-serif;
}
.tcard .who strong { display: block; color: var(--navy); }
.tcard .who span { font-size: .85rem; color: var(--text-soft); }

/* -------- CTA band -------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  color:#fff; border-radius: 20px; padding: 56px; text-align:center; position: relative; overflow:hidden;
}
.cta-band h2 { color:#fff; font-size: clamp(1.6rem,3.5vw,2.3rem); margin-bottom: 14px; }
.cta-band p { color:#cdd7e1; margin-bottom: 28px; max-width: 560px; margin-inline:auto; }
.cta-band .btn { font-size: 1.05rem; }

/* -------- Page hero (sub pages) -------- */
.page-hero {
  margin-top: var(--header-h); padding: 80px 0; color:#fff; text-align:center;
  background: linear-gradient(rgba(20,32,46,.85),rgba(20,32,46,.85)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover;
}
.page-hero h1 { color:#fff; font-size: clamp(2rem,5vw,3rem); margin-bottom: 12px; }
.page-hero .crumbs { color:#c3cdd8; font-size: .95rem; }
.page-hero .crumbs a:hover { color: var(--orange); }

/* -------- Contact / Form -------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
.form-card { background:#fff; border:1px solid var(--gray-line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:7px; color: var(--navy); }
.field label .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1px solid var(--gray-line); border-radius: 10px;
  font-family: inherit; font-size: .97rem; color: var(--text); background:#fff; transition: border .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,146,46,.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .85rem; color: var(--text-soft); margin-top: 6px; }
.form-msg { display:none; padding: 16px 18px; border-radius: 10px; margin-bottom: 20px; font-weight: 500; }
.form-msg.ok { display:block; background: #e7f6ec; color: #1c7a3f; border:1px solid #b7e4c7; }
.form-msg.err { display:block; background: #fdecea; color: #b3261e; border:1px solid #f5c6c2; }

.info-card { background: var(--navy); color:#d7dee6; border-radius: var(--radius); padding: 36px; }
.info-card h3 { color:#fff; margin-bottom: 22px; }
.info-item { display:flex; gap:16px; margin-bottom: 22px; }
.info-item .ic {
  width:46px; height:46px; flex:none; border-radius:10px; background: rgba(240,146,46,.15);
  color: var(--orange); display:flex; align-items:center; justify-content:center; font-size:1.1rem;
}
.info-item strong { color:#fff; display:block; font-family:'Poppins',sans-serif; }
.info-item a, .info-item span { color:#b9c4cf; }
.info-item a:hover { color: var(--orange); }
.map-embed { border:0; width:100%; height:300px; border-radius: var(--radius); margin-top: 30px; box-shadow: var(--shadow); }

/* -------- Footer -------- */
.footer { background: var(--navy-dark); color:#9fb0bf; padding: 64px 0 0; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .brand-text { color:#fff; }
.footer p { font-size:.93rem; margin-top: 16px; color:#9fb0bf; }
.footer h4 { color:#fff; font-size: 1.05rem; margin-bottom: 18px; font-family:'Poppins',sans-serif; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a:hover { color: var(--orange); }
.footer .f-contact li { display:flex; gap:10px; margin-bottom:12px; font-size:.93rem; }
.footer .f-contact i { color: var(--orange); margin-top:4px; }
.socials { display:flex; gap:12px; margin-top:18px; }
.socials a {
  width:40px; height:40px; border-radius:50%; background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; color:#fff; transition: background .2s;
}
.socials a:hover { background: var(--orange); }
.license-note { margin-top:16px; font-size:.82rem; color:#7e909f; letter-spacing:.02em; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding: 22px 0; text-align:center; font-size:.88rem; color:#7e909f; }
.footer-bottom a { color:#9fb0bf; }
.footer-bottom a:hover { color: var(--orange); }

/* -------- Facebook button + header icon -------- */
.btn-facebook { background: #1877f2; color: #fff; box-shadow: 0 8px 20px rgba(24,119,242,.35); }
.btn-facebook:hover { background: #0f63d6; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(24,119,242,.45); }
.btn-facebook i { font-size: 1.05rem; }

.nav-fb {
  width: 38px; height: 38px; padding: 0; flex: none; border-radius: 50%;
  background: #1877f2; color: #fff; display: inline-flex; align-items: center; justify-content: center;
  margin-left: 8px; transition: background .2s, transform .2s;
}
.nav-fb:hover { background: #0f63d6; color: #fff; transform: translateY(-2px); }

/* -------- Recent work / Facebook strip (home) -------- */
.work-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 38px; }
.work-thumb { position: relative; border-radius: var(--radius); overflow: hidden; height: 200px; box-shadow: var(--shadow); }
.work-thumb img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s; }
.work-thumb:hover img { transform: scale(1.07); }
.work-thumb::after {
  content: "\f09a"; font-family: "Font Awesome 6 Brands"; font-weight: 400;
  position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%;
  background: #1877f2; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; opacity: 0; transform: scale(.7); transition: opacity .3s, transform .3s;
}
.work-thumb:hover::after { opacity: 1; transform: scale(1); }

/* -------- Blog listing -------- */
.card-meta { display:flex; gap:14px; align-items:center; font-size:.8rem; color:var(--text-soft); margin-bottom:10px; text-transform:uppercase; letter-spacing:.04em; font-weight:600; }
.card-meta .cat { color:var(--orange); }
.card-body h3 a:hover { color: var(--orange); }
/* Blog card image as a link: force a clean 16:9 thumbnail */
a.card-img { display:block; height:auto; aspect-ratio:16 / 9; }

/* -------- Article (blog post) -------- */
.article { max-width: 760px; margin: 0 auto; }
.article .post-meta { display:flex; gap:16px; flex-wrap:wrap; align-items:center; color:var(--text-soft); font-size:.92rem; margin-bottom:30px; }
.article .post-meta .cat { color:var(--orange); font-weight:700; text-transform:uppercase; letter-spacing:.05em; }
.article-lead { font-size:1.18rem; color:var(--text); line-height:1.7; margin-bottom:30px; }
.article-cover { border-radius: var(--radius); box-shadow: var(--shadow); width:100%; height:auto; margin-bottom:36px; }
.article h2 { font-size:1.7rem; margin:42px 0 16px; }
.article h3 { font-size:1.28rem; margin:30px 0 12px; }
.article p { color:var(--text); margin-bottom:18px; }
.article ul, .article ol { margin:0 0 22px 22px; color:var(--text); }
.article ul li, .article ol li { margin-bottom:10px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article a { color: var(--orange-dark); font-weight:600; text-decoration: underline; }
.article a:hover { color: var(--orange); }
.article blockquote {
  border-left:4px solid var(--orange); background:var(--gray-bg);
  padding:18px 24px; border-radius:0 10px 10px 0; margin:0 0 24px; color:var(--text); font-style:italic;
}
.article strong { color: var(--navy); }

/* Cost / comparison tables inside articles */
.article .table-wrap { overflow-x:auto; margin:0 0 26px; }
.article table { width:100%; border-collapse:collapse; font-size:.96rem; min-width:480px; }
.article table caption { text-align:left; font-weight:600; color:var(--text-soft); margin-bottom:8px; font-size:.9rem; }
.article th, .article td { padding:13px 16px; border:1px solid var(--gray-line); text-align:left; }
.article thead th { background:var(--navy); color:#fff; font-family:'Poppins',sans-serif; }
.article tbody tr:nth-child(even) { background:var(--gray-bg); }
.article tbody td:last-child { font-weight:600; color:var(--navy); white-space:nowrap; }

/* Key-takeaways / callout box */
.callout { background:rgba(240,146,46,.08); border:1px solid rgba(240,146,46,.3); border-radius:var(--radius); padding:24px 28px; margin:0 0 30px; }
.callout h3 { margin:0 0 12px; color:var(--orange-dark); font-size:1.15rem; }
.callout ul { margin-bottom:0; }

/* -------- Areas we serve -------- */
.area-links { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:760px; margin:0 auto; }
.area-links a {
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:#fff; border:1px solid var(--gray-line); border-radius:12px;
  padding:18px 16px; font-family:'Poppins',sans-serif; font-weight:600; color:var(--navy);
  transition:transform .2s, box-shadow .2s, border-color .2s;
}
.area-links a:hover { transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--orange); color:var(--orange-dark); }
.area-links a i { color:var(--orange); }
@media (max-width:760px){ .area-links { grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .area-links { grid-template-columns:1fr; } }

/* FAQ */
.faq { margin-top:14px; }
.faq-item { border-bottom:1px solid var(--gray-line); padding:20px 0; }
.faq-item:first-child { border-top:1px solid var(--gray-line); }
.faq-item h3 { margin:0 0 8px; font-size:1.12rem; }
.faq-item p { margin:0; color:var(--text-soft); }

/* In-article CTA */
.post-cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%); color:#fff; border-radius:18px; padding:36px 34px; text-align:center; margin:40px 0; }
.post-cta h3 { color:#fff; font-size:1.4rem; margin-bottom:10px; }
.post-cta p { color:#cdd7e1; margin-bottom:22px; }
.post-cta .btn-primary { color:#000; }
.post-cta .btn-primary:hover { color:#000; }

/* Author / share row */
.post-footer { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; margin-top:40px; padding-top:26px; border-top:1px solid var(--gray-line); }
.post-back { font-weight:600; color:var(--orange-dark); display:inline-flex; gap:8px; align-items:center; }
.post-back:hover { color:var(--orange); }

@media (max-width:760px){
  .article h2 { font-size:1.45rem; }
  .article-lead { font-size:1.08rem; }
  .post-cta { padding:30px 22px; }
}

/* Tables fit the screen on phones instead of overflowing / cutting off columns */
@media (max-width:600px){
  .article .table-wrap { border:1px solid var(--gray-line); border-radius:10px; overflow:hidden; }
  .article table { min-width:0; width:100%; font-size:.85rem; }
  .article th, .article td { padding:9px 10px; }
  .article tbody td:last-child { white-space:normal; }
}

/* -------- Reveal animation -------- */
.reveal { opacity:0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity:1; transform:none; }

/* -------- Responsive -------- */
@media (max-width: 980px) {
  .cards, .features, .testimonials, .value-cards, .gallery-grid, .work-strip { grid-template-columns: repeat(2,1fr); }
  .about-grid, .contact-grid, .svc-detail, .svc-detail.reverse .svc-text { grid-template-columns: 1fr; }
  .svc-detail.reverse .svc-text { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-imgs { max-width: 520px; margin: 0 auto 40px; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: var(--header-h); left:0; right:0; background:#fff; flex-direction: column;
    align-items: stretch; gap:0; padding: 14px; border-bottom:1px solid var(--gray-line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .3s; max-height: calc(100vh - var(--header-h)); overflow:auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; border-radius: 0; }
  .nav-links a.nav-fb { margin: 12px auto 6px; }
  .nav-cta { margin: 8px 16px 4px; text-align: center; justify-content: center; }
  /* Show the phone as a tappable row inside the opened mobile menu */
  .nav-phone { display: flex; justify-content: center; padding: 14px 16px; font-size: 1.05rem; border-top: 1px solid var(--gray-line); margin: 6px 0 0; }
  .nav-call { display: inline-flex; }
  .hamburger { display: block; }
  .cards, .features, .testimonials, .value-cards, .gallery-grid, .stats, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .cta-band { padding: 40px 24px; }
  .hero-badges { gap: 18px; }
  /* Hero: avoid an over-tall first screen, easier-to-tap buttons */
  .hero {
    min-height: auto;
    background:
      linear-gradient(120deg, rgba(20,32,46,.93) 0%, rgba(29,45,63,.82) 60%, rgba(29,45,63,.55) 100%),
      url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=800&q=70') center/cover no-repeat;
  }
  /* Lighter sub-page hero image on phones */
  .page-hero {
    background: linear-gradient(rgba(20,32,46,.85),rgba(20,32,46,.85)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800&q=70') center/cover;
  }
  .hero-inner { padding: 48px 0; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* Keep the floating about badge from causing horizontal scroll */
  .about-imgs .img-badge { right: 0; bottom: -20px; padding: 16px 22px; }
  .gallery-item { height: 240px; }
  .section-intro { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .form-card, .info-card { padding: 24px; }
  .cta-band { padding: 34px 20px; }
  .tcard { padding: 24px; }
  .value-card { padding: 26px 22px; }
  .page-hero { padding: 60px 0; }
  .stat .num { font-size: 2.2rem; }
  /* Stack form action buttons full-width for easy tapping */
  .form-card .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 14px; }
  .hero-badge { font-size: .9rem; }
  .brand img { height: 42px; }
  .brand-text { font-size: .98rem; }
}

/* ============ Sticky mobile action bar ============ */
.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: #14202e;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -4px 18px rgba(0,0,0,.25);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
  white-space: nowrap;
}
.mobile-bar a.mb-cta { background: var(--orange); }
@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 68px; }
}

/* ============ Angi rating badge + 4-card testimonials ============ */
.angi-badge {
  text-decoration: none;
  display: inline-flex;
  transition: transform .2s, box-shadow .2s;
  align-items: center;
  gap: 10px;
  margin: 0 auto 34px;
  padding: 10px 22px;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.angi-badge .angi-score { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.angi-badge .angi-stars { color: var(--orange); font-size: .9rem; letter-spacing: 2px; }
.angi-badge .angi-label { color: var(--text-soft); }
.angi-badge .angi-label strong { color: var(--navy); }
.testimonials.testimonials-4 { grid-template-columns: repeat(2,1fr); max-width: 900px; margin: 0 auto; }
.tcard .who { text-align: left; }
@media (max-width: 760px) {
  .testimonials.testimonials-4 { grid-template-columns: 1fr; }
}
.angi-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
