/* ================================================================
   Sabbouh Mechanical — Crimson & Deep Navy Design System
   Self-contained, no template legacy.
   ================================================================ */

/* ---- Modern reset --------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---- Design tokens -------------------------------------------- */

:root {
	/* Brand */
	--brand-navy:       #0A1A2F;
	--brand-navy-light: #1A2A4A;
	--brand-navy-soft:  #14253F;
	--brand-red:        #DC2626;
	--brand-red-dark:   #B91C1C;
	--brand-red-soft:   #FEE2E2;
	--brand-amber:      #FBBF24;

	/* Neutrals */
	--color-white:        #FFFFFF;
	--color-bg-light:     #F8F9FB;
	--color-bg-soft:      #F1F4F8;
	--color-text-primary: #0A1A2F;
	--color-text-secondary: #475569;
	--color-text-muted:   #94A3B8;
	--color-border:       #E2E8F0;
	--color-border-soft:  #EEF1F5;
	--color-success:      #10B981;

	/* Spacing */
	--s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 20px;
	--s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
	--s-20: 80px; --s-24: 96px;

	/* Radius */
	--r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-pill: 999px;

	/* Shadow */
	--shadow-1: 0 1px 2px rgba(10, 26, 47, 0.05), 0 1px 1px rgba(10, 26, 47, 0.03);
	--shadow-2: 0 4px 16px rgba(10, 26, 47, 0.06), 0 2px 4px rgba(10, 26, 47, 0.04);
	--shadow-3: 0 16px 40px rgba(10, 26, 47, 0.12), 0 6px 16px rgba(10, 26, 47, 0.06);
	--shadow-red: 0 8px 20px rgba(220, 38, 38, 0.28);

	/* Type */
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-display: 'Bebas Neue', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	/* Motion */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);

	/* Layout */
	--container: 1200px;
	--container-narrow: 920px;
	--utility-h: 36px;
	--header-h: 68px;
}

/* ---- Base typography ------------------------------------------ */

html, body {
	background: var(--color-white);
	color: var(--color-text-primary);
	font-family: var(--font-sans);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'cv02','cv03','cv04','cv11', 'ss01';
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-sans);
	color: var(--color-text-primary);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.01em;
}
h1 { font-size: 32px; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 17px; }

@media (min-width: 768px) {
	h1 { font-size: 44px; }
	h2 { font-size: 32px; }
}

p { color: var(--color-text-secondary); text-align: left; }
p strong { color: var(--color-text-primary); font-weight: 600; }
small { font-size: 13px; }

::selection { background: rgba(220, 38, 38, 0.18); color: var(--color-text-primary); }

/* ---- Layout primitives ---------------------------------------- */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--s-6);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
	padding-block: clamp(40px, 6vw, 64px);
}
@media (min-width: 768px) {
	.section { padding-block: 64px; }
}
.section--lg { padding-block: clamp(56px, 8vw, 96px); }
.section--soft { background: var(--color-bg-light); }
.section--navy {
	background: var(--brand-navy);
	color: rgba(255,255,255,0.78);
}
.section--navy h1, .section--navy h2, .section--navy h3,
.section--navy h4, .section--navy h5, .section--navy h6 { color: #fff; }
.section--navy p { color: rgba(255,255,255,0.78); }
.section--red {
	background: var(--brand-red);
	color: #fff;
}
.section--red h1, .section--red h2, .section--red h3 { color: #fff; }
.section--red p { color: rgba(255,255,255,0.92); }

/* ---- Eyebrow / labels ----------------------------------------- */

.eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	color: var(--brand-red);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.eyebrow--amber { color: var(--brand-amber); }
.eyebrow--mute  { color: var(--color-text-muted); }
.eyebrow--white { color: rgba(255,255,255,0.8); }

.section-head { max-width: 720px; margin-bottom: var(--s-10); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .lede {
	margin-top: 14px;
	font-size: 16px;
	color: var(--color-text-secondary);
	line-height: 1.6;
}
.section--navy .section-head .lede { color: rgba(255,255,255,0.7); }

/* ---- Buttons -------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: var(--r-sm);
	font-family: var(--font-sans);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: -0.005em;
	white-space: nowrap;
	transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
	cursor: pointer;
	border: 0;
}
.btn--primary {
	background: var(--brand-red);
	color: #fff;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.24);
}
.btn--primary:hover { background: var(--brand-red-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(220, 38, 38, 0.34); }
.btn--white {
	background: #fff;
	color: var(--brand-navy);
}
.btn--white:hover { background: #F1F4F8; transform: translateY(-1px); }
.btn--navy {
	background: var(--brand-navy);
	color: #fff;
}
.btn--navy:hover { background: var(--brand-navy-light); transform: translateY(-1px); }
.btn--ghost {
	background: rgba(255,255,255,0.10);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.22);
	backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); }
.btn--outline {
	background: transparent;
	color: var(--color-text-primary);
	border: 1px solid var(--color-border);
}
.btn--outline:hover { border-color: var(--brand-navy); }
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--lg { padding: 16px 30px; font-size: 15px; }

.btn .ico { width: 16px; height: 16px; flex-shrink: 0; }

.text-link {
	color: var(--brand-red);
	font-weight: 500;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: color 0.15s var(--ease), gap 0.2s var(--ease);
}
.text-link:hover { color: var(--brand-red-dark); gap: 10px; }
.text-link::after { content: '→'; }

/* ---- Top utility bar ------------------------------------------ */

.utility-bar {
	background: var(--brand-red);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}
.utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-4);
	padding-block: 8px;
	min-height: var(--utility-h);
}
.utility-bar__left {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.utility-bar__left::before {
	content: '';
	display: inline-block;
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--brand-amber);
	box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6);
	animation: pulse-amber 2s infinite;
}
@keyframes pulse-amber {
	0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55); }
	70% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
	100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}
.utility-bar__right { display: inline-flex; align-items: center; }
.utility-bar a { color: #fff; font-weight: 600; }
.utility-bar a:hover { color: rgba(255,255,255,0.85); }
@media (max-width: 768px) {
	.utility-bar { display: none; }
}

/* ---- Header --------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--color-border);
	z-index: 100;
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--s-6);
	height: var(--header-h);
}
.brand-link {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	color: var(--brand-navy);
}
.brand-block {
	display: flex;
	flex-direction: column;
	line-height: 1;
	border-left: 3px solid var(--brand-red);
	padding-left: 14px;
}
.brand-block--dark { border-left-color: var(--brand-red); }
.brand-block--dark .brand-wordmark { color: #FFFFFF; }
.brand-block--dark .brand-tagline { color: var(--color-text-muted); }

.brand-wordmark {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--brand-navy);
	line-height: 1;
	display: inline-block;
	padding-top: 2px;
	margin-bottom: 6px;
}
@media (min-width: 480px) { .brand-wordmark { font-size: 26px; } }
@media (min-width: 960px) { .brand-wordmark { font-size: 30px; } }

@media (max-width: 640px) {
	.brand-block { border-left-width: 2px; padding-left: 10px; }
}

/* ---- Brand tagline (used under wordmark + under logo image) -- */
.brand-tagline {
	font-family: var(--font-sans);
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	color: var(--brand-navy);
}
.brand-tagline--dark { color: var(--color-text-muted); }

.brand-block .brand-tagline { margin-top: 0; }

.logo-with-tagline {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.logo-with-tagline img { display: block; }

@media (max-width: 640px) {
	.brand-tagline { font-size: 8px; letter-spacing: 0.15em; }
}
@media (max-width: 380px) {
	.brand-block .brand-tagline { display: none; }
}

.primary-nav {
	display: none;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}
@media (min-width: 960px) { .primary-nav { display: flex; } }
.primary-nav a {
	position: relative;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text-secondary);
	padding: 6px 0;
	transition: color 0.15s var(--ease);
}
.primary-nav a:hover { color: var(--brand-navy); }
.primary-nav a.is-current { color: var(--brand-red); }
.primary-nav a.is-current::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -22px;
	height: 2px;
	background: var(--brand-red);
}

.header-cta { display: none; margin-left: var(--s-2); }
@media (min-width: 960px) { .header-cta { display: inline-flex; } }

/* ---- Mobile hamburger button ---------------------------------- */
.hamburger-btn {
	margin-left: auto;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	padding: 0;
	border-radius: var(--r-sm);
	transition: background 0.2s ease;
}
.hamburger-btn:hover { background: var(--color-bg-light); }
.hamburger-btn span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--brand-navy);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
	transform-origin: center;
}
.hamburger-btn[aria-expanded="true"] { background: transparent; }
.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
	background: #fff;
}
.hamburger-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
	background: #fff;
}
@media (min-width: 960px) { .hamburger-btn { display: none; } }

/* ---- Mobile slide-in menu ------------------------------------- */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 360px;
	background: var(--brand-navy);
	z-index: 1000;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	padding: 80px 28px 28px;
	-webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__inner { display: flex; flex-direction: column; }
.mobile-menu__link {
	font-family: var(--font-display);
	font-size: 28px;
	letter-spacing: 0.04em;
	color: #fff;
	text-decoration: none;
	padding: 16px 0;
	border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-menu__link:hover,
.mobile-menu__link:active { color: var(--brand-amber); padding-left: 6px; }
.mobile-menu__link.is-current {
	color: var(--brand-red);
	border-bottom-color: rgba(220, 38, 38, 0.4);
}
.mobile-menu__divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	margin: 24px 0;
}
.mobile-menu__phone {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 0;
	text-decoration: none;
}
.mobile-menu__phone-label {
	font-size: 11px;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 500;
}
.mobile-menu__phone-number {
	font-family: var(--font-display);
	font-size: 28px;
	color: #fff;
	letter-spacing: 0.04em;
}
.mobile-menu__cta {
	margin-top: 20px;
	background: var(--brand-red);
	color: #fff;
	border: none;
	padding: 16px 24px;
	border-radius: var(--r-sm);
	font-size: 15px;
	font-weight: 500;
	font-family: var(--font-sans);
	cursor: pointer;
	width: 100%;
	transition: background 0.2s ease;
}
.mobile-menu__cta:hover { background: var(--brand-red-dark); }
@media (min-width: 960px) { .mobile-menu, .mobile-menu-backdrop { display: none; } }

/* ---- Backdrop overlay ----------------------------------------- */
.mobile-menu-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---- Hero (homepage split) ------------------------------------ */

.hero-split {
	background: var(--brand-navy);
}
.hero-split__inner {
	display: grid;
	grid-template-columns: 1fr;
	min-height: 480px;
}
@media (min-width: 900px) {
	.hero-split__inner {
		grid-template-columns: 1.1fr 1fr;
	}
}
.hero-split__copy {
	background: var(--brand-navy);
	color: #fff;
	padding: var(--s-12) var(--s-6);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (min-width: 768px) {
	.hero-split__copy { padding: 64px 48px; }
}
@media (min-width: 1100px) {
	.hero-split__copy { padding: 80px 80px 80px 0; }
	.hero-split__copy { padding-left: max(48px, calc((100vw - 1200px) / 2 + 24px)); }
}
.hero-split__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(220, 38, 38, 0.15);
	border: 1px solid rgba(220, 38, 38, 0.3);
	padding: 6px 12px;
	border-radius: var(--r-pill);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--brand-amber);
	align-self: flex-start;
}
.hero-split__badge::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--brand-red);
	box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6);
	animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
	0%   { box-shadow: 0 0 0 0   rgba(220, 38, 38, 0.55); }
	70%  { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
	100% { box-shadow: 0 0 0 0   rgba(220, 38, 38, 0); }
}
.hero-split__headline {
	margin: 18px 0 14px;
	font-size: 32px;
	line-height: 1.05;
	letter-spacing: -0.02em;
	font-weight: 500;
	color: #fff;
}
@media (min-width: 768px) { .hero-split__headline { font-size: 44px; } }
@media (min-width: 1200px) { .hero-split__headline { font-size: 52px; } }
.hero-split__sub {
	margin-bottom: 28px;
	max-width: 480px;
	font-size: 16px;
	color: var(--color-text-muted);
	line-height: 1.55;
}
.hero-split__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
/* ---- Hero right column: stacked equipment + client logos ----- */

.hero-stacked {
	background: #0F2240;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	padding: 0;
	position: relative;
	min-height: 100%;
}

.equipment-section {
	flex: 1 1 auto;
	padding: 40px 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-side-label {
	display: block;
	margin: 0 0 16px;
	font-size: 11px;
	font-weight: 500;
	color: #94A3B8;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.equipment-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.equipment-tile {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 22px 20px 18px;
	min-height: 110px;
	background: #1A2A4A;
	border-radius: 12px;
	text-decoration: none;
	transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.equipment-tile:hover {
	background: #243559;
	transform: translateY(-1px);
}
.equipment-eyebrow {
	display: block;
	margin-bottom: 6px;
	font-size: 10px;
	font-weight: 500;
	color: var(--brand-amber);
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.equipment-eyebrow .eyebrow-short { display: none; }
@media (max-width: 1100px) {
	.equipment-eyebrow .eyebrow-long { display: none; }
	.equipment-eyebrow .eyebrow-short { display: inline; }
}
.equipment-name {
	display: block;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.25;
}

@media (max-width: 899px) {
	.hero-stacked { min-height: 0; }
	.equipment-section { padding: 28px 20px 18px; }
	.equipment-tile { min-height: 92px; padding: 16px; }
	.equipment-name { font-size: 14px; }
}

/* ---- Page header (inner pages) -------------------------------- */

.page-header {
	background: var(--brand-navy);
	color: #fff;
	padding-block: 64px;
}
@media (min-width: 768px) { .page-header { padding-block: 96px; } }
.page-header__breadcrumb {
	font-size: 12px;
	color: rgba(255,255,255,0.55);
	letter-spacing: 0.04em;
	margin-bottom: 14px;
}
.page-header__breadcrumb a { color: rgba(255,255,255,0.75); }
.page-header__breadcrumb a:hover { color: #fff; }
.page-header__breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 8px; }
.page-header h1 { color: #fff; margin-bottom: 14px; max-width: 800px; }
.page-header__sub { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 640px; margin-bottom: 28px; }

/* ---- Stats strip ---------------------------------------------- */

.stats-strip {
	background: var(--color-bg-light);
	border-block: 1px solid var(--color-border);
}
.stats-strip__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}
@media (min-width: 768px) {
	.stats-strip__inner { grid-template-columns: repeat(4, 1fr); }
}
.stat {
	padding: 24px;
	text-align: center;
	border-right: 1px solid var(--color-border);
}
.stat:last-child { border-right: 0; }
@media (max-width: 767px) {
	.stat:nth-child(2n) { border-right: 0; }
	.stat:nth-child(-n+2) { border-bottom: 1px solid var(--color-border); }
}
.stat__num {
	display: block;
	font-size: 28px;
	font-weight: 600;
	color: var(--brand-navy);
	letter-spacing: -0.02em;
	line-height: 1;
}
@media (min-width: 768px) { .stat__num { font-size: 32px; } }
.stat__label {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: var(--color-text-secondary);
	font-weight: 500;
	letter-spacing: 0.02em;
}

/* ---- Service overview cards (homepage 4-grid) ----------------- */

.svc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--s-4);
	max-width: 100%;
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }

/* 2-column variant for rich detail cards (overrides 4-col at desktop) */
.svc-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .svc-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.svc-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 24px;
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.svc-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-2);
	border-color: #D6DBE3;
}
.svc-card__icon {
	width: 44px; height: 44px;
	border-radius: var(--r-md);
	background: var(--brand-red-soft);
	color: var(--brand-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card__eyebrow { font-size: 11px; font-weight: 500; color: var(--color-text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.svc-card__title { font-size: 17px; font-weight: 600; color: var(--brand-navy); margin-bottom: 6px; }
.svc-card__desc { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; flex: 1; }
.svc-card__cta { margin-top: 16px; }

/* ---- Detail card with checklist (used on service pages) ------- */

.detail-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 28px;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
}
.detail-card h3 {
	color: var(--brand-navy);
	margin-bottom: 8px;
	line-height: 1.25;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.detail-card__desc { color: var(--color-text-secondary); margin-bottom: 18px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
	position: relative;
	padding-left: 28px;
	font-size: 14.5px;
	color: var(--color-text-primary);
	line-height: 1.5;
}
.check-list li::before {
	content: '';
	position: absolute;
	left: 0; top: 7px;
	width: 14px; height: 8px;
	border-left: 2px solid var(--brand-red);
	border-bottom: 2px solid var(--brand-red);
	transform: rotate(-45deg);
}

/* ---- Why-choose-us / trust grid (4 across) -------------------- */

.trust-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--s-4);
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-item {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 24px;
}
.trust-item__icon {
	width: 40px; height: 40px;
	border-radius: var(--r-md);
	background: var(--brand-red-soft);
	color: var(--brand-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.trust-item__icon svg { width: 20px; height: 20px; }
.trust-item__title { font-size: 15px; font-weight: 600; color: var(--brand-navy); margin-bottom: 6px; }
.trust-item__desc { font-size: 13.5px; color: var(--color-text-secondary); line-height: 1.5; }

/* ---- Split (image / copy) ------------------------------------- */

.split {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--s-10);
	align-items: center;
}
@media (min-width: 900px) {
	.split { grid-template-columns: 1.05fr 1fr; gap: var(--s-12); }
}
.split--reverse > :first-child { order: 0; }
@media (min-width: 900px) {
	.split--reverse > :first-child { order: 2; }
}
.split__media {
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	aspect-ratio: 4 / 3;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--contain { background: #fff; }
.split__media--contain img { object-fit: contain; padding: 24px; }

/* ---- Pills / callout ------------------------------------------ */

.label-mini {
	display: block;
	font-size: 11px;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	font-weight: 600;
	margin-bottom: 10px;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
	padding: 7px 14px;
	border-radius: var(--r-pill);
	background: var(--color-bg-light);
	border: 1px solid var(--color-border);
	font-size: 13px;
	font-weight: 500;
	color: var(--brand-navy);
}
.callout {
	margin-top: 20px;
	padding: 16px 18px;
	background: var(--brand-red-soft);
	border: 1px solid rgba(220, 38, 38, 0.18);
	border-radius: var(--r-md);
	font-size: 14px;
	color: var(--brand-navy);
	line-height: 1.55;
}
.callout strong { color: var(--brand-red); }

/* ---- Scenario card (trailer page) ----------------------------- */

.scenario {
	display: flex;
	gap: 14px;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-md);
	transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.scenario:hover { border-color: var(--brand-navy-light); background: var(--color-bg-light); }
.scenario__icon {
	width: 36px; height: 36px;
	border-radius: var(--r-sm);
	background: var(--brand-red-soft);
	color: var(--brand-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.scenario__icon svg { width: 18px; height: 18px; }
.scenario__title { font-size: 15px; font-weight: 600; color: var(--brand-navy); margin-bottom: 2px; }
.scenario__desc { font-size: 13.5px; color: var(--color-text-secondary); line-height: 1.5; }

/* ---- Logo wall ----------------------------------------------- */

.logo-wall {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--s-3);
}
@media (min-width: 640px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px) { .logo-wall { grid-template-columns: repeat(6, 1fr); } }
.logo-wall__item {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-md);
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px;
	transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}
.logo-wall__item:hover { transform: translateY(-2px); border-color: #D6DBE3; }
.logo-wall__item img {
	max-width: 100%; max-height: 100%; object-fit: contain;
	filter: grayscale(15%);
	transition: filter 0.2s var(--ease);
}
.logo-wall__item:hover img { filter: grayscale(0%); }

.logo-wall__stat {
	text-align: center;
	margin: 28px auto 0;
	padding-top: 22px;
	max-width: 900px;
	border-top: 0.5px solid var(--color-border);
}
.logo-wall__stat-text {
	font-size: 14px;
	font-weight: 500;
	color: var(--brand-navy);
	margin: 0;
}
.logo-wall__stat-num {
	color: var(--brand-red);
	font-weight: 600;
	font-size: 16px;
}
.logo-wall__stat-sub {
	font-size: 12px;
	color: var(--color-text-muted);
	margin: 6px 0 0;
}
@media (max-width: 768px) {
	.logo-wall__stat { margin-top: 22px; padding: 18px 16px 0; }
	.logo-wall__stat-text { font-size: 13px; line-height: 1.5; }
	.logo-wall__stat-sub { font-size: 11px; }
}

/* ---- About page logo feature --------------------------------- */

.about-emblem {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	background: #FFFFFF;
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: var(--r-lg);
	padding: 26px 36px 22px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.35);
	width: fit-content;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 640px) {
	.about-emblem { padding: 22px 20px 18px; width: 100%; }
}
.about-emblem img { height: 64px; width: auto; }
.about-emblem .brand-tagline { color: var(--color-text-secondary); }
.about-emblem__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--brand-red);
	margin-top: 4px;
	padding-top: 10px;
	border-top: 1px solid var(--color-border);
	width: 100%;
	text-align: center;
}

/* ---- Region card --------------------------------------------- */

.region-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 24px;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.region-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); border-color: #D6DBE3; }
.region-card__title {
	display: flex; align-items: center; gap: 10px;
	font-size: 16px; color: var(--brand-navy); margin-bottom: 4px; font-weight: 600;
}
.region-card__title .dot { width: 8px; height: 8px; background: var(--brand-red); border-radius: 50%; }
.region-card__sub { color: var(--color-text-secondary); font-size: 13.5px; margin-bottom: 16px; }
.region-card__cities {
	display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
}
.region-card__cities li {
	font-size: 13.5px; color: var(--color-text-primary);
	padding-left: 14px; position: relative;
}
.region-card__cities li::before {
	content: ''; position: absolute; left: 0; top: 8px;
	width: 5px; height: 5px; background: var(--color-text-muted); border-radius: 50%;
}

/* ---- Contact card / form ------------------------------------- */

.contact-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-lg);
	padding: 28px;
}
.contact-row {
	display: flex; gap: 14px;
	padding: 14px 0;
	border-top: 1px solid var(--color-border-soft);
}
.contact-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-row__icon {
	width: 38px; height: 38px;
	border-radius: var(--r-sm);
	background: var(--brand-red-soft);
	color: var(--brand-red);
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.contact-row__icon svg { width: 18px; height: 18px; }
.contact-row__label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 2px; font-weight: 600; }
.contact-row__value { display: block; font-size: 15px; color: var(--brand-navy); }
a.contact-row__value:hover { color: var(--brand-red); }
.contact-emergency {
	margin-top: 20px;
	padding: 16px;
	background: var(--brand-red-soft);
	border: 1px solid rgba(220, 38, 38, 0.18);
	border-radius: var(--r-md);
	font-size: 13.5px;
	color: var(--brand-navy);
	line-height: 1.5;
}
.contact-emergency strong { color: var(--brand-red); }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--brand-navy); }
.field input, .field select, .field textarea {
	width: 100%;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--r-sm);
	font-size: 14.5px;
	color: var(--brand-navy);
	transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--color-text-muted); }
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none;
	border-color: var(--brand-navy);
	box-shadow: 0 0 0 3px rgba(10, 26, 47, 0.10);
}

/* ---- Footer --------------------------------------------------- */

.site-footer {
	background: var(--brand-navy);
	color: rgba(255,255,255,0.72);
	padding-top: 64px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--s-8);
	padding-bottom: var(--s-12);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-10); } }
.footer-col h4 {
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
	color: rgba(255,255,255,0.72);
	font-size: 14px;
	transition: color 0.15s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-brand .logo-card {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	padding: 16px 22px 14px;
	border-radius: 10px;
	margin-bottom: 18px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.footer-brand .logo-card .logo-with-tagline { gap: 10px; }
.footer-brand .logo-card img {
	height: 44px;
	width: auto;
	display: block;
	margin: 0;
	filter: none;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; max-width: 320px; }
.footer-contact-row { color: rgba(255,255,255,0.86); font-size: 14px; }
.footer-contact-row + .footer-contact-row { margin-top: 6px; }
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-block: 18px;
	display: flex; align-items: center; gap: var(--s-3);
	flex-wrap: wrap;
	font-size: 12px;
	color: rgba(255,255,255,0.55);
}
.footer-bottom .badge {
	background: var(--brand-red);
	color: #fff;
	padding: 4px 10px;
	border-radius: var(--r-sm);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.10em;
}
.footer-bottom .spacer { flex: 1; }

/* ---- Quote modal ---------------------------------------------- */

.quote-modal {
	position: fixed; inset: 0;
	z-index: 1000;
	display: flex; align-items: center; justify-content: center;
	padding: 16px;
}
.quote-modal[hidden] { display: none; }
.quote-modal__backdrop {
	position: absolute; inset: 0;
	background: rgba(10, 26, 47, 0.55);
	backdrop-filter: blur(4px);
	animation: fade-in 0.18s var(--ease) both;
}
.quote-modal__panel {
	position: relative;
	width: 100%;
	max-width: 480px;
	background: #fff;
	border-radius: var(--r-lg);
	padding: 32px;
	box-shadow: 0 30px 80px rgba(10, 26, 47, 0.4);
	animation: slide-up 0.22s var(--ease-out) both;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes slide-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.quote-modal__close {
	position: absolute;
	top: 12px; right: 12px;
	width: 36px; height: 36px;
	border-radius: var(--r-sm);
	color: var(--color-text-muted);
	font-size: 24px; line-height: 1;
	display: inline-flex; align-items: center; justify-content: center;
}
.quote-modal__close:hover { background: var(--color-bg-light); color: var(--brand-navy); }
.quote-modal h2 { color: var(--brand-navy); margin-bottom: 6px; font-size: 22px; }
.quote-modal__sub { color: var(--color-text-secondary); font-size: 14px; margin-bottom: 20px; }
.quote-submit {
	width: 100%;
	padding: 14px;
	background: var(--brand-red);
	color: #fff;
	border-radius: var(--r-sm);
	font-weight: 600;
	font-size: 15px;
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	transition: background 0.2s var(--ease);
	border: 0;
	cursor: pointer;
}
.quote-submit:hover { background: var(--brand-red-dark); }
.quote-submit:disabled { opacity: 0.7; cursor: wait; }
.quote-submit__spinner {
	display: none;
	width: 16px; height: 16px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
}
.quote-submit.is-loading .quote-submit__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }
.quote-error { margin-top: 12px; font-size: 13px; color: #DC2626; }
.quote-error a { color: #DC2626; text-decoration: underline; }
.quote-trust { margin-top: 12px; text-align: center; font-size: 12px; color: var(--color-text-muted); }
.quote-success { text-align: center; padding: 16px 0; }
.quote-success__check {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.12);
	color: var(--color-success);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 32px; margin: 0 auto 16px;
}
.quote-success h2 { font-size: 22px; margin-bottom: 8px; }
.quote-success p { font-size: 14px; color: var(--color-text-secondary); margin-top: 6px; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Utility ------------------------------------------------- */

.u-center { text-align: center; }
.u-mt-2 { margin-top: 8px; }
.u-mt-4 { margin-top: 16px; }
.u-mt-6 { margin-top: 24px; }
.u-mt-8 { margin-top: 32px; }
.u-flex { display: flex; }
.u-gap-3 { gap: 12px; }
.u-flex-wrap { flex-wrap: wrap; }
.u-justify-center { justify-content: center; }
