/* ==========================================================================
   MH Glass & Aluminium — Global Stylesheet
   ========================================================================== */

/* ===== Tokens ===== */
:root {
  --ink: #14202b;
  --navy: #0f2336;
  --charcoal: #1d2a36;
  --accent: #c8922e;        /* premium gold */
  --accent-2: #e0a93c;
  --teal: #18a89f;
  --muted: #61707e;
  --line: #e6eaef;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-dark: #0d1b28;
  --white: #fff;
  --shadow: 0 12px 34px rgba(15, 35, 54, .10);
  --shadow-lg: 0 26px 60px rgba(15, 35, 54, .20);
  --radius: 16px;
  --maxw: 1180px;
  --header-h: 78px;
  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body); color: var(--ink); background: var(--bg);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  padding-top: var(--header-h);              /* clear the fixed header (inner pages) */
}
body.home { padding-top: 0; }                /* home hero sits under transparent header */
h1, h2, h3, h4, .brand-text { font-family: var(--ff-head); line-height: 1.18; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 600; font-size: .96rem;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s, box-shadow .22s, background .22s, color .22s;
  white-space: nowrap;
}
.btn-lg { padding: 16px 34px; font-size: 1.04rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn-call { background: #e23b3b; color: #fff; }
.btn-call:hover { background: #c92f2f; transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fb957; transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  background: #fff; border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(15,35,54,.08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 46px; height: 46px; flex: none; display: block; }
.brand-mark svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 3px 8px rgba(15,35,54,.18)); }
.brand-logo { height: 52px; width: auto; flex: none; display: block; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.flogo { height: 50px; width: auto; flex: none; background: #fff; border-radius: 8px; padding: 5px; }

/* social icons */
.footer-about .social { display: flex; gap: 10px; margin-top: 16px; }
.footer-about .social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .2s, transform .2s; }
.footer-about .social a:hover { background: var(--accent); transform: translateY(-2px); }
.footer-about .social a svg { width: 18px; height: 18px; }
.brand-text { font-size: 1.24rem; font-weight: 700; color: var(--navy); line-height: 1.05; letter-spacing: .2px; }
.brand-text small { display: block; font-family: var(--ff-body); font-weight: 600; font-size: .58rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a, .dropbtn { padding: 10px 14px; font-weight: 500; font-size: .97rem; color: var(--ink); border-radius: 8px; transition: color .2s; }
.nav > a:hover, .dropbtn:hover, .nav > a.active { color: var(--accent); }
.nav .nav-cta { color: #fff; margin-left: 8px; }
.nav .nav-cta:hover { color: #fff; }

/* header is solid white on every page (logo has dark lettering) */

/* dropdown */
.dropdown { position: relative; }
.dropbtn { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 11px 14px; border-radius: 8px; color: var(--ink); font-size: .95rem; font-weight: 500; }
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 27px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }

/* ===== Hero (home) ===== */
.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center; text-align: center; color: #fff;
  background: linear-gradient(180deg, rgba(13,27,40,.55), rgba(13,27,40,.78)),
    url('images/p-hero.jpg') center/cover fixed;
  padding: calc(var(--header-h) + 40px) 0 70px;
}
.hero-inner { max-width: 920px; padding: 0 24px; }
.pill {
  display: inline-block; padding: 9px 22px; border-radius: 999px; font-size: .85rem; font-weight: 600;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(6px);
  letter-spacing: .5px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.3rem); font-weight: 800; margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero h1 .hl { color: var(--accent-2); }
.hero-sub { font-size: clamp(1.02rem, 2.2vw, 1.25rem); color: rgba(255,255,255,.92); max-width: 720px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.hero-ranges-label { font-size: .9rem; letter-spacing: 1px; color: rgba(255,255,255,.8); margin-bottom: 16px; }
.range-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.range-pills a {
  padding: 11px 22px; border-radius: 999px; font-family: var(--ff-head); font-weight: 600; font-size: .85rem; letter-spacing: .5px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.35); color: #fff; transition: .2s; text-transform: uppercase;
}
.range-pills a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

/* ===== Page banner (inner pages) ===== */
.page-banner {
  position: relative; color: #fff; text-align: center; padding: 72px 0;
  background: linear-gradient(180deg, rgba(13,27,40,.72), rgba(13,27,40,.84)),
    url('images/p-banner.jpg') center/cover;
}
.page-banner h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 10px; }
.breadcrumb { font-size: .95rem; color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span { color: var(--accent-2); }

/* ===== Sections ===== */
.section { padding: clamp(40px, 5vw, 64px) 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 34px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2.5px; font-size: .8rem; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--navy); margin-bottom: 14px; }
.section-dark .section-head h2 { color: #fff; }
.section-lead { color: var(--muted); font-size: 1.06rem; }
.section-dark .section-lead { color: rgba(255,255,255,.78); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===== Grid ===== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Icons (replace emojis) ===== */
[data-icon] svg { display: block; }
.feature .ficon { color: var(--accent); }
.feature .ficon svg { width: 32px; height: 32px; }
.section-dark .feature .ficon { color: var(--accent-2); }
.info-card .ic { color: var(--accent); }
.info-card .ic svg { width: 22px; height: 22px; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== Service cards ===== */
.scard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.scard-img { height: 210px; flex: 0 0 210px; background: linear-gradient(135deg, var(--navy), var(--teal)); position: relative; overflow: hidden; }
.scard-img img { width: 100%; height: 100%; object-fit: cover; }
.scard-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.scard-body h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 10px; }
.scard-body p { color: var(--muted); margin-bottom: 18px; flex: 1; }
.scard-link { font-family: var(--ff-head); font-weight: 600; color: var(--accent); font-size: .95rem; }
.scard-link:hover { color: var(--accent-2); }

/* ===== Feature / why cards ===== */
.feature { text-align: center; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 6px 22px rgba(15,35,54,.05); transition: transform .2s, box-shadow .2s, border-color .2s; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.section-dark .feature { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.10); box-shadow: none; }
.feature .ficon { width: 62px; height: 62px; margin: 0 auto 16px; display: grid; place-items: center; background: rgba(200,146,46,.12); color: var(--accent); border-radius: 50%; }
.section-dark .feature .ficon { background: rgba(255,255,255,.07); }
a.feature.link-tile { display: flex; flex-direction: column; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px 20px; transition: transform .2s, box-shadow .2s; }
a.feature.link-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
a.feature.link-tile .more { margin-top: 12px; color: var(--accent); font-family: var(--ff-head); font-weight: 600; font-size: .9rem; }
.feature h3 { color: var(--navy); font-size: 1.16rem; margin-bottom: 8px; }
.section-dark .feature h3 { color: #fff; }
.feature p { color: var(--muted); font-size: .97rem; }
.section-dark .feature p { color: rgba(255,255,255,.75); }

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-family: var(--ff-head); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--accent-2); }
.stat span { color: rgba(255,255,255,.8); font-size: .95rem; }

/* ===== Split (about / image+text) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-img { aspect-ratio: 5/4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(135deg, var(--navy), var(--teal)); display: grid; place-items: center; color: rgba(255,255,255,.85); font-weight: 600; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { color: var(--navy); font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 16px; }
.split-text p { color: var(--muted); margin-bottom: 16px; }
.tick-list { list-style: none; margin: 18px 0 26px; display: grid; gap: 12px; }
.tick-list li { padding-left: 32px; position: relative; color: var(--ink); font-weight: 500; }
.tick-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--accent); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; }

/* ===== Trust strip ===== */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; padding-bottom: 26px; flex-wrap: wrap; }
.ts { display: flex; align-items: center; gap: 13px; }
.ts .ai { color: var(--accent); flex: none; }
.ts .ai svg { width: 26px; height: 26px; }
.ts strong { display: block; font-family: var(--ff-head); font-size: .98rem; color: var(--navy); }
.ts span { font-size: .83rem; color: var(--muted); }

/* ===== Highlight boxes (What We Offer) ===== */
.offer-stack { display: flex; flex-direction: column; gap: 18px; }
.hl-box { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 12px; padding: 22px 24px; transition: transform .2s, box-shadow .2s; }
.hl-box:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.hl-box h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.hl-box h3 .ic2 { color: var(--accent); display: inline-flex; }
.hl-box h3 .ic2 svg { width: 22px; height: 22px; }
.hl-box p { color: var(--muted); font-size: .96rem; }

/* ===== Testimonials ===== */
.review { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px; box-shadow: 0 6px 22px rgba(15,35,54,.05); transition: transform .2s, box-shadow .2s; }
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review::before { content: '\201C'; position: absolute; top: 8px; right: 22px; font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: rgba(200,146,46,.18); }
.review .stars { color: var(--accent-2); letter-spacing: 3px; margin-bottom: 12px; font-size: 1.05rem; }
.review p { color: var(--ink); font-style: italic; margin-bottom: 18px; position: relative; }
.review .who { display: flex; align-items: center; gap: 13px; }
.review .ava { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem; flex: none; }
.review .who strong { color: var(--navy); font-size: .96rem; display: block; }
.review .who span { color: var(--muted); font-size: .85rem; }

/* ===== Service ranges grid ===== */
.range-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.range-card { text-align: center; }
.range-card h3 { font-size: .98rem; color: var(--navy); margin-bottom: 12px; min-height: 2.6em; display: flex; align-items: flex-end; justify-content: center; }
.range-card .ri { aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(135deg, var(--navy), var(--teal)); }
.range-card .ri img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.range-card:hover .ri img { transform: scale(1.07); }

/* ===== Areas we serve ===== */
.area-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; display: flex; gap: 16px; box-shadow: 0 6px 22px rgba(15,35,54,.05); transition: transform .2s, box-shadow .2s, border-color .2s; }
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.area-card .ai { color: var(--accent); flex: none; }
.area-card .ai svg { width: 28px; height: 28px; }
.area-card h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 7px; }
.area-card p { color: var(--muted); font-size: .95rem; }

/* ===== Gallery ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gitem { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--navy), var(--teal)); display: grid; place-items: center; color: rgba(255,255,255,.9); font-weight: 600; }
.gitem span { padding: 0 10px; text-align: center; font-size: .9rem; }
.gitem img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; z-index: 1; }
.gitem::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(13,27,40,.35)); opacity: 0; transition: .3s; z-index: 2; }
.gitem:hover img { transform: scale(1.06); }
.gitem:hover::after { opacity: 1; }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(120deg, var(--navy), var(--charcoal)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Process steps ===== */
.steps { counter-reset: step; }
.step { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 34px 22px 28px; box-shadow: 0 6px 22px rgba(15,35,54,.05); transition: transform .2s, box-shadow .2s; }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .num { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff; border-radius: 50%; font-family: var(--ff-head); font-weight: 800; font-size: 1.35rem; box-shadow: 0 8px 18px rgba(200,146,46,.32); }
.step h3 { color: var(--navy); font-size: 1.12rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-card .ic { width: 48px; height: 48px; flex: none; display: grid; place-items: center; background: var(--bg-soft); border-radius: 12px; font-size: 1.3rem; }
.info-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--muted); }
.info-card a:hover { color: var(--accent); }

/* ===== Form ===== */
.quote-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 13px 15px; border: 1.5px solid var(--line);
  border-radius: 10px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,146,46,.16); }
.field textarea { resize: vertical; }
.form-reassure { text-align: center; font-size: .86rem; color: var(--muted); margin-top: 12px; }
.form-note { margin-top: 12px; font-weight: 600; text-align: center; }
.form-note.ok { color: #178a45; }
.form-note.err { color: #c0392b; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 2px 22px; }
.faq-item summary { cursor: pointer; list-style: none; font-family: var(--ff-head); font-weight: 600; color: var(--navy); padding: 17px 30px 17px 0; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--muted); padding: 0 0 18px; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,.72); padding: 5px 0; font-size: .95rem; }
.footer-col a:hover { color: var(--accent-2); }
.footer-about p { font-size: .95rem; margin: 14px 0; }
.footer-about .brand-text { color: #fff; }
.footer-about .brand-text small { color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; text-align: center; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--accent-2); }

/* ===== Map embed ===== */
.map-embed { width: 100%; height: 420px; border: 0; border-radius: 16px; box-shadow: var(--shadow); display: block; }
@media (max-width: 720px) { .map-embed { height: 300px; } }

/* ===== Location card ===== */
.location-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 42px 28px; max-width: 580px; margin: 0 auto; }
.location-card .ai { color: var(--accent); display: inline-flex; }
.location-card .ai svg { width: 44px; height: 44px; }
.location-card .addr { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin: 16px 0 8px; line-height: 1.4; }
.location-card .hours { color: var(--muted); margin-bottom: 22px; }

/* ===== Floating WhatsApp ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25d366; display: grid; place-items: center; font-size: 1.8rem; color: #fff; box-shadow: var(--shadow-lg); transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.09); }

/* ===== Mobile action bar ===== */
.mobile-bar { display: none; }

/* ===== Legal ===== */
.legal h2 { color: var(--navy); font-size: 1.3rem; margin: 26px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .range-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { background-attachment: scroll; }
}
@media (max-width: 820px) {
  .container { padding: 0 18px; }
  .nav-toggle { display: flex; }
  /* trust strip → 2x2 grid */
  .trust-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px; }
  .ts { justify-content: flex-start; }
  .page-banner { padding: 50px 0; }
  .range-grid { grid-template-columns: repeat(2, 1fr); }
  .range-card h3 { min-height: 0; margin-bottom: 8px; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 16px 22px 26px; gap: 4px; box-shadow: var(--shadow);
    transform: translateY(-135%); transition: transform .32s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  body.home .site-header .nav > a,
  body.home .site-header .dropbtn { color: var(--ink); }
  .nav > a, .dropbtn { padding: 13px 10px; border-radius: 8px; }
  .nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 6px 14px; padding: 0; max-height: 0; overflow: hidden; transition: max-height .25s; }
  .dropdown.open .dropdown-menu { max-height: 360px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 78px; }
  .mobile-bar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; box-shadow: 0 -4px 18px rgba(0,0,0,.14); }
  .mobile-bar a { flex: 1; text-align: center; padding: 15px; font-family: var(--ff-head); font-weight: 700; color: #fff; font-size: .98rem; }
  .mobile-bar .mb-call { background: #e23b3b; }
  .mobile-bar .mb-wa { background: #25d366; }
  body { padding-bottom: 54px; }
  body.home { padding-bottom: 54px; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery, .range-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-text { font-size: 1rem; }
  .brand-text small { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-logo { height: 50px; }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 22px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .hero { min-height: 86vh; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .pill { font-size: .78rem; padding: 8px 16px; }
  .range-pills { gap: 9px; }
  .range-pills a { padding: 9px 15px; font-size: .78rem; }
  .stat strong { font-size: 2.1rem; }
  .section-head { margin-bottom: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .footer-about { display: flex; flex-direction: column; align-items: center; }
}
@media (max-width: 360px) {
  .trust-strip .container { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
