/* =============================================================
   ORUS Technical Services — Main Stylesheet
   Design system: dark navy / white / steel grey / safety red + orange
   ============================================================= */

/* ---------- 1. Design Tokens ---------- */
:root {
	--navy-900: #0a1a2f;
	--navy-800: #0f2742;
	--navy-700: #163455;
	--navy-600: #1f4068;
	--steel-500: #5b6b7e;
	--steel-400: #8593a3;
	--steel-200: #d6dde5;
	--steel-100: #eef2f6;
	--mist: #f6f8fb;
	--white: #ffffff;
	--ink: #16202c;

	--red-600: #d11f2d;        /* safety red — primary accent */
	--red-700: #ad1722;
	--orange-500: #f5751f;     /* secondary accent */
	--orange-400: #ff8c3b;
	--green-500: #1f9d57;      /* success */

	--ring: rgba(245, 117, 31, 0.45);

	--font-head: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

	--maxw: 1200px;
	--gap: clamp(1rem, 2vw, 2rem);
	--radius: 14px;
	--radius-sm: 8px;
	--shadow-sm: 0 2px 10px rgba(10, 26, 47, 0.06);
	--shadow-md: 0 12px 34px rgba(10, 26, 47, 0.12);
	--shadow-lg: 0 26px 60px rgba(10, 26, 47, 0.20);
	--header-h: 84px;
	--bar-h: 42px;
	--trans: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + var(--bar-h)); overflow-x: hidden; max-width: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
iframe, video, embed, object { max-width: 100%; }
.entry-content table, .page-content table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
a { color: var(--navy-700); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--red-600); }
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.18; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 9999; background: var(--navy-900); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color:#fff; }

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.container--wide { max-width: 1380px; }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy-900); color: var(--steel-200); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-600); margin-bottom: 0.75rem; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange-500); display: inline-block; }
.section--navy .eyebrow { color: var(--orange-400); }
.lead { font-size: 1.12rem; color: var(--steel-500); }
.section--navy .lead { color: var(--steel-200); }

/* ---------- 4. Buttons ---------- */
.btn { --bg: var(--red-600); --fg: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1; padding: 16px 28px; border-radius: var(--radius-sm); border: 2px solid transparent; background: var(--bg); color: var(--fg); cursor: pointer; transition: transform var(--trans), box-shadow var(--trans), background var(--trans); text-align: center; }
.btn:hover { background: var(--red-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn--orange { --bg: var(--orange-500); } .btn--orange:hover { background: var(--orange-400); }
.btn--ghost { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,0.5); } .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color:#fff; }
.btn--outline { --bg: transparent; --fg: var(--navy-800); border-color: var(--steel-200); } .btn--outline:hover { background: var(--navy-900); color:#fff; border-color: var(--navy-900); }
.btn--lg { padding: 19px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* ---------- 5. Top Contact Bar ---------- */
.topbar { background: var(--navy-900); color: var(--steel-200); font-size: 0.9rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--bar-h); }
.topbar a { color: var(--steel-200); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--orange-400); }
.topbar svg { width: 15px; height: 15px; fill: var(--orange-400); }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__socials { display: flex; gap: 10px; }
@media (max-width: 860px) { .topbar__left { gap: 1rem; } .topbar__right { display: none; } .topbar { font-size: 0.82rem; } }
/* Mobile/tablet: compact, centred top bar with primary phone + email only */
@media (max-width: 1080px) {
	.topbar .container { justify-content: center; }
	.topbar__left { width: 100%; justify-content: center; gap: 0.6rem 1.4rem; flex-wrap: wrap; }
	.topbar__right { display: none; }
	.topbar a { gap: 6px; }
	/* mobile: show only the email, hide both phone numbers */
	.topbar__left a[href^="tel:"] { display: none; }
}

/* ---------- 6. Header ---------- */
/* Note: backdrop-filter is applied on desktop only. On mobile it would make
   the header a containing block for the fixed-position nav drawer, breaking it. */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.98); box-shadow: var(--shadow-sm); transition: box-shadow var(--trans); }
@media (min-width: 1081px) { .site-header { background: rgba(255,255,255,0.92); backdrop-filter: saturate(160%) blur(8px); } }
.site-header.is-stuck { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.site-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.site-brand img { max-height: 56px; width: auto; }
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; color: var(--navy-900); line-height: 1; letter-spacing: -0.02em; }
.brand-text span { color: var(--red-600); }
.brand-tag { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel-500); font-weight: 600; margin-top: 4px; }

/* primary nav */
.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.primary-nav a { display: block; padding: 10px 13px; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--navy-800); border-radius: 8px; white-space: nowrap; }
@media (min-width: 1081px) and (max-width: 1240px) { .primary-nav a { padding: 10px 9px; font-size: 0.9rem; } .header-inner { gap: 1rem; } }
.primary-nav a:hover, .primary-nav .current-menu-item > a, .primary-nav .current-menu-parent > a { color: var(--red-600); background: var(--steel-100); }
.primary-nav li { position: relative; }
.primary-nav .sub-menu { position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff; box-shadow: var(--shadow-md); border-radius: 12px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all var(--trans); list-style: none; display: block; border: 1px solid var(--steel-100); }
.primary-nav li:hover > .sub-menu, .primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu a { padding: 10px 12px; font-size: 0.9rem; }
.primary-nav .menu-item-has-children > a::after { content: "▾"; font-size: 0.7em; margin-left: 5px; color: var(--steel-400); }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* burger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 0; background: var(--navy-900); border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; transition: var(--trans); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
	.primary-nav { position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); height: 100%; background: var(--navy-900); padding: calc(var(--header-h) + 1.5rem) 1.25rem 2rem; transform: translateX(100%); transition: transform var(--trans); overflow-y: auto; box-shadow: var(--shadow-lg); z-index: 1001; }
	.primary-nav.is-open { transform: translateX(0); }
	.primary-nav ul { flex-direction: column; gap: 2px; }
	.primary-nav a { color: #fff; padding: 14px 12px; font-size: 1.05rem; }
	.primary-nav a:hover, .primary-nav .current-menu-item > a { background: rgba(255,255,255,0.08); color: var(--orange-400); }
	.primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.05); margin: 4px 0 8px; padding: 4px; border: 0; }
	.primary-nav .sub-menu a { color: var(--steel-200); }
	.nav-toggle { display: flex; }
	.header-cta { display: none; } /* Quote button is desktop-only; mobile uses the sticky bottom bar + menu */
	.nav-backdrop { position: fixed; inset: 0; background: rgba(10,26,47,0.5); opacity: 0; visibility: hidden; transition: var(--trans); z-index: 999; }
	.nav-backdrop.is-open { opacity: 1; visibility: visible; }
}
@media (max-width: 560px) {
	.brand-text { font-size: 1.15rem; }
	.header-cta .btn { padding: 12px 16px; }
}

/* ---------- 7. Hero ---------- */
.hero { position: relative; color: #fff; background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--navy-600) 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(245,117,31,0.18), transparent 45%), radial-gradient(circle at 10% 90%, rgba(209,31,45,0.16), transparent 40%); }
.hero::after { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04'%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E"); opacity: 0.6; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--orange-400); }
.hero-sub { font-size: 1.18rem; color: var(--steel-200); max-width: 54ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.2rem; }
.hero-emergency { display: inline-flex; align-items: center; gap: 14px; padding: 14px 20px; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); background: rgba(255,255,255,0.05); }
.hero-emergency .pulse { width: 44px; height: 44px; border-radius: 50%; background: var(--red-600); display: grid; place-items: center; flex-shrink: 0; position: relative; }
.hero-emergency .pulse svg { width: 22px; height: 22px; fill: #fff; }
.hero-emergency .pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--red-600); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.8); opacity: 0; } }
.hero-emergency small { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel-400); }
.hero-emergency strong { font-size: 1.25rem; font-family: var(--font-head); color: #fff; }
.hero-emergency a { color: #fff; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 1.6rem; backdrop-filter: blur(6px); }
.hero-card h3 { color: #fff; font-size: 1.2rem; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat { padding: 1rem; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); }
.hero-stat b { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--orange-400); line-height: 1; }
.hero-stat span { font-size: 0.85rem; color: var(--steel-200); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-card { display: none; } }

/* ---------- 8. Trust / Badges ---------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--steel-100); }
.trust-bar .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; padding-block: 1.6rem; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 34px; height: 34px; fill: var(--red-600); flex-shrink: 0; }
.trust-item span { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--navy-800); line-height: 1.25; }
@media (max-width: 980px) { .trust-bar .container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trust-bar .container { grid-template-columns: 1fr; } }

.accreditations { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); }
.accreditations .badge { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; opacity: 0.92; }
.accreditations .badge .seal { width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; background: var(--steel-100); border: 2px solid var(--steel-200); }
.accreditations .badge .seal svg { width: 40px; height: 40px; fill: var(--navy-700); }
.accreditations .badge small { font-weight: 700; font-family: var(--font-head); color: var(--steel-500); font-size: 0.8rem; }

/* ---------- 9. Service Cards ---------- */
.service-card { position: relative; background: #fff; border: 1px solid var(--steel-100); border-radius: var(--radius); padding: 1.9rem; display: flex; flex-direction: column; transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans); overflow: hidden; height: 100%; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red-600), var(--orange-500)); transform: scaleX(0); transform-origin: left; transition: transform var(--trans); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, var(--navy-900), var(--navy-600)); display: grid; place-items: center; margin-bottom: 1.2rem; transition: var(--trans); }
.service-card:hover .icon { background: linear-gradient(135deg, var(--red-600), var(--orange-500)); }
.service-card .icon svg { width: 30px; height: 30px; fill: #fff; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.service-card h3 a { color: var(--navy-900); }
.service-card h3 a:hover { color: var(--red-600); }
.service-card p { color: var(--steel-500); font-size: 0.97rem; margin-bottom: 1.2rem; }
.service-card .more { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--red-600); display: inline-flex; align-items: center; gap: 7px; font-size: 0.95rem; }
.service-card .more svg { width: 16px; height: 16px; fill: currentColor; transition: transform var(--trans); }
.service-card:hover .more svg { transform: translateX(4px); }

/* ---------- 10. Why Choose / feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .tick { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(31,157,87,0.12); display: grid; place-items: center; }
.feature-list .tick svg { width: 15px; height: 15px; fill: var(--green-500); }
.feature-list h4 { margin: 0 0 2px; font-size: 1.05rem; }
.feature-list p { margin: 0; color: var(--steel-500); font-size: 0.95rem; }
.section--navy .feature-list p { color: var(--steel-200); }
.media-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.media-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 860px) { .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }

/* ---------- 11. Process Timeline ---------- */
.process { counter-reset: step; }
.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; position: relative; }
.process-step { position: relative; text-align: center; padding-top: 1.5rem; }
.process-line { position: absolute; top: 30px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--steel-200) 0 8px, transparent 8px 16px); z-index: 0; }
.process-step .num { counter-increment: step; width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 50%; background: #fff; border: 2px solid var(--steel-200); color: var(--navy-900); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: grid; place-items: center; position: relative; z-index: 1; transition: var(--trans); }
.process-step .num::before { content: counter(step, decimal-leading-zero); }
.process-step:hover .num { background: var(--red-600); color: #fff; border-color: var(--red-600); transform: scale(1.05); }
.process-step h4 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.process-step p { font-size: 0.88rem; color: var(--steel-500); margin: 0; }
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(3, 1fr); } .process-line { display: none; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 12. Industries ---------- */
.industry-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 200px; display: flex; align-items: flex-end; padding: 1.3rem; color: #fff; background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); box-shadow: var(--shadow-sm); transition: var(--trans); }
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.industry-card svg.bg { position: absolute; right: -10px; top: -10px; width: 120px; height: 120px; fill: rgba(255,255,255,0.06); }
.industry-card .ic { position: absolute; top: 1.2rem; left: 1.3rem; width: 44px; height: 44px; border-radius: 12px; background: rgba(245,117,31,0.2); display: grid; place-items: center; }
.industry-card .ic svg { width: 24px; height: 24px; fill: var(--orange-400); }
.industry-card h4 { color: #fff; margin: 0 0 0.2rem; font-size: 1.12rem; }
.industry-card p { margin: 0; font-size: 0.85rem; color: var(--steel-200); }
.industry-card a.stretched { position: absolute; inset: 0; }

/* ---------- 13. Projects ---------- */
.project-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--steel-100); transition: var(--trans); display: flex; flex-direction: column; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-800); }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-thumb img { transform: scale(1.06); }
.project-thumb .tag { position: absolute; top: 12px; left: 12px; background: var(--red-600); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 12px; border-radius: 30px; }
.project-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.project-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.project-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--steel-500); font-size: 0.85rem; margin-bottom: 0.8rem; }
.project-meta span { display: inline-flex; align-items: center; gap: 6px; }
.project-meta svg { width: 14px; height: 14px; fill: var(--steel-400); }

/* ---------- 14. Testimonials ---------- */
.testi-track { position: relative; }
.testi-viewport { overflow: hidden; }
.testi-slides { display: flex; transition: transform 0.5s ease; }
.testi-slide { min-width: 100%; padding: 0 4px; }
@media (min-width: 760px) { .testi-slide { min-width: 50%; } }
.testi-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--steel-100); height: 100%; display: flex; flex-direction: column; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testi-stars svg { width: 19px; height: 19px; fill: var(--orange-500); }
.testi-card blockquote { margin: 0 0 1.3rem; font-size: 1.06rem; color: var(--ink); line-height: 1.65; flex: 1; }
.testi-card blockquote::before { content: "“"; font-family: Georgia, serif; font-size: 3rem; line-height: 0; color: var(--steel-200); vertical-align: -0.35em; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.testi-author b { display: block; font-family: var(--font-head); color: var(--navy-900); }
.testi-author small { color: var(--steel-500); }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 1.8rem; }
.testi-nav button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--steel-200); background: #fff; cursor: pointer; display: grid; place-items: center; transition: var(--trans); }
.testi-nav button:hover { background: var(--navy-900); border-color: var(--navy-900); }
.testi-nav button:hover svg { fill: #fff; }
.testi-nav svg { width: 18px; height: 18px; fill: var(--navy-800); }

/* ---------- 15. FAQ Accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--steel-200); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: #fff; transition: border-color var(--trans), box-shadow var(--trans); }
.faq-item.is-open { border-color: var(--red-600); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 18px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--navy-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q .plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--red-600); transition: var(--trans); }
.faq-q .plus::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--steel-500); }

/* ---------- 16. CTA Banner ---------- */
.cta-banner { position: relative; background: linear-gradient(120deg, var(--red-700), var(--red-600) 55%, var(--orange-500)); color: #fff; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem); overflow: hidden; text-align: center; }
.cta-banner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 15%, rgba(255,255,255,0.18), transparent 40%); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 56ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 1.6rem; }
.cta-banner .btn { background: #fff; color: var(--red-700); } .cta-banner .btn:hover { background: var(--navy-900); color: #fff; }
.cta-banner .btn--ghost { background: transparent; color: #fff; }

/* emergency strip */
.emergency-strip { background: var(--navy-900); color: #fff; }
.emergency-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-block: 1.6rem; }
.emergency-strip .label { display: flex; align-items: center; gap: 14px; }
.emergency-strip .label svg { width: 38px; height: 38px; fill: var(--orange-400); }
.emergency-strip h3 { color: #fff; margin: 0; }
.emergency-strip p { margin: 0; color: var(--steel-200); }
.emergency-strip .phones { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 17. Forms ---------- */
.orus-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--navy-800); margin-bottom: 6px; }
.field .req { color: var(--red-600); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--steel-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff; transition: border-color var(--trans), box-shadow var(--trans); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red-600); box-shadow: 0 0 0 4px rgba(209,31,45,0.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field--consent { display: flex; gap: 10px; align-items: flex-start; }
.field--consent input { width: auto; margin-top: 4px; }
.field--consent label { font-weight: 400; font-family: var(--font-body); font-size: 0.9rem; color: var(--steel-500); margin: 0; }
.orus-honeypot { position: absolute !important; left: -9999px !important; }
.form-note { font-size: 0.86rem; color: var(--steel-400); }
.form-message { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 600; display: none; }
.form-message.is-success { display: block; background: rgba(31,157,87,0.12); color: var(--green-500); border: 1px solid rgba(31,157,87,0.3); }
.form-message.is-error { display: block; background: rgba(209,31,45,0.1); color: var(--red-700); border: 1px solid rgba(209,31,45,0.3); }
.form-card { background: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); border: 1px solid var(--steel-100); }

/* contact info cards */
.info-card { display: flex; gap: 16px; padding: 1.4rem; background: #fff; border: 1px solid var(--steel-100); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.info-card .ic { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--navy-900), var(--navy-600)); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic svg { width: 24px; height: 24px; fill: #fff; }
.info-card h4 { margin: 0 0 4px; }
.info-card p, .info-card a { margin: 0; color: var(--steel-500); }
.info-card a:hover { color: var(--red-600); }

/* ---------- 18. Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--steel-200); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-cta { background: linear-gradient(120deg, var(--navy-800), var(--navy-700)); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 5vw, 4rem); border: 1px solid rgba(255,255,255,0.08); }
.footer-cta h3 { color: #fff; margin: 0; }
.footer-cta p { margin: 4px 0 0; color: var(--steel-200); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-text { color: #fff; }
.footer-about { color: var(--steel-400); font-size: 0.95rem; margin: 1rem 0 1.3rem; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ""; position: absolute; bottom: 0; left: 0; width: 34px; height: 3px; background: var(--red-600); border-radius: 2px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--steel-300, #b8c2cf); font-size: 0.95rem; }
.footer-col a:hover { color: var(--orange-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; fill: var(--orange-400); flex-shrink: 0; margin-top: 4px; }
.footer-contact a, .footer-contact span { color: var(--steel-200); font-size: 0.95rem; }
.footer-socials { display: flex; gap: 10px; margin-top: 1.2rem; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; }
.footer-socials a:hover { background: var(--red-600); }
.footer-socials svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.88rem; color: var(--steel-400); }
.footer-bottom a { color: var(--steel-400); }
.footer-bottom a:hover { color: var(--orange-400); }

/* ---------- 19. Page hero / breadcrumbs ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; padding-block: clamp(2.5rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 90% 10%, rgba(245,117,31,0.16), transparent 45%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero p { color: var(--steel-200); max-width: 60ch; font-size: 1.12rem; }
.breadcrumbs { font-size: 0.85rem; color: var(--steel-400); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--steel-200); }
.breadcrumbs a:hover { color: var(--orange-400); }
.breadcrumbs .sep { margin: 0 8px; color: var(--steel-500); }

/* ---------- 20. Single service / project content ---------- */
.content-wrap { display: grid; grid-template-columns: 1fr 340px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 980px) { .content-wrap { grid-template-columns: 1fr; } }
.entry-content { font-size: 1.05rem; }
.entry-content h2 { margin-top: 2rem; }
.entry-content h3 { margin-top: 1.6rem; }
.entry-content img { border-radius: var(--radius); margin-block: 1.5rem; }
.entry-content ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.entry-content ul li { padding-left: 30px; position: relative; }
.entry-content ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 16px; height: 16px; background: var(--red-600); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat; }
.sidebar-card { background: var(--mist); border: 1px solid var(--steel-100); border-radius: var(--radius); padding: 1.6rem; position: sticky; top: calc(var(--header-h) + 16px); }
.sidebar-card + .sidebar-card { margin-top: 1.5rem; }
.sidebar-card h3 { font-size: 1.15rem; }
.sidebar-card.is-cta { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; border: 0; }
.sidebar-card.is-cta h3 { color: #fff; }
.sidebar-card.is-cta p { color: var(--steel-200); font-size: 0.95rem; }
.related-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.related-list a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--steel-100); font-weight: 600; font-family: var(--font-head); font-size: 0.95rem; color: var(--navy-800); }
.related-list a:hover { border-color: var(--red-600); color: var(--red-600); }
.related-list svg { width: 16px; height: 16px; fill: currentColor; }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin: 1.5rem 0; }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit-grid .item { padding: 1.2rem; border: 1px solid var(--steel-100); border-radius: var(--radius); background: #fff; }
.benefit-grid .item .ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(209,31,45,0.1); display: grid; place-items: center; margin-bottom: 10px; }
.benefit-grid .item .ic svg { width: 22px; height: 22px; fill: var(--red-600); }
.benefit-grid .item h4 { margin: 0 0 4px; font-size: 1.02rem; }
.benefit-grid .item p { margin: 0; font-size: 0.92rem; color: var(--steel-500); }

/* ---------- 21. Blog ---------- */
.blog-card { background: #fff; border: 1px solid var(--steel-100); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: var(--trans); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-800); }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .cat { font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-600); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.blog-card .meta { margin-top: auto; padding-top: 1rem; font-size: 0.85rem; color: var(--steel-400); }

/* ---------- 22. Mobile sticky actions ---------- */
.mobile-actions { position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; display: none; background: #fff; box-shadow: 0 -4px 20px rgba(10,26,47,0.15); }
.mobile-actions a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 9px 4px; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; color: var(--navy-800); border-right: 1px solid var(--steel-100); }
.mobile-actions a:last-child { border-right: 0; }
.mobile-actions a svg { width: 22px; height: 22px; }
.mobile-actions a.call svg { fill: var(--navy-700); }
.mobile-actions a.wa svg { fill: #25d366; }
.mobile-actions a.email svg { fill: var(--orange-500); }
.mobile-actions a.quote { background: var(--red-600); color: #fff; }
.mobile-actions a.quote svg { fill: #fff; }
@media (max-width: 768px) { .mobile-actions { display: flex; } body { padding-bottom: 64px; } }

/* floating whatsapp on desktop */
.float-wa { position: fixed; bottom: 24px; right: 24px; z-index: 850; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: var(--trans); }
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 768px) { .float-wa { display: none; } }

/* ---------- 23. Utilities & animation ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack-sm { display: grid; gap: 0.6rem; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 30px; background: var(--steel-100); color: var(--navy-800); font-size: 0.82rem; font-weight: 600; font-family: var(--font-head); }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } [data-reveal] { opacity: 1; transform: none; } html { scroll-behavior: auto; } }

/* WP core alignments / pagination */
.alignwide { width: min(100%, 1100px); }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination .page-numbers { padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid var(--steel-200); font-family: var(--font-head); font-weight: 600; color: var(--navy-800); }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* misc icon helpers */
.hero-svc-icon { width: 32px; height: 32px; fill: #fff; }
.why-seal { width: 64px; height: 64px; fill: var(--orange-400); }
.testi-nav .flip { transform: rotate(180deg); }
.topbar-hide-sm { } @media (max-width: 768px) { .topbar-hide-sm { display: none; } }
.service-sidebar { display: block; }
@media (max-width: 980px) { .sidebar-card { position: static; } }
.entry-content > ul { margin-block: 1.2rem; }
.page-content { font-size: 1.05rem; max-width: 820px; }
.page-content h2 { margin-top: 1.8rem; }
.archive-intro { max-width: 760px; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-aside { position: sticky; top: calc(var(--header-h) + 16px); display: grid; gap: 1.2rem; }
@media (max-width: 900px) { .contact-aside { position: static; } }
.contact-panel { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); }
.contact-panel__title { color: #fff; font-size: 1.3rem; margin-bottom: 1.3rem; }
.contact-methods { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.contact-methods li { display: flex; gap: 14px; align-items: flex-start; }
.contact-methods .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(245,117,31,0.18); display: grid; place-items: center; flex-shrink: 0; }
.contact-methods .ic svg { width: 22px; height: 22px; fill: var(--orange-400); }
.contact-methods strong { display: block; color: #fff; font-family: var(--font-head); font-size: 0.92rem; margin-bottom: 3px; }
.contact-methods a, .contact-methods span { display: block; color: var(--steel-200); font-size: 0.96rem; }
.contact-methods a:hover { color: var(--orange-400); }
.contact-quick { display: flex; gap: 10px; margin-top: 1.5rem; flex-wrap: wrap; }
.contact-quick .btn { flex: 1; min-width: 130px; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }
.contact-emergency { display: flex; gap: 14px; align-items: center; background: var(--mist); border: 1px solid var(--steel-100); border-left: 4px solid var(--red-600); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.contact-emergency svg { width: 34px; height: 34px; fill: var(--red-600); flex-shrink: 0; }
.contact-emergency strong { display: block; font-family: var(--font-head); color: var(--navy-900); }
.contact-emergency p { margin: 2px 0 0; font-size: 0.9rem; color: var(--steel-500); }
.form-card--lg { padding: clamp(1.6rem, 4vw, 2.6rem); }
.form-card__title { font-size: 1.6rem; margin-bottom: 4px; }
.form-card__sub { color: var(--steel-500); margin-bottom: 1.6rem; }
.contact-map { margin-top: clamp(2rem, 4vw, 3rem); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--steel-100); }

/* ============================================================
   Blog — featured, cards, single
   ============================================================ */
.blog-featured { display: grid; grid-template-columns: 1.05fr 0.95fr; background: #fff; border: 1px solid var(--steel-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: clamp(2rem, 4vw, 3rem); transition: var(--trans); }
.blog-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
@media (max-width: 760px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured__media { position: relative; min-height: 320px; overflow: hidden; }
.blog-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured__badge { position: absolute; top: 16px; left: 16px; background: var(--red-600); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 7px 14px; border-radius: 30px; }
.blog-featured__body { padding: clamp(1.5rem, 3vw, 2.4rem); display: flex; flex-direction: column; justify-content: center; }
.blog-featured__body .cat { font-family: var(--font-head); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-600); margin-bottom: 8px; }
.blog-featured__body h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 0.7rem; }
.blog-featured__body p { color: var(--steel-500); }
.blog-meta { display: flex; gap: 18px; color: var(--steel-400); font-size: 0.86rem; margin: 0.6rem 0 1.2rem; }
.blog-meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-meta svg { width: 15px; height: 15px; fill: var(--steel-400); }
.blog-featured__body .more { font-family: var(--font-head); font-weight: 700; color: var(--red-600); display: inline-flex; align-items: center; gap: 7px; }
.blog-featured__body .more svg { width: 16px; height: 16px; fill: currentColor; transition: transform var(--trans); }
.blog-featured:hover .more svg { transform: translateX(4px); }

.blog-card .thumb { position: relative; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-cat { position: absolute; top: 12px; left: 12px; background: rgba(10,26,47,0.85); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 11px; border-radius: 30px; }
.blog-card .meta { display: flex; gap: 14px; align-items: center; }
.blog-card .meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-card .meta svg { width: 14px; height: 14px; fill: var(--steel-400); }

/* Single post */
.post-hero { background-size: cover; background-position: center; color: #fff; padding-block: clamp(3rem, 7vw, 5rem); }
.post-hero .container { position: relative; z-index: 1; }
.post-hero h1 { color: #fff; max-width: 24ch; margin: 0.6rem 0; }
.pill--accent { background: var(--red-600); color: #fff; }
.post-hero__meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--steel-200); font-size: 0.92rem; margin-top: 0.8rem; }
.post-hero__meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-hero__meta svg { width: 16px; height: 16px; fill: var(--orange-400); }
.post-feature { margin: 0 0 1.8rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.post-feature img { width: 100%; display: block; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.post-tags a { background: var(--steel-100); color: var(--navy-800); font-size: 0.82rem; font-weight: 600; padding: 6px 13px; border-radius: 30px; }
.post-tags a:hover { background: var(--navy-900); color: #fff; }
.post-share { display: flex; align-items: center; gap: 10px; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--steel-100); }
.post-share span { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.post-share a { width: 40px; height: 40px; border-radius: 10px; background: var(--steel-100); display: grid; place-items: center; }
.post-share a:hover { background: var(--red-600); }
.post-share a:hover svg { fill: #fff; }
.post-share svg { width: 18px; height: 18px; fill: var(--navy-700); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 2.5rem; }
@media (max-width: 560px) { .post-nav { grid-template-columns: 1fr; } }
.post-nav__link { padding: 16px 18px; border: 1px solid var(--steel-100); border-radius: var(--radius); background: #fff; transition: var(--trans); }
.post-nav__link:hover { border-color: var(--red-600); box-shadow: var(--shadow-sm); }
.post-nav__link span { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--steel-400); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.post-nav__link span svg { width: 14px; height: 14px; fill: currentColor; }
.post-nav__link.next { text-align: right; }
.post-nav__link.next span { justify-content: flex-end; }
.post-nav__link strong { display: block; margin-top: 6px; color: var(--navy-900); font-family: var(--font-head); }
.recent-posts { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.recent-posts a { display: flex; gap: 12px; align-items: center; }
.recent-posts img { width: 64px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.recent-posts span { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--navy-800); line-height: 1.35; }
.recent-posts a:hover span { color: var(--red-600); }
.recent-posts small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--steel-400); font-size: 0.8rem; margin-top: 3px; }

/* ============================================================
   Service detail — hero, sticky subnav, pager
   ============================================================ */
.page-hero--service { background-size: cover; background-position: center; }
.service-hero-head { display: flex; gap: 18px; align-items: flex-start; }
.service-hero-icon { width: 64px; height: 64px; border-radius: 16px; background: linear-gradient(135deg, var(--red-600), var(--orange-500)); display: grid; place-items: center; flex-shrink: 0; }
.service-hero-head h1 { margin: 0 0 0.5rem; }
.service-hero-head p { color: var(--steel-200); margin: 0; max-width: 60ch; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }
.service-subnav { position: sticky; top: var(--header-h); z-index: 500; background: rgba(255,255,255,0.97); backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--steel-100); box-shadow: var(--shadow-sm); }
.service-subnav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.service-subnav ul::-webkit-scrollbar { display: none; }
.service-subnav a { display: block; padding: 15px 16px; font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--navy-800); white-space: nowrap; border-bottom: 3px solid transparent; }
.service-subnav a:hover, .service-subnav a.is-active { color: var(--red-600); border-bottom-color: var(--red-600); }
.service-subnav__cta { margin-left: auto; }
.service-subnav__cta a { color: var(--red-600); }
.service-subnav__cta svg { width: 15px; height: 15px; fill: currentColor; vertical-align: -2px; }
.anchor-target { scroll-margin-top: calc(var(--header-h) + 64px); }
.service-pager { border-top: 1px solid var(--steel-100); }
.service-pager .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.8rem; flex-wrap: wrap; }
.service-pager__link { flex: 1; min-width: 200px; }
.service-pager__link.next { text-align: right; }
.service-pager__link span { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--steel-400); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.service-pager__link.next span { justify-content: flex-end; }
.service-pager__link span svg { width: 14px; height: 14px; fill: currentColor; }
.service-pager__link strong { display: block; margin-top: 5px; color: var(--navy-900); font-family: var(--font-head); }
.service-pager__link:hover strong { color: var(--red-600); }
.service-pager__all { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--navy-800); padding: 12px 18px; border: 1px solid var(--steel-200); border-radius: var(--radius-sm); white-space: nowrap; }
.service-pager__all:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.service-pager__all svg { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 640px) { .service-pager__all { order: -1; width: 100%; justify-content: center; } }

/* ============================================================
   Mobile responsiveness hardening — tablets & phones
   ============================================================ */

/* Tablet (<= 768px) */
@media (max-width: 768px) {
	.section { padding-block: clamp(2.6rem, 7vw, 3.6rem); }
	.hero-grid { padding-block: clamp(2.4rem, 8vw, 3.2rem); }
	.section-head { margin-bottom: 1.8rem; }
	.split, .split--reverse { gap: 1.8rem; }
	.cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
	.emergency-strip .container { flex-direction: column; align-items: flex-start; text-align: left; }
	.emergency-strip .label { align-items: flex-start; }
	.emergency-strip .label svg { margin-top: 4px; flex-shrink: 0; }
	.emergency-strip .phones { width: 100%; flex-direction: column; gap: 10px; }
	.emergency-strip .phones .btn { width: 100%; white-space: nowrap; }
	.footer-cta { flex-direction: column; align-items: flex-start; text-align: left; }
	.footer-cta .btn { width: 100%; }
	.blog-meta { flex-wrap: wrap; gap: 10px 16px; }
}

/* Phone (<= 600px) */
@media (max-width: 600px) {
	:root { --header-h: 68px; }
	body { font-size: 16px; }
	h1 { font-size: clamp(1.75rem, 7.5vw, 2.25rem); }
	h2 { font-size: clamp(1.4rem, 6vw, 1.85rem); }
	.lead { font-size: 1.02rem; }
	.site-brand img { max-height: 44px; }

	/* Buttons that are primary actions go full-width for easy tapping */
	.hero-actions, .cta-actions, .service-hero-actions { flex-direction: column; align-items: stretch; }
	.hero-actions .btn, .cta-actions .btn, .service-hero-actions .btn,
	.footer-cta .btn, .sidebar-card .btn, .form-card .btn[type="submit"] { width: 100%; }
	.hero-emergency { width: 100%; box-sizing: border-box; }

	/* Stack any remaining 2-up grids */
	.cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
	.benefit-grid { grid-template-columns: 1fr; }
	.process-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
	.trust-bar .container { grid-template-columns: 1fr; gap: 0.75rem; }

	/* Page heroes tighter */
	.page-hero, .post-hero { padding-block: 2rem; }
	.service-hero-head { gap: 12px; }
	.service-hero-icon { width: 52px; height: 52px; }

	/* Section headings re-centre nicely */
	.section-head { margin-bottom: 1.5rem; }

	/* Footer + contact details left-aligned single column */
	.footer-col h4::after { left: 0; }
	.contact-quick { flex-direction: column; }
	.contact-quick .btn { width: 100%; }

	/* Sub-nav stays swipeable; fade hint handled by overflow */
	.service-subnav a { padding: 13px 13px; font-size: 0.88rem; }

	/* Testimonials & cards spacing */
	.testi-card, .form-card { padding: 1.3rem; }
	.cta-banner { padding: 1.6rem 1.3rem; }

	/* Post share/nav */
	.post-share { flex-wrap: wrap; }
	.post-nav { grid-template-columns: 1fr; }
}

/* Small phone (<= 400px) */
@media (max-width: 400px) {
	.container { padding-inline: 1rem; }
	.brand-text { font-size: 1.05rem; }
	.brand-tag { font-size: 0.55rem; letter-spacing: 0.12em; }
	.process-grid { grid-template-columns: 1fr; }
	.hero-emergency { flex-direction: column; align-items: flex-start; gap: 10px; }
	.mobile-actions a { font-size: 0.66rem; }
	.topbar__left { flex-wrap: wrap; gap: 0.5rem 1rem; }
	.topbar { font-size: 0.78rem; }
}
