/* ===========================================================
   Tangible Services Ltd — Landing page styles
   Palette: White #FFFFFF · Blue #0A66C2 · Green #22C55E
   Fonts: Poppins (headings) · Open Sans (body)
   =========================================================== */

:root {
  --blue: #0A66C2;
  --blue-dark: #084e96;
  --blue-deep: #06294f;
  --green: #22C55E;
  --green-dark: #16a34a;
  --ink: #16243a;
  --muted: #5b6b80;
  --line: #e6ecf3;
  --bg: #ffffff;
  --bg-soft: #f4f8fc;
  --bg-warm: #f3faf5;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(16, 42, 73, .06);
  --shadow: 0 14px 40px rgba(16, 42, 73, .10);
  --shadow-lg: 0 26px 60px rgba(16, 42, 73, .16);
  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1180px;
  --space: clamp(3.5rem, 7vw, 6.5rem);
  --whatsapp: #25D366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Poppins", sans-serif; line-height: 1.18; color: var(--ink); font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

.eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .85rem;
}
.eyebrow--light { color: #bcdcff; }

.section { padding: var(--space) 0; }
.section--alt { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--compact { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.section__head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -.01em; }
.section__title--sm { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.section__lede { margin-top: 1rem; color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .98rem;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(10, 102, 194, .28); }
.btn--primary:hover { background: var(--blue-dark); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, .3); }
.btn--whatsapp:hover { background: #1da851; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }

/* ---------- Top bar ---------- */
.topbar { background: var(--blue-deep); color: #d6e7fb; font-size: .85rem; }
.topbar__inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: .5rem 1.25rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: #d6e7fb; }
.topbar__item svg { width: 15px; height: 15px; fill: var(--green); flex: none; }
.topbar a.topbar__item:hover { color: #fff; }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }
.topbar__hours { margin-left: auto; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__logo { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.12rem; color: var(--blue-deep); }
.brand__sub { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a {
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: .96rem; color: var(--ink);
  position: relative; transition: color .15s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--green); transition: width .22s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--blue); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta { background: var(--green); color: #fff !important; padding: .55rem 1.15rem; border-radius: 999px; box-shadow: 0 8px 18px rgba(34,197,94,.28); }
.nav__cta:hover { background: var(--green-dark); transform: translateY(-1px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--blue-deep); border-radius: 3px; transition: transform .25s ease, opacity .25s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(560px, 86vh, 760px); display: flex; align-items: center; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(6,41,79,.92) 0%, rgba(8,78,150,.78) 45%, rgba(6,41,79,.38) 100%);
}
.hero__content { max-width: 700px; padding-top: 2rem; padding-bottom: 2rem; }
.hero__eyebrow {
  display: inline-block; background: rgba(34,197,94,.2); border: 1px solid rgba(34,197,94,.5);
  color: #d7ffe4; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .8rem;
  letter-spacing: .06em; padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.2rem;
}
.hero__title { font-size: clamp(2.2rem, 5.4vw, 3.7rem); font-weight: 800; letter-spacing: -.02em; color: #fff; }
.hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #e3eefb; margin: 1.2rem 0 1.9rem; max-width: 600px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.1rem; }
.hero__badges li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: #dbeafe; }
.hero__badges li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}

.hero__content { animation: rise .8s cubic-bezier(.2,.7,.3,1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ---------- Floating service jump ---------- */
.servicejump { position: fixed; left: 18px; bottom: 22px; z-index: 95; font-family: "Poppins", sans-serif; }
.servicejump__toggle {
  display: inline-flex; align-items: center; gap: .55rem; background: var(--blue); color: #fff;
  border: 0; cursor: pointer; padding: .75rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
  box-shadow: var(--shadow); transition: background .18s ease, transform .18s ease;
}
.servicejump__toggle:hover { background: var(--blue-dark); transform: translateY(-2px); }
.servicejump__toggle svg { width: 18px; height: 18px; }
.servicejump__menu {
  list-style: none; position: absolute; bottom: calc(100% + 12px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg);
  padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(10px) scale(.98);
  transform-origin: bottom left; transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.servicejump.is-open .servicejump__menu { opacity: 1; visibility: visible; transform: none; }
.servicejump__menu li a {
  display: flex; align-items: center; gap: .5rem; padding: .6rem .8rem; border-radius: 9px;
  font-size: .92rem; font-weight: 500; color: var(--ink); transition: background .15s ease, color .15s ease;
}
.servicejump__menu li a::before { content: "▼"; font-size: .58rem; color: var(--green); }
.servicejump__menu li a:hover { background: var(--bg-soft); color: var(--blue); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--blue-deep); color: #fff; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 1.25rem; }
.trustbar__item { text-align: center; padding: .4rem; border-left: 1px solid rgba(255,255,255,.12); }
.trustbar__item:first-child { border-left: 0; }
.trustbar__item strong { display: block; font-family: "Poppins", sans-serif; font-size: 1.35rem; color: #fff; }
.trustbar__item span { font-size: .85rem; color: #aecbed; }

/* ---------- About / split layouts ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__grid--reverse .about__media { order: 2; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 5 / 4; }
.about__badge {
  position: absolute; bottom: -18px; right: -10px; background: #fff; border-radius: 14px;
  padding: .9rem 1.2rem; box-shadow: var(--shadow); border-left: 4px solid var(--green);
}
.about__badge strong { display: block; font-family: "Poppins", sans-serif; color: var(--blue-deep); }
.about__badge span { font-size: .82rem; color: var(--muted); }
.about__body p { color: var(--muted); margin-bottom: 1rem; }
.about__body .btn { margin-top: .7rem; }

.pills { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0 1.6rem; }
.pills li {
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: .85rem; color: var(--blue-dark);
  background: #fff; border: 1px solid var(--line); padding: .4rem .9rem; border-radius: 999px;
}

/* ---------- Residential service cards ---------- */
.section--residential { background:
  radial-gradient(1200px 400px at 80% -10%, rgba(34,197,94,.07), transparent),
  radial-gradient(900px 400px at -10% 110%, rgba(10,102,194,.06), transparent); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.scard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.4rem;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(10,102,194,.25); }
.scard__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1rem;
  background: linear-gradient(140deg, rgba(10,102,194,.12), rgba(34,197,94,.14)); color: var(--blue);
}
.scard__icon svg { width: 26px; height: 26px; }
.scard h3 { font-size: 1.08rem; margin-bottom: .45rem; }
.scard p { font-size: .92rem; color: var(--muted); }

.section__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.section__cta p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.05rem; }

/* ---------- Accordion ---------- */
.accordion { margin: 1.4rem 0 1.7rem; border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__item summary {
  list-style: none; cursor: pointer; padding: .95rem .2rem; font-family: "Poppins", sans-serif;
  font-weight: 600; font-size: 1rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after { content: "+"; font-size: 1.4rem; color: var(--blue); font-weight: 400; transition: transform .2s ease; }
.accordion__item[open] summary::after { transform: rotate(45deg); }
.accordion__item p { color: var(--muted); font-size: .94rem; padding: 0 .2rem 1rem; }

/* ---------- Industrial mini ---------- */
.minicard__wrap { display: flex; justify-content: center; }
.minicard {
  display: grid; grid-template-columns: 280px 1fr; gap: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); max-width: 880px;
}
.minicard__media img { width: 100%; height: 100%; object-fit: cover; }
.minicard__body { padding: 1.8rem; align-self: center; }
.minicard__body p { color: var(--muted); }

/* ---------- Other services ---------- */
.other-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; max-width: 900px; margin: 0 auto; }
.other-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.other-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.other-card h3 { font-size: 1.12rem; margin-bottom: .5rem; }
.other-card p { color: var(--muted); font-size: .95rem; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.feature::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--green); transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature:hover::before { transform: scaleY(1); }
.feature__icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(10,102,194,.1); color: var(--blue); display: grid; place-items: center; margin-bottom: 1rem; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .94rem; }

/* ---------- Gallery ---------- */
.gallery__filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 1.8rem; }
.chip {
  font-family: "Poppins", sans-serif; font-weight: 500; font-size: .9rem; cursor: pointer;
  background: #fff; border: 1px solid var(--line); color: var(--ink); padding: .5rem 1.15rem; border-radius: 999px;
  transition: all .18s ease;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery__item { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .7rem; color: #fff;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .9rem;
  background: linear-gradient(transparent, rgba(6,41,79,.82));
}
.gallery__item.is-hidden { display: none; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.testi__stars { color: #f5b301; letter-spacing: .12em; margin-bottom: .7rem; font-size: 1.05rem; }
.testi p { color: var(--ink); font-style: italic; margin-bottom: 1.1rem; }
.testi footer strong { display: block; font-family: "Poppins", sans-serif; color: var(--blue-deep); }
.testi footer span { font-size: .85rem; color: var(--muted); }

/* ---------- Contact ---------- */
.section--contact { background: linear-gradient(160deg, var(--blue-deep), var(--blue-dark)); color: #fff; }
.section--contact .section__title { color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__lede { color: #cfe2f8; margin-bottom: 1.6rem; }
.contact__list { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 1.5rem; }
.contact__list li { display: flex; align-items: flex-start; gap: .9rem; }
.contact__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.1); display: grid; place-items: center; }
.contact__ic svg { width: 20px; height: 20px; fill: var(--green); }
.contact__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: #9cc1ec; }
.contact__list a, .contact__list div span:not(.contact__label) { color: #fff; font-weight: 500; }
.contact__list a:hover { color: var(--green); }
.contact__quick { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.contact__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 3px solid rgba(255,255,255,.15); }
.contact__map iframe { width: 100%; height: 240px; border: 0; display: block; filter: grayscale(.1); }

.contact__form-wrap { background: #fff; border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); color: var(--ink); }
.cform__row { margin-bottom: 1.05rem; }
.cform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cform label { display: block; font-family: "Poppins", sans-serif; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--ink); }
.cform label span { color: var(--green); }
.cform input, .cform select, .cform textarea {
  width: 100%; font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 11px; background: #fbfdff;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.cform input:focus, .cform select:focus, .cform textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,102,194,.13); background: #fff;
}
.cform textarea { resize: vertical; min-height: 110px; }
.cform input:invalid:not(:placeholder-shown) { border-color: #e0573e; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform__note { font-size: .8rem; color: var(--muted); margin-top: .9rem; text-align: center; }
.cform__status { margin-top: 1rem; padding: .85rem 1rem; border-radius: 11px; font-size: .92rem; font-weight: 600; display: none; }
.cform__status.is-success { display: block; background: rgba(34,197,94,.12); color: var(--green-dark); border: 1px solid rgba(34,197,94,.4); }
.cform__status.is-error { display: block; background: rgba(224,87,62,.1); color: #c0392b; border: 1px solid rgba(224,87,62,.4); }
.btn.is-loading { opacity: .75; pointer-events: none; }

/* ---------- Footer ---------- */
.footer { background: #0a1626; color: #aebfd4; padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.brand--footer { gap: .6rem; margin-bottom: 1rem; }
.brand--footer img { width: 42px; height: 42px; border-radius: 10px; }
.brand--footer .brand__name { color: #fff; font-size: 1.1rem; }
.footer__brand p { font-size: .92rem; line-height: 1.7; max-width: 320px; }
.footer__col ul { list-style: none; display: grid; gap: .6rem; }
.footer__col ul a { font-size: .92rem; transition: color .15s ease; }
.footer__col ul a:hover { color: var(--green); }
.footer__contact li { font-size: .92rem; line-height: 1.6; }
.footer__contact a:hover { color: var(--green); }
.footer__social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .18s ease, transform .18s ease; }
.footer__social a:hover { background: var(--green); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; padding: 1.3rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: #7f93ad; }

/* ---------- Floating action buttons ---------- */
.fab {
  position: fixed; right: 18px; z-index: 96; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; border: 0;
  transition: transform .2s ease, opacity .2s ease, visibility .2s;
}
.fab svg { width: 28px; height: 28px; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab--whatsapp { bottom: 88px; background: var(--whatsapp); }
.fab--whatsapp svg { fill: #fff; }
.fab--top { bottom: 22px; background: var(--blue); color: #fff; opacity: 0; visibility: hidden; }
.fab--top.is-visible { opacity: 1; visibility: visible; }

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

/* ---------- Mobile nav drawer ---------- */
@media (max-width: 940px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); flex-direction: column; align-items: flex-start;
    background: #fff; padding: 6rem 1.8rem 2rem; gap: 1.2rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s ease; z-index: 99;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 1.1rem; }
  .nav__cta { width: 100%; text-align: center; }
  .nav__toggle { display: flex; z-index: 100; }
}

/* ---------- Responsive grids ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .about__grid, .about__grid--reverse, .contact__grid, .other-grid, .testi-grid { grid-template-columns: 1fr; }
  .about__grid--reverse .about__media { order: 0; }
  .about__media { max-width: 560px; margin: 0 auto; }
  .about__badge { right: 10px; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; }
  .trustbar__item:nth-child(odd) { border-left: 0; }
  .minicard { grid-template-columns: 1fr; }
  .minicard__media img { aspect-ratio: 16 / 9; }
  .topbar__hours { display: none; }
}
@media (max-width: 560px) {
  .services-grid, .features-grid, .gallery__grid, .cform__grid { grid-template-columns: 1fr; }
  .topbar__inner { justify-content: center; }
  .topbar__item { font-size: .8rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .servicejump__toggle span { display: none; }
  .servicejump__toggle { padding: .8rem; }
  .hero__badges { gap: .6rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
